/* ═══════════════════════════════════════════════════════
   YeboGuest Marketing — Cinematic Editorial
   ═══════════════════════════════════════════════════════ */

:root {
  /* Palette */
  --bg:          #050508;
  --bg-elevated: #0a0a10;
  --bg-card:     #0d0d14;
  --bg-card-alt: #0f1018;
  --accent:      #5CECBC;
  --accent-hover: #7cf4d2;
  --accent-dim:  rgba(92, 236, 188, 0.12);
  --accent-glow: rgba(92, 236, 188, 0.06);
  --text-heading: #e8e8ec;
  --text:        #e8e8ec;
  --text-dim:    #8b8b9e;
  --text-muted:  #7a7a90; /* raised from #5a5a6e for WCAG AA 4.5:1 */
  --border:      rgba(255, 255, 255, 0.06);
  --border-lit:  rgba(92, 236, 188, 0.15);

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  /* Spacing */
  --section-py: clamp(80px, 10vw, 140px);
  --container:  min(1200px, 90vw);
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }

/* ─── Global focus style ────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(92, 236, 188, 0.25);
}
.btn--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn--lg {
  padding: 18px 44px;
  font-size: 17px;
}

/* ─── Section helpers ───────────────────────────────── */
.section__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-heading);
  margin-bottom: 20px;
}
.section__subtitle {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* ─── Skip nav ──────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 14px;
  z-index: 10000;
  transition: top 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.skip-link:focus { top: 0; }

/* ═══════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5vw;
  transition: background-color 0.4s, backdrop-filter 0.4s, border-color 0.4s;
}
.nav--scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav__logo-yebo { color: var(--text-heading); }
.nav__logo-guest { color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--text-heading); }
.nav__link--login { color: var(--text-dim) !important; }
.nav__cta {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 12px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background-color 0.3s, transform 0.3s !important;
}
.nav__cta:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ═══════════════════════════════════════════════════════
   HERO — cinematic video background
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 5vw 80px;
  overflow: hidden;
  text-align: center;
  background: #0a0805; /* fallback while video loads */
}

/* Video layer — inset 72px from top (nav height) so nav area stays black */
.hero__video-wrap {
  position: absolute;
  inset: 72px 0 0 0;
  z-index: 0;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Cinematic overlay — covers only the video area */
.hero__overlay {
  position: absolute;
  inset: 72px 0 0 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(5,5,8,0.55) 100%),
    linear-gradient(to bottom, rgba(5,5,8,0.1) 0%, rgba(5,5,8,0.3) 60%, rgba(5,5,8,0.7) 100%);
}

/* Film grain over video */
.hero__grain {
  position: absolute;
  inset: 72px 0 0 0;
  z-index: 2;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

/* Content sits above all layers */
.hero__content {
  max-width: 720px;
  position: relative;
  z-index: 3;
  animation: heroIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.06;
  color: var(--text-heading);
  margin-bottom: 28px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.hero__title--accent {
  color: var(--accent);
  font-style: italic;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin: 0 auto 40px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.hero__note {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ── Section layout */
.page-platform {
  padding: 100px 5vw;
}

.features {
  padding: 100px 5vw;
}

.pricing {
  padding: 100px 5vw;
}

.faq {
  padding: 100px 5vw;
}

.cta {
  padding: 120px 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Page 2: Platform layout */
.page-platform {
  display: flex;
  align-items: center;
  background: var(--bg);
  position: relative;
}
.page-platform__inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.page-platform__text { display: flex; flex-direction: column; gap: 0; }
.page-platform__stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.page-stat__val {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1;
}
.page-stat__label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.page-platform__video { position: relative; }
.page-platform__video .demo__player {
  width: 100%;
  aspect-ratio: 16/9;
}

/* ═══════════════════════════════════════════════════════
   PROOF BAR
   ═══════════════════════════════════════════════════════ */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 5vw;
  background: var(--bg-elevated);
}
.proof__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.proof__item {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.proof__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   DEMO / VIDEO
   ═══════════════════════════════════════════════════════ */
.demo {
  padding: var(--section-py) 5vw;
  text-align: center;
}
.demo__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.demo__player {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-card);
  transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.demo__player:hover {
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(92, 236, 188, 0.08);
  border-color: rgba(92, 236, 188, 0.15);
}
.demo__placeholder {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  cursor: pointer;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(165deg, var(--bg-card-alt) 0%, var(--bg-card) 45%, rgba(5, 5, 8, 0.97) 100%);
}
.demo__thumb-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 55% at 50% 42%, rgba(92, 236, 188, 0.07) 0%, transparent 100%);
  opacity: 0.65;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.demo__placeholder:hover .demo__thumb-glow {
  opacity: 1;
}
.demo__play-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.demo__play-ring {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(92, 236, 188, 0.45);
  animation: playRing 2.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  pointer-events: none;
}
.demo__play-btn {
  position: relative;
  display: flex;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.demo__placeholder:hover .demo__play-btn {
  transform: scale(1.08);
}
.demo__play-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.demo__play-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.01em;
  line-height: 1;
}
.demo__play-sub {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════ */
.features {
  padding: var(--section-py) 5vw;
  text-align: center;
}
.features__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
  border-color: var(--border-lit);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
/* Featured cards: span 2 cols, horizontal layout */
.feature-card--featured {
  grid-column: span 2;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.feature-card--featured .feature-card__icon {
  flex-shrink: 0;
  margin-bottom: 0;
}
.feature-card__body { flex: 1; }
.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.feature-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 12px;
}
.feature-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════ */
.pricing {
  padding: var(--section-py) 5vw;
  text-align: center;
  background: var(--bg-elevated);
}
.pricing__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: left;
  position: relative;
  transition: border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pricing-card:hover {
  border-color: var(--border-lit);
  transform: translateY(-4px);
}
.pricing-card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(92, 236, 188, 0.04) 0%, var(--bg-card) 40%);
}
.pricing-card--featured:hover {
  border-color: var(--accent);
  box-shadow: 0 0 60px rgba(92, 236, 188, 0.08);
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
}
.pricing-card__header { margin-bottom: 28px; }
.pricing-card__name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.pricing-card__desc {
  font-size: 14px;
  color: var(--text-muted);
}
.pricing-card__price {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.pricing-card__amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.pricing-card__currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dim);
}
.pricing-card__number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1;
}
.pricing-card__period {
  font-size: 16px;
  color: var(--text-muted);
  margin-left: 4px;
}
.pricing-card__label {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--text-heading);
}
.pricing-card__global {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}
.pricing-card__features { margin-bottom: 32px; }
.pricing-card__features li {
  font-size: 14px;
  color: var(--text-dim);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card__features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__cta {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIAL
   ═══════════════════════════════════════════════════════ */
.testimonial {
  padding: var(--section-py) 5vw;
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}
.testimonial__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.testimonial__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(92, 236, 188, 0.05), transparent 70%);
  pointer-events: none;
  will-change: transform;
  animation: glowPulse1 8s ease-in-out infinite alternate;
}
.testimonial__quote {
  position: relative;
  text-align: center;
}
.testimonial__mark {
  margin: 0 auto 24px;
  display: block;
}
.testimonial__quote p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  margin-bottom: 32px;
}
.testimonial__quote strong {
  color: var(--accent);
  font-style: normal;
}
.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.testimonial__name {
  font-weight: 600;
  color: var(--text-heading);
  font-style: normal;
  display: block;
}
.testimonial__role {
  font-size: 14px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq {
  padding: var(--section-py) 5vw;
  background: var(--bg-elevated);
}
.faq__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.faq__list {
  text-align: left;
  margin-top: 40px;
}
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question {
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-heading);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.25s;
  list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-size: 24px;
  color: var(--text-muted);
  transition: transform 0.3s, color 0.25s;
  font-weight: 300;
  flex-shrink: 0;
}
details[open] .faq__question::after { transform: rotate(45deg); color: var(--accent); }
.faq__question:hover { color: var(--accent); }
.faq__question:hover::after { color: var(--accent); }
.faq__answer {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  padding-bottom: 24px;
  animation: faqIn 0.3s ease;
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════ */
.cta {
  padding: var(--section-py) 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(92, 236, 188, 0.10), transparent 70%);
  pointer-events: none;
  will-change: transform;
  animation: glowPulse2 10s ease-in-out 3s infinite alternate;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-heading);
  margin-bottom: 20px;
}
.cta__sub {
  font-size: 18px;
  color: var(--text-dim);
  margin: 0 auto 40px;
  line-height: 1.7;
  max-width: 65ch;
}
.cta__actions { margin-bottom: 16px; }
.cta__note {
  font-size: 13px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
}
.footer__bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 5vw;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}
.footer__bar-links {
  display: flex;
  gap: 24px;
}
.footer__bar-links a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__bar-links a:hover { color: var(--accent); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__dashboard { display: none; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--featured {
    grid-column: span 1;
    flex-direction: column;
    gap: 0;
  }
  .feature-card--featured .feature-card__icon { margin-bottom: 24px; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }
  .nav__links.active { display: flex; }
  .nav__links a { font-size: 20px; color: var(--text); }
  .nav__toggle { display: flex; z-index: 1001; }
  .nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__toggle.active span:nth-child(2) { opacity: 0; }
  .nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding: 100px 6vw 0;
    height: 100svh;
  }
  .hero__content {
    position: relative;
    z-index: 3;
    padding-bottom: 36px;
    max-width: 100%;
  }
  .hero__title { font-size: clamp(32px, 9vw, 52px); }
  .hero__sub {
    font-size: 16px;
    margin: 0 0 28px;
    max-width: 100%;
  }
  .hero__actions { justify-content: flex-start; }
  .hero__note { text-align: left; }
  /* video fills remaining height below content */
  .hero__video-wrap {
    position: relative;
    inset: auto;
    width: calc(100% + 12vw);
    margin-left: -6vw;
    flex: 1;
    min-height: 200px;
    overflow: hidden;
  }
  .hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .hero__overlay { inset: auto; position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
  .hero__grain  { inset: auto; position: absolute; top: 0; left: 0; right: 0; bottom: 0; }

  /* ── Features carousel (mobile) */
  .features { overflow: hidden; }
  .features__inner { padding-bottom: 0; }
  .features__grid {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 0 6vw 20px;
    margin: 0 -6vw;
    scrollbar-width: none;
  }
  .features__grid::-webkit-scrollbar { display: none; }
  .feature-card,
  .feature-card--featured {
    flex: 0 0 78vw;
    scroll-snap-align: start;
    flex-direction: column;
    gap: 0;
  }
  .feature-card--featured .feature-card__icon { margin-bottom: 16px; }
  .feature-card__icon { margin-bottom: 16px; }

  /* dots */
  .features__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 4px 0 12px;
  }
  .features__dot {
    position: relative;
    width: 6px; height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.2);
    padding: 0; cursor: pointer;
    transition: background 0.25s, width 0.25s;
  }
  .features__dot::before {
    content: '';
    position: absolute;
    inset: -19px;
  }
  .features__dot.active {
    background: var(--accent);
    width: 18px;
    border-radius: 3px;
  }

  /* ── Pricing carousel (mobile) */
  .pricing__grid {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 0;
    margin: 0 -6vw;
    scrollbar-width: none;
    max-width: none;
    align-items: stretch;
  }
  .pricing__grid::-webkit-scrollbar { display: none; }
  .pricing-card {
    flex: 0 0 100vw;
    scroll-snap-align: start;
    padding: 24px 6vw 28px;
    height: auto;
    min-height: 0;
    box-sizing: border-box;
  }
  /* dots */
  .pricing__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 4px 0 12px;
  }
  .pricing__dot {
    position: relative;
    width: 6px; height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.2);
    padding: 0; cursor: pointer;
    transition: background 0.25s, width 0.25s;
  }
  .pricing__dot::before {
    content: '';
    position: absolute;
    inset: -19px;
  }
  .pricing__dot.active {
    background: var(--accent);
    width: 18px;
    border-radius: 3px;
  }

  .footer__bar { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .footer__bar-links { gap: 16px; }
  .proof__inner { flex-direction: column; gap: 8px; }
  .proof__dot { display: none; }
}

/* ─── Scroll animations ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Ambient background motion ─────────────────────── */
@keyframes glowDrift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-8vw, 10vh) scale(1.12); }
}
@keyframes glowDrift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(12vw, -10vh) scale(1.15); }
}
@keyframes glowDrift3 {
  from { transform: translate(0, 0) scale(1); opacity: 0.6; }
  to   { transform: translate(6vw, 8vh) scale(1.08); opacity: 1; }
}
@keyframes glowPulse1 {
  from { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  to   { transform: translate(-50%, -50%) scale(1.35); opacity: 1; }
}
@keyframes glowPulse2 {
  from { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  to   { transform: translate(-50%, -50%) scale(1.45); opacity: 1; }
}
@keyframes playRing {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ─── Reduced motion ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
