:root {
  --bg: #070705;
  --bg-2: #0d0c0a;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.12);
  --line-gold: rgba(245, 181, 62, 0.36);
  --text: #fff9ea;
  --muted: rgba(255, 249, 234, 0.68);
  --faint: rgba(255, 249, 234, 0.44);
  --gold: #f4b642;
  --gold-2: #ffd98a;
  --orange: #ff8b1f;
  --green: #37d67a;
  --purple: #9b6bff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at 18% -8%, rgba(245, 182, 66, 0.18), transparent 34rem),
    radial-gradient(circle at 92% 6%, rgba(255, 139, 31, 0.16), transparent 30rem),
    linear-gradient(180deg, #080706 0%, #070705 48%, #030302 100%);
  overflow-x: hidden;
}

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

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

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.34;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.11) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 82%);
}

.aurora {
  pointer-events: none;
  position: fixed;
  z-index: 0;
  width: 36rem;
  height: 36rem;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .24;
  animation: drift 12s ease-in-out infinite alternate;
}

.aurora-one {
  background: rgba(245, 182, 66, .34);
  left: -16rem;
  top: 24rem;
}

.aurora-two {
  background: rgba(90, 63, 255, .22);
  right: -15rem;
  top: 10rem;
  animation-delay: -4s;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4rem, -2rem, 0) scale(1.12); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(var(--max), calc(100vw - 32px));
  margin: 14px auto 0;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(9, 8, 6, 0.72);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand span {
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  transition: background .2s ease, color .2s ease;
}

.nav-links a:hover {
  background: rgba(255,255,255,.08);
  color: var(--text);
}

.nav-cta {
  justify-self: end;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #160d02;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 0 0 1px rgba(255,255,255,.18) inset, 0 12px 40px rgba(245, 182, 66, .22);
}

.section {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  padding: 100px 0;
}

.section-small {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  padding: 18px 0 62px;
}

.hero {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
  align-items: center;
  min-height: calc(100vh - 84px);
  padding-top: 78px;
  padding-bottom: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}

.eyebrow.muted {
  color: var(--faint);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(55, 214, 122, .12);
}

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

h1 {
  margin: 18px 0 22px;
  font-size: clamp(56px, 7vw, 104px);
  line-height: .92;
  letter-spacing: -0.075em;
  max-width: 760px;
}

h1 span,
h2 span {
  color: transparent;
  background: linear-gradient(110deg, #fff2c6, var(--gold), var(--orange));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-sub {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 21px;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #ffd98a, #f3a328 58%, #ff741f);
  color: #170f03;
  box-shadow: 0 22px 60px rgba(245, 182, 66, .24), 0 0 0 1px rgba(255,255,255,.22) inset;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
}

.button-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.22);
}

.button.full {
  width: 100%;
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}

.hero-stage {
  position: relative;
  min-height: 620px;
}

.screen-frame {
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow), 0 0 0 1px rgba(245, 182, 66, .05) inset;
  overflow: hidden;
}

.hero-screen {
  transform: perspective(1100px) rotateX(4deg) rotateY(-8deg);
  transform-origin: center;
  border-color: rgba(245, 182, 66, .22);
}

.hero-screen img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.metric-card {
  position: absolute;
  width: 240px;
  padding: 16px;
  border: 1px solid rgba(245, 182, 66, .28);
  border-radius: 20px;
  background: rgba(8, 7, 5, .78);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0,0,0,.36), 0 0 52px rgba(245,182,66,.12);
}

.metric-card span,
.metric-card small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.metric-card strong {
  display: block;
  margin: 4px 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.metric-revenue {
  left: -18px;
  bottom: 60px;
}

.metric-ai {
  right: 14px;
  top: 38px;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.strip-card {
  min-height: 142px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.045);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.strip-kicker {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}

.strip-card strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.section-intro {
  max-width: 770px;
  margin-bottom: 34px;
}

.section-intro.compact {
  max-width: 650px;
}

h2 {
  margin: 12px 0 16px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: .94;
  letter-spacing: -0.07em;
}

.section-intro p,
.split-copy p,
.pricing-copy p {
  color: var(--muted);
  font-size: 18px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr;
  gap: 16px;
}

.bento-card {
  position: relative;
  min-height: 300px;
  padding: 25px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 182, 66, .32);
  background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
}

.bento-card.large {
  grid-row: span 2;
  min-height: 628px;
}

.bento-card.large img {
  position: absolute;
  inset: auto 18px 18px 18px;
  width: calc(100% - 36px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.11);
}

.card-number {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .08em;
}

.bento-card h3,
.feature-grid h3 {
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin: 10px 0 10px;
}

.bento-card p,
.feature-grid p,
.faq p {
  color: var(--muted);
}

.product-tour {
  padding-top: 80px;
}

.tour-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 22px;
}

.tour-top p {
  max-width: 390px;
  color: var(--muted);
}

.tour-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.045);
  padding: 12px;
  box-shadow: var(--shadow);
}

.tour-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
}

.tour-tab {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.tour-tab.active,
.tour-tab:hover {
  color: #160d02;
  border-color: rgba(245, 182, 66, .6);
  background: linear-gradient(135deg, #ffd98a, #f3a328);
}

.tour-panel {
  display: grid;
  grid-template-columns: .52fr 1.48fr;
  gap: 14px;
  padding: 10px;
  align-items: stretch;
}

.tour-copy {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(0,0,0,.22);
}

.tour-copy span {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}

.tour-copy h3 {
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.06em;
  margin: 20px 0 14px;
}

.tour-copy p {
  color: var(--muted);
  font-size: 17px;
}

.tour-screen {
  border-radius: 24px;
}

.tour-screen img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.split-section {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 34px;
  align-items: center;
}

.flow {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
  gap: 10px;
  margin-top: 28px;
  align-items: center;
}

.flow div {
  padding: 14px;
  border: 1px solid rgba(245, 182, 66, .25);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
}

.flow strong {
  display: block;
  font-size: 20px;
}

.flow span {
  color: var(--muted);
  font-size: 13px;
}

.flow i {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.split-screen img {
  max-height: 640px;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.045);
  transition: transform .22s ease, border-color .22s ease;
}

.feature-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 182, 66, .28);
}

.feature-grid span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .12em;
}

.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.showroom figure {
  margin: 0;
}

.showroom img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.showroom figcaption {
  padding: 14px 18px 18px;
  color: var(--muted);
  font-size: 14px;
}

.pricing {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 26px;
  align-items: center;
}

.pricing-card {
  border: 1px solid rgba(245, 182, 66, .28);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 0%, rgba(245, 182, 66, .14), transparent 34%),
    rgba(255,255,255,.06);
  padding: 28px;
  box-shadow: var(--shadow);
}

.plan-head {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
}

.plan-head span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.plan-head strong {
  font-size: 60px;
  letter-spacing: -.075em;
  line-height: 1;
}

.plan-head small {
  color: var(--muted);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.plan-head em {
  color: var(--green);
  font-style: normal;
}

.pricing-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.045);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 850;
  font-size: 18px;
  letter-spacing: -0.02em;
}

details p {
  margin: 14px 0 0;
}

.final-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(245, 182, 66, .28);
  background:
    radial-gradient(circle at 20% 50%, rgba(245, 182, 66, .16), transparent 42%),
    rgba(255,255,255,.045);
  border-radius: var(--radius-xl);
  padding: 42px;
  margin-bottom: 70px;
}

.final-cta h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.site-footer {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  padding: 38px 0 54px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

.footer-brand {
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split-section,
  .pricing,
  .tour-panel,
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-screen {
    transform: none;
  }

  .hero-screen img {
    min-height: auto;
  }

  .metric-card {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .logo-strip,
  .feature-grid,
  .showroom-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-card.large {
    min-height: 560px;
  }

  .final-cta {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 70px 0;
  }

  .section-small {
    padding-bottom: 40px;
  }

  .hero {
    padding-top: 54px;
  }

  .brand span {
    font-size: 16px;
  }

  .nav-cta {
    padding: 9px 12px;
    font-size: 13px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .logo-strip,
  .feature-grid,
  .showroom-grid,
  .pricing-card ul {
    grid-template-columns: 1fr;
  }

  .flow {
    grid-template-columns: 1fr;
  }

  .flow i {
    height: 22px;
    width: 1px;
    margin: 0 auto;
  }

  .tour-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 14px;
  }

  .tour-tab {
    white-space: nowrap;
  }

  .bento-card.large {
    min-height: 480px;
  }

  .bento-card.large img {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 18px;
  }

  .final-cta {
    padding: 28px;
  }

  .site-footer {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
