:root {
  color-scheme: dark;
  --black: #050506;
  --ink: #0c0d10;
  --panel: rgba(17, 18, 23, 0.68);
  --panel-strong: rgba(22, 24, 31, 0.88);
  --silver: #d7dbe0;
  --muted: #8e949e;
  --red: #d20d18;
  --red-soft: rgba(210, 13, 24, 0.26);
  --line: rgba(255, 255, 255, 0.12);
  --glow: 0 0 40px rgba(210, 13, 24, 0.24);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 14%, rgba(210, 13, 24, 0.18), transparent 26rem),
    radial-gradient(circle at 82% 0%, rgba(214, 219, 224, 0.1), transparent 24rem),
    linear-gradient(180deg, #010102 0%, #090a0d 48%, #030304 100%);
  color: #f6f7f8;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 74%);
  z-index: -2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select {
  font: inherit;
}

#particle-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.65;
  pointer-events: none;
}

.scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.22;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  background-size: 100% 7px;
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 4, 6, 0.74);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 176px;
}

.brand-lockup img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 24px rgba(210, 13, 24, 0.22);
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
  line-height: 1.05;
}

.brand-lockup strong {
  color: var(--silver);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-lockup small {
  color: var(--red);
  font-size: 0.74rem;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.8vw, 28px);
  color: #c7cad0;
  font-size: 0.88rem;
}

nav a {
  transition: color 0.2s ease;
}

nav a:hover {
  color: white;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
}

.button.primary {
  background: linear-gradient(135deg, #ed1b28, #83060d);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button.secondary {
  background: rgba(216, 220, 224, 0.14);
}

.button.ghost {
  background: transparent;
}

.section-full {
  min-height: 100svh;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 28px;
  padding: 112px clamp(16px, 4vw, 58px) 52px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 48%, rgba(0, 0, 0, 0.8) 100%),
    linear-gradient(0deg, #050506 0%, transparent 38%);
}

.hero-video-stack {
  position: absolute;
  right: 44px;
  top: 118px;
  display: grid;
  gap: 10px;
  z-index: 2;
}

.hero-video-stack span,
.ticker span,
.market-strip span,
.trust-list span,
.partner-grid span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 12, 16, 0.56);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
}

.hero-video-stack span {
  padding: 8px 11px;
  color: #cfd2d8;
  font-size: 0.78rem;
  animation: floatPanel 5s ease-in-out infinite;
}

.hero-video-stack span:nth-child(2) { animation-delay: 0.7s; }
.hero-video-stack span:nth-child(3) { animation-delay: 1.3s; }
.hero-video-stack span:nth-child(4) { animation-delay: 2s; }

.hero-content {
  max-width: 780px;
  padding-top: 12vh;
}

.eyebrow,
.section-kicker,
.section-heading span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #f0b7bb;
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 7.6vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(210, 13, 24, 0.2);
}

.hero-content p,
.section-heading p,
.about-copy p,
.trust-copy p,
.contact-panel p {
  max-width: 680px;
  color: #c5c8ce;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 24px;
}

.market-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.market-strip span,
.trust-list span,
.partner-grid span {
  padding: 8px 11px;
  color: #d8dce2;
  font-size: 0.82rem;
}

.ai-console {
  align-self: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(15, 17, 22, 0.82), rgba(15, 17, 22, 0.42));
  box-shadow: var(--glow);
  backdrop-filter: blur(18px);
}

.console-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #34ff83;
  box-shadow: 0 0 18px #34ff83;
  animation: pulse 1.6s infinite;
}

.ai-console p {
  min-height: 52px;
  margin: 16px 0;
  color: #c9ced5;
  line-height: 1.5;
}

.console-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.console-bars span {
  height: 48px;
  background: linear-gradient(180deg, rgba(210, 13, 24, 0.1), rgba(210, 13, 24, 0.64));
  transform-origin: bottom;
  animation: bars 1.4s ease-in-out infinite;
}

.console-bars span:nth-child(2) { animation-delay: 0.16s; }
.console-bars span:nth-child(3) { animation-delay: 0.32s; }
.console-bars span:nth-child(4) { animation-delay: 0.48s; }

section:not(.hero) {
  padding: 86px clamp(16px, 4vw, 58px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 22px;
}

h2 {
  margin: 8px 0 14px;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.showcase-cinema,
.testimonial-stage,
.trust-image,
.profile-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.38);
}

.showcase-cinema img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.showcase-cinema::after,
.trust-image::after,
.testimonial-stage::after,
.profile-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 46%, rgba(255, 255, 255, 0.18) 50%, transparent 55% 100%);
  transform: translateX(-120%);
  animation: lightSweep 7s ease-in-out infinite;
  pointer-events: none;
}

.holo-target {
  position: absolute;
  width: 170px;
  height: 170px;
  left: 12%;
  top: 18%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  animation: targetMove 9s ease-in-out infinite;
}

.holo-target::before,
.holo-target::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(210, 13, 24, 0.62);
}

.ticker {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 8px;
  overflow: hidden;
}

.ticker span {
  flex: 0 0 auto;
  padding: 8px 12px;
  animation: ticker 22s linear infinite;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.vehicle-card,
.testimonial-card,
.process-line article,
.contact-panel,
.lead-form {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(23, 25, 32, 0.72), rgba(9, 10, 13, 0.62));
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.vehicle-card {
  position: relative;
  min-height: 254px;
  overflow: hidden;
  padding: 12px;
}

.vehicle-art {
  position: absolute;
  inset: 0;
  background-image: var(--vehicle-image);
  background-size: 330%;
  background-position: var(--pos);
  opacity: 0.78;
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-art {
  transform: scale(1.12);
}

.vehicle-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #050506 0%, rgba(5, 5, 6, 0.22) 70%);
}

.vehicle-info {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
}

.badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 5, 6, 0.6);
  color: #e7ebef;
  font-size: 0.72rem;
}

.badge.hybrid {
  color: #dfffe9;
  border-color: rgba(52, 255, 131, 0.34);
}

.vehicle-name {
  margin-bottom: 8px;
  font-size: 1.32rem;
  font-weight: 800;
}

.price {
  color: white;
  font-size: 1.55rem;
  font-weight: 900;
}

.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
  color: #cdd1d7;
  font-size: 0.78rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
}

.profile-frame {
  aspect-ratio: 4 / 4.6;
}

.profile-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-badge {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 5, 7, 0.7);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  color: white;
  font-weight: 700;
}

.partner-grid,
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.testimonial-stage {
  min-height: 620px;
}

.testimonial-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.testimonial-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.88));
  z-index: 1;
}

.testimonial-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(16px, 3vw, 34px);
  align-content: end;
  min-height: 620px;
}

.testimonial-card {
  padding: 16px;
  animation: floatPanel 5.8s ease-in-out infinite;
}

.testimonial-card:nth-child(2) { animation-delay: 0.8s; }
.testimonial-card:nth-child(3) { animation-delay: 1.6s; }

.customer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.6), transparent 18%),
    linear-gradient(135deg, #2a2d34, #98111a);
  color: white;
  font-weight: 900;
}

.country {
  color: #aeb4bd;
  font-size: 0.82rem;
}

.flag-code {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 18px;
  margin-right: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, rgba(210, 13, 24, 0.55), rgba(255, 255, 255, 0.12));
  color: white;
  border-radius: 2px;
  font-size: 0.66rem;
  font-weight: 900;
}

.review {
  color: #f2f5f8;
  line-height: 1.55;
}

.whatsapp-chip {
  display: inline-flex;
  margin-top: 14px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.18);
  color: #bdffd4;
  font-size: 0.72rem;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  position: relative;
}

.process-line article {
  position: relative;
  min-height: 236px;
  padding: 22px;
  overflow: hidden;
}

.process-line article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: lineScan 3.8s ease-in-out infinite;
}

.process-line b {
  display: block;
  margin-bottom: 46px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 3rem;
  line-height: 1;
}

.process-line p {
  color: #b9bec6;
  line-height: 1.6;
}

.trust-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 24px;
  align-items: center;
}

.trust-image img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
}

.contact-section {
  padding-bottom: 120px;
}

.contact-panel,
.lead-form {
  padding: clamp(18px, 3vw, 30px);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #cfd3d9;
  font-size: 0.86rem;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(4, 5, 7, 0.64);
  color: white;
  padding: 0 13px;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(210, 13, 24, 0.9);
  box-shadow: 0 0 0 3px rgba(210, 13, 24, 0.18);
}

.toggle-row {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 10px !important;
}

.toggle-row input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--red);
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #23d366, #0c7c3b);
  color: white;
  font-weight: 900;
  box-shadow: 0 14px 42px rgba(35, 211, 102, 0.34);
}

@keyframes heroDrift {
  from { transform: scale(1); }
  to { transform: scale(1.07) translate3d(-1.5%, -1%, 0); }
}

@keyframes floatPanel {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.42; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes bars {
  0%, 100% { transform: scaleY(0.28); }
  50% { transform: scaleY(1); }
}

@keyframes lightSweep {
  0%, 55% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

@keyframes targetMove {
  0%, 100% { transform: translate(0, 0); }
  35% { transform: translate(130%, 85%); }
  70% { transform: translate(230%, 12%); }
}

@keyframes ticker {
  to { transform: translateX(-720px); }
}

@keyframes lineScan {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
  }

  nav {
    display: none;
  }

  .hero,
  .showcase-layout,
  .about-section,
  .trust-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: start;
    padding-top: 104px;
  }

  .hero-content {
    padding-top: 16vh;
  }

  .ai-console {
    max-width: 420px;
  }

  .hero-video-stack {
    display: none;
  }

  .testimonial-grid,
  .process-line {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-cinema img,
  .testimonial-stage,
  .testimonial-grid {
    min-height: 500px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 12px;
  }

  .brand-lockup {
    min-width: 0;
  }

  .brand-lockup img {
    width: 42px;
    height: 42px;
  }

  .brand-lockup strong {
    font-size: 0.78rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 86px 14px 34px;
  }

  .hero-content {
    padding-top: 18vh;
  }

  h1 {
    font-size: clamp(2.25rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .ai-console {
    width: 100%;
  }

  section:not(.hero) {
    padding: 62px 14px;
  }

  .vehicle-grid,
  .testimonial-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .showcase-cinema img {
    min-height: 420px;
  }

  .vehicle-card {
    min-height: 242px;
  }

  .testimonial-stage,
  .testimonial-grid {
    min-height: auto;
  }

  .testimonial-grid {
    padding: 16px;
  }

  .process-line article {
    min-height: 210px;
  }

  .trust-image img {
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
