/* ============================================================
   ILIKOI — DJI Mavic-style layout
   ============================================================ */

:root {
  --bg: #000;
  --bg-2: #0a0a0c;
  --bg-3: #111114;
  --fg: #fff;
  --fg-dim: rgba(255, 255, 255, 0.65);
  --fg-mute: rgba(255, 255, 255, 0.4);
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.16);
  --brand: #ebd991;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, video { max-width: 100%; display: block; }

/* ============================================================
   TOP NAV — DJI breadcrumb style
   ============================================================ */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.topnav-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--fg);
}

.brand .mark {
  width: 22px;
  height: 22px;
  display: inline-block;
  flex-shrink: 0;
}

.crumb {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--fg-dim);
}

.crumb .sep {
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  display: inline-block;
}

.crumb .here { color: var(--fg); }

.brand-text { color: var(--brand); }

.topnav-right {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--fg-dim);
}

.topnav-right a {
  transition: color 0.2s ease;
}
.topnav-right a:hover { color: var(--fg); }

.topnav-cta {
  padding: 8px 18px;
  background: #fff;
  color: #000 !important;
  border-radius: 100px;
  font-weight: 500;
  transition: transform 0.2s var(--ease), background 0.2s ease;
}
.topnav-cta:hover {
  transform: translateY(-1px);
  background: #f0f0f0;
}

/* ============================================================
   MOBILE NAV — hamburger button (hidden on desktop)
   ============================================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav-toggle:hover { border-color: rgba(255,255,255,0.3); }
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

@media (max-width: 900px) {
  .crumb, .topnav-right .nav-link, .topnav-right .topnav-cta { display: none; }
  .topnav { padding: 12px 16px; }
  .topnav-right { gap: 12px; }
  .nav-toggle { display: flex !important; }
}

/* ============================================================
   MOBILE NAV — full-screen overlay
   ============================================================ */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 8, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}
.mobile-menu-links a {
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity 0.2s ease;
}
.mobile-menu-links a:hover { opacity: 0.6; }
.mobile-menu-cta {
  margin-top: 12px;
  padding: 14px 32px;
  background: #fff;
  color: #0a0a0c !important;
  border-radius: 999px;
  font-size: 17px !important;
}
body.menu-open { overflow: hidden; }

/* ============================================================
   1. HERO — full-bleed video, centered title (DJI hero style)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
  overflow: hidden;
}

.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-bg .hero-scene,
.hero-bg .hero-birds {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg .hero-scene { z-index: 0; }
.hero-bg .hero-birds { z-index: 1; }

/* When the murmuration scene is the hero, soften the dark overlay so the scene reads */
.hero-bg:has(.hero-scene)::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.65) 100%);
}
.hero-bg:has(.hero-scene) .noise-overlay {
  opacity: 0.35;
}

/* SVG fractal-noise grain overlay — gives the hero a premium filmic texture */
.hero-bg .noise-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  z-index: 2;
}

/* Top-to-bottom gradient — keeps nav and bottom buttons readable */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.10) 30%, rgba(0,0,0,0.20) 60%, rgba(0,0,0,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  color: #fff;
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(0, 0, 0, 0.4);
}

.hero h1 .pro {
  font-weight: 600;
  color: #fff;
  margin-left: 0.2em;
  -webkit-text-fill-color: #fff;
}

.hero .tagline {
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.005em;
  margin-bottom: 64px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.hero-bottom {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 90%;
  max-width: 520px;
}

.hero-caption {
  font-size: 14px;
  color: var(--fg);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero-buttons {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #fff;
  color: #000;
}
.btn-primary:hover {
  background: #e8e8e8;
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.btn .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 10px;
}

.btn-ghost .arrow {
  background: rgba(255,255,255,0.2);
}

.scroll-hint {
  position: absolute;
  bottom: 14px;
  left: 32px;
  z-index: 2;
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.scroll-hint::after {
  content: '↓';
  display: inline-block;
  animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ============================================================
   2. NEW GENERATION — black section, two image cards
   ============================================================ */
.section {
  position: relative;
  padding: 100px 32px;
  background: var(--bg);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head .small {
  font-size: 14px;
  color: var(--fg-dim);
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.section-head .learn {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 13px;
  color: var(--fg);
  transition: background 0.2s ease, transform 0.2s ease;
}
.section-head .learn:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}
.section-head .learn .arrow {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.cards {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
}

.card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1.3 / 1;
  transition: transform 0.5s var(--ease);
}

.card:hover { transform: translateY(-3px); }

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.card:hover img { transform: scale(1.04); }

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
}

.card-label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--fg);
  max-width: 80%;
  line-height: 1.45;
}

@media (max-width: 800px) {
  .cards { grid-template-columns: 1fr; }
  .card { aspect-ratio: 1.5 / 1; }
}

/* ============================================================
   3. INTELLIGENCE / ORB — DJI camera-assembly equivalent
   ============================================================ */
.intel {
  padding: 120px 32px;
  background: linear-gradient(180deg, #000 0%, #0c0c0e 50%, #000 100%);
  position: relative;
  overflow: hidden;
}

.intel-head {
  text-align: center;
  margin-bottom: 32px;
}

.intel-head h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.intel-head h2 .light { color: var(--fg-dim); display: block; font-weight: 300; }

.intel-stage {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intel-orb {
  position: relative;
  width: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}

.intel-orb video,
.intel-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: translateZ(0);
}

.intel-orb::before {
  content: '';
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(255, 200, 100, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.annot {
  position: absolute;
  width: 28%;
  font-size: 13px;
  line-height: 1.5;
}

.annot .num {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 11px;
  color: var(--fg-dim);
  margin-bottom: 14px;
}

.annot h3 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.25;
}

.annot ul {
  list-style: none;
  color: var(--fg-dim);
  font-size: 12px;
  line-height: 1.7;
}

.annot ul li::before {
  content: '·';
  margin-right: 6px;
  color: var(--fg-mute);
}

.annot.left { left: 0; top: 50%; transform: translateY(-50%); text-align: left; }
.annot.right { right: 0; top: 50%; transform: translateY(-50%); text-align: right; }

/* Right column: bullets need their text reading left-to-right, but the bullet block sits flush right */
.annot.right ul {
  display: inline-block;
  text-align: left;
}

.annot.left::after,
.annot.right::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25));
}
.annot.left::after { right: -68px; transform: translateY(-50%); }
.annot.right::after { left: -68px; transform: translateY(-50%) rotate(180deg); }

@media (max-width: 800px) {
  .intel-stage {
    aspect-ratio: auto;
    flex-direction: column;
    gap: 32px;
    padding: 24px 0;
  }
  .intel-orb { width: 70%; }
  .annot { position: static; transform: none; width: 100%; text-align: center; }
  .annot.left::after, .annot.right::after { display: none; }
  .annot ul { display: inline-block; text-align: left; }
}

/* ============================================================
   4. PROBLEM — stats
   ============================================================ */
.problem {
  background: var(--bg);
  padding: 120px 32px;
  border-top: 1px solid var(--line);
}

.problem-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.problem-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.problem-head h2 .light { color: var(--fg-dim); }

.problem-head p {
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.6;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.stat {
  background: var(--bg-2);
  padding: 44px 32px;
  transition: background 0.3s ease;
}
.stat:hover { background: var(--bg-3); }

.stat .num {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 14px;
}

.stat .label {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.5;
  max-width: 26ch;
}

.stat .src {
  margin-top: 18px;
  font-size: 10px;
  color: var(--fg-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 800px) { .stats { grid-template-columns: 1fr; } }

/* ============================================================
   5. HOW IT WORKS — 4 steps
   ============================================================ */
.how {
  background: var(--bg-2);
  padding: 120px 32px;
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
}

.step {
  background: var(--bg-2);
  padding: 40px 28px 36px;
  transition: background 0.3s ease;
}

.step:hover { background: var(--bg-3); }

.step .num {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--fg-mute);
  margin-bottom: 36px;
}

.step h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.step p {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.55;
}

@media (max-width: 800px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   6. FEATURES
   ============================================================ */
.features {
  background: var(--bg);
  padding: 120px 32px;
  border-top: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
}

.feature {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.4s var(--ease);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.feature:hover {
  background: var(--bg-3);
  border-color: var(--line-2);
  transform: translateY(-2px);
}

.feature h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.feature p {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.55;
}

.feature .ico {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.85);
  stroke-width: 1.4;
}

.feature.f-half { grid-column: span 6; }
.feature.f-third { grid-column: span 4; }
.feature.f-large { grid-column: span 8; min-height: 240px; }
.feature.f-small { grid-column: span 4; min-height: 240px; }

@media (max-width: 1000px) {
  .feature.f-half, .feature.f-large { grid-column: span 12; }
  .feature.f-third, .feature.f-small { grid-column: span 6; }
}

@media (max-width: 600px) {
  .feature.f-third, .feature.f-small { grid-column: span 12; }
}

/* ============================================================
   7. INDUSTRIES
   ============================================================ */
.industries {
  background: var(--bg-2);
  padding: 120px 32px;
  border-top: 1px solid var(--line);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
}

.industry {
  background: var(--bg-2);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: background 0.3s ease;
  min-height: 130px;
  justify-content: space-between;
}

.industry:hover { background: var(--bg-3); }

.industry svg {
  width: 22px;
  height: 22px;
  color: var(--fg-dim);
  stroke-width: 1.4;
  transition: color 0.3s ease;
}
.industry:hover svg { color: var(--fg); }

.industry .name {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--fg);
}

@media (max-width: 1000px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   8. PRICING
   ============================================================ */
.pricing {
  background: var(--bg);
  padding: 120px 32px;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.pricing-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255, 200, 100, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.price-card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.price-block .lbl {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 14px;
}

.price-block .amt {
  font-size: 52px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-block .amt .ccy {
  font-size: 28px;
  font-weight: 300;
  color: var(--fg-dim);
  margin-right: 2px;
  vertical-align: top;
  position: relative;
  top: 8px;
}

.price-block .per {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--fg-dim);
  line-height: 1.5;
}

.price-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  margin-bottom: 32px;
}

.price-includes li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--fg-dim);
}

.price-includes li::before {
  content: '✓';
  color: var(--fg);
  font-size: 11px;
  margin-top: 1px;
  flex-shrink: 0;
}

.price-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  background: #fff;
  color: #000;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: transform 0.2s var(--ease), background 0.2s ease;
}
.price-cta:hover {
  background: #e8e8e8;
  transform: translateY(-1px);
}

.price-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--fg-mute);
}

@media (max-width: 600px) {
  .price-card { padding: 36px 24px; }
  .price-grid, .price-includes { grid-template-columns: 1fr; }
}

/* ============================================================
   9. ROI
   ============================================================ */
.roi {
  background: var(--bg-2);
  padding: 120px 32px;
  border-top: 1px solid var(--line);
}

.roi-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  perspective: 1400px;
}

.roi-copy h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.roi-copy h2 .light { color: var(--fg-dim); display: block; font-weight: 300; }

.roi-copy p {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.65;
  margin-bottom: 12px;
}

.roi-copy .src {
  margin-top: 18px;
  font-size: 10px;
  color: var(--fg-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roi-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  will-change: transform;
}

.roi-card:hover {
  border-color: var(--line-2);
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.roi-card .roi-img,
.roi-card .roi-row,
.roi-card .roi-total {
  transform: translateZ(0);
  transition: transform 0.4s var(--ease);
}

.roi-card:hover .roi-img { transform: translateZ(60px); }
.roi-card:hover .roi-total { transform: translateZ(40px); }
.roi-card:hover .roi-row { transform: translateZ(20px); }

.roi-img {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}

.roi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: filter 0.4s var(--ease);
}

.roi-card:hover .roi-img img { filter: brightness(0.85); }

.roi-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5));
}

.roi-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.roi-row:last-of-type { border-bottom: none; }

.roi-row .k {
  font-size: 13px;
  color: var(--fg-dim);
}

.roi-row .v {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.roi-total {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}

.roi-total .k {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 6px;
}

.roi-total .v {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
}

@media (max-width: 800px) { .roi-wrap { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   10. DEMO CTA
   ============================================================ */
.cta {
  position: relative;
  padding: 160px 32px;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.45;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) brightness(0.5);
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, transparent 0%, rgba(0,0,0,0.85) 100%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.cta h2 .strong { font-weight: 500; }

.cta p {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.6;
  max-width: 50ch;
  margin: 0 auto 36px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #fff;
  color: #000;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.25s var(--ease), background 0.25s ease;
}
.cta-btn:hover {
  background: #e8e8e8;
  transform: translateY(-2px);
}

.cta-meta {
  margin-top: 20px;
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   11. FOOTER
   ============================================================ */
footer {
  padding: 56px 32px 32px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.foot {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
  align-items: start;
}

.foot-brand .logo {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.foot-brand .logo .mark {
  width: 26px;
  height: 26px;
  display: inline-block;
  flex-shrink: 0;
}

.foot-brand p {
  color: var(--fg-dim);
  max-width: 32ch;
  font-size: 13px;
  line-height: 1.65;
}

.foot-col h4 {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 18px;
  font-weight: 500;
}

.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a {
  color: var(--fg-dim);
  font-size: 13px;
  transition: color 0.2s ease;
}
.foot-col a:hover { color: var(--fg); }

.foot-bot {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: 0.06em;
}

@media (max-width: 800px) {
  .foot { grid-template-columns: 1fr; gap: 36px; }
  .foot-bot { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   SUB-PAGE STYLES (about, faq, contact, pricing, legal)
   ============================================================ */
.page {
  padding: 160px 32px 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.page-head {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
  position: relative;
}

.page-head .eyebrow {
  font-size: 14px;
  color: var(--fg-dim);
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.page-head h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.page-head h1 .light { color: var(--fg-dim); display: block; font-weight: 300; }

.page-head p {
  font-size: 16px;
  color: var(--fg-dim);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 auto;
}

.prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-dim);
}

.prose h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 56px 0 18px;
  line-height: 1.2;
}

.prose h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--fg);
  margin: 32px 0 12px;
}

.prose p { margin-bottom: 16px; }

.prose ul, .prose ol {
  margin: 0 0 20px 22px;
  color: var(--fg-dim);
}

.prose li { margin-bottom: 8px; }

.prose a {
  color: var(--fg);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}
.prose a:hover { text-decoration-color: var(--fg); }

.prose strong { color: var(--fg); font-weight: 500; }

.prose .small {
  font-size: 12px;
  color: var(--fg-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Values grid (about page) */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  max-width: 1100px;
  margin: 80px auto 0;
}

.value {
  background: var(--bg-2);
  padding: 40px 32px;
  transition: background 0.3s ease;
}

.value:hover { background: var(--bg-3); }

.value .num {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--fg-mute);
  margin-bottom: 24px;
}

.value h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.value p {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.6;
}

@media (max-width: 800px) { .values { grid-template-columns: 1fr; } }

/* FAQ */
.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 4px 0;
  transition: background 0.3s ease;
}

.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  padding: 22px 4px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.faq-q .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.faq-q .icon::before,
.faq-q .icon::after {
  content: '';
  position: absolute;
  background: var(--fg);
  transition: transform 0.3s var(--ease);
}
.faq-q .icon::before { width: 11px; height: 1px; }
.faq-q .icon::after { width: 1px; height: 11px; }

.faq-item.open .faq-q .icon::after { transform: scaleY(0); }
.faq-item.open .faq-q .icon { background: rgba(255,255,255,0.05); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-a-inner {
  padding: 0 4px 22px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-dim);
}

.faq-a-inner p { margin-bottom: 12px; }
.faq-a-inner p:last-child { margin-bottom: 0; }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 120px;
}

.contact-info h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.contact-list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.contact-list li {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-list .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
}

.contact-list .val {
  font-size: 15px;
  color: var(--fg);
}

.contact-list a:hover { color: var(--fg-dim); }

.form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  color: var(--fg);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.35);
  background: var(--bg-3);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form button {
  width: 100%;
  padding: 14px 24px;
  background: #fff;
  color: #000;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s ease;
  margin-top: 8px;
}

.form button:hover {
  background: #e8e8e8;
  transform: translateY(-1px);
}

.form .note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--fg-mute);
  text-align: center;
}

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info { position: static; }
  .form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
}

/* Pricing page extra */
.pricing-page {
  padding: 160px 32px 0;
}

.pricing-faq {
  padding: 100px 32px 140px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.compare-table {
  max-width: 980px;
  margin: 32px auto 0;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child { border-bottom: none; }

.compare-cell {
  padding: 20px 24px;
  font-size: 14px;
  color: var(--fg-dim);
  border-right: 1px solid var(--line);
}
.compare-cell:last-child { border-right: none; }

.compare-row.head .compare-cell {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-mute);
  background: var(--bg-3);
  font-weight: 500;
}

.compare-row.head .compare-cell.us { color: var(--fg); }

.compare-cell.label { color: var(--fg); font-weight: 400; }

.tick { color: #88e08a; font-weight: 600; }
.cross { color: rgba(255,255,255,0.25); }

@media (max-width: 700px) {
  .compare-cell { padding: 14px 16px; font-size: 13px; }
  .compare-row { grid-template-columns: 1.4fr 0.8fr 0.8fr; }
}

/* ============================================================
   PRICING TIERS — 3-card grid
   ============================================================ */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.tier {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
}

.tier:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
}

.tier.featured {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 255, 255, 0.06), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
  box-shadow: 0 0 60px -10px rgba(255, 255, 255, 0.08);
}

.tier.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.tier-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 5px 10px;
  margin-bottom: 18px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-mute);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  background: rgba(255,255,255,0.02);
}

.tier.featured .tier-tag {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.tier.featured .tier-price .amt,
.tier.featured .tier-price .ccy {
  color: #fff;
}

.tier-name {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.tier-blurb {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.55;
  margin-bottom: 28px;
  min-height: 40px;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.tier-price .ccy {
  font-size: 22px;
  font-weight: 300;
  color: var(--fg-dim);
}

.tier-price .amt {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
}

.tier-price .suffix {
  font-size: 13px;
  color: var(--fg-dim);
  margin-left: 4px;
}

.tier-setup {
  font-size: 12px;
  color: var(--fg-mute);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.tier-includes {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.tier-includes li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.5;
  padding: 7px 0;
}

.tier-includes li::before {
  content: '✓';
  color: var(--fg);
  font-size: 11px;
  margin-top: 1px;
  flex-shrink: 0;
  opacity: 0.7;
}

.tier-includes .heading {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-mute);
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--line);
}
.tier-includes .heading::before { content: ''; }

.tier-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-2);
  color: var(--fg);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tier-cta:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.tier.featured .tier-cta {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.tier.featured .tier-cta:hover {
  background: #f0f0f0;
  box-shadow: 0 8px 24px -6px rgba(255, 255, 255, 0.15);
}

@media (max-width: 1024px) {
  .tiers { grid-template-columns: 1fr; max-width: 560px; }
}

/* ============================================================
   DEMO PAGE — audio sample cards
   ============================================================ */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.demo-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.demo-card:hover {
  border-color: var(--line-2);
  background: var(--bg-3);
}

.demo-card .label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-mute);
}

.demo-card h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.demo-card p {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.6;
}

.demo-player {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.demo-player .play {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  font-size: 12px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.demo-player .play:hover { background: rgba(255,255,255,0.14); }

.demo-player .bars {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1.5px;
  height: 36px;
}

.demo-player .bar {
  flex: 1;
  background: rgba(255,255,255,0.16);
  border-radius: 999px;
  min-height: 2px;
  transition: background 0.18s ease, transform 0.18s ease;
  transform-origin: center;
}

.demo-player .bar.active {
  background: #fff;
}

.demo-player.playing .bar.active:last-of-type,
.demo-player.playing .bar.active + .bar {
  /* subtle pulse on the leading edge */
  background: rgba(255,255,255,0.55);
}

.demo-player audio {
  display: none;
}

.demo-player .time {
  font-size: 11px;
  color: var(--fg-mute);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  min-width: 36px;
  text-align: right;
}

.demo-placeholder-note {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.55;
  max-width: 1100px;
  margin: 0 auto 32px;
}
.demo-placeholder-note strong { color: var(--fg); font-weight: 500; }

@media (max-width: 800px) {
  .demo-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   INDUSTRY LANDING PAGES
   ============================================================ */
.industry-hero {
  padding: 160px 32px 80px;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(110, 231, 255, 0.04), transparent 70%),
    var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Variant: full-bleed background image with dark overlay */
.industry-hero.has-image {
  padding: 220px 32px 140px;
  background: var(--bg);
}

.industry-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.industry-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.95);
}

/* Heavier treatment for bright/clashing source images — darker + warm tone shift */
.industry-hero.hero-tame .hero-bg img {
  filter: brightness(0.32) saturate(0.65) sepia(0.25) contrast(1.05);
}

.industry-hero.hero-tame .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.55) 30%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.92) 100%),
    radial-gradient(ellipse at 50% 50%, rgba(235, 217, 145, 0.06), transparent 70%);
}

.industry-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 30%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.85) 100%);
}

.industry-hero.has-image > *:not(.hero-bg) {
  position: relative;
  z-index: 1;
}

.industry-hero .small {
  font-size: 13px;
  color: var(--fg-dim);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.industry-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0 auto 24px;
  max-width: 18ch;
}

.industry-hero h1 .light { color: var(--fg-dim); display: block; font-weight: 300; }

.industry-hero p {
  font-size: 17px;
  color: var(--fg-dim);
  line-height: 1.55;
  max-width: 56ch;
  margin: 0 auto 40px;
}

.industry-cta-row {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Pain-points section */
.pain {
  padding: 100px 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.pain-cell {
  background: var(--bg-2);
  padding: 36px 28px;
  transition: background 0.3s ease;
}

.pain-cell:hover { background: var(--bg-3); }

.pain-cell .num {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--fg-mute);
  margin-bottom: 24px;
}

.pain-cell h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.pain-cell p {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.55;
}

@media (max-width: 800px) { .pain-grid { grid-template-columns: 1fr; } }

/* Example call section */
.script {
  padding: 100px 32px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.script-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
}

.script-card .lbl {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 24px;
}

.script-line {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.script-line:last-child { border-bottom: none; }

.script-line .who {
  flex-shrink: 0;
  width: 70px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-mute);
  padding-top: 3px;
}

.script-line .who.ai { color: #6ee7ff; }
.script-line .who.caller { color: var(--fg-dim); }

.script-line .text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg);
}

.script-line.caller .text { color: var(--fg-dim); }

/* ============================================================
   TRUST STRIP — sits above the footer
   ============================================================ */
.trust {
  padding: 56px 32px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.trust-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-item .ico {
  width: 28px;
  height: 28px;
  color: var(--fg);
  stroke-width: 1.4;
  margin-bottom: 6px;
  opacity: 0.85;
}

.trust-item .label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--fg);
}

.trust-item .desc {
  font-size: 12px;
  color: var(--fg-mute);
  line-height: 1.5;
}

@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: 1fr; } }


/* ==== Pricing page additions (founder banner, annual line) ==== */
.founder-banner {
  margin-top: 28px;
  padding: 14px 20px;
  background: rgba(244, 211, 94, 0.08);
  border: 1px solid rgba(244, 211, 94, 0.35);
  border-radius: 10px;
  color: #f4d35e;
  font-size: 14px;
  line-height: 1.5;
  display: inline-block;
}
.founder-banner strong { color: #f4d35e; font-weight: 600; }

.annual-line {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--fg-mute);
  opacity: 0.85;
}



/* ==== Region switch (UK | US flags side-by-side) ==== */
.region-switch {
  display: inline-flex;
  align-items: stretch;
  padding: 3px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.region-active,
.region-other {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
}
.region-active {
  background: rgba(244, 211, 94, 0.16);
  color: #f4d35e;
  cursor: default;
  border: 1px solid rgba(244, 211, 94, 0.35);
}
.region-other {
  color: var(--fg-mute);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.18s ease;
}
.region-other:hover {
  color: var(--fg);
  background: rgba(255,255,255,0.06);
}
@media (max-width: 900px) {
  .region-switch { display: none; }
}

/* ==== Flag images inside region switch ==== */
.flag-img {
  width: 20px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  border-radius: 2px;
  flex-shrink: 0;
}
