/* ============================================================
   LANDING PAGE DESIGN SYSTEM
   Ported from Claude Design handoff bundle
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --color-orange:        #FF5520;
  --color-text-dark:     #1C1917;
  --color-dark-gray:     #403D39;
  --color-muted:         #57534E;
  --color-gray-text:     #6B7280;
  --color-success:       #10B981;
  --color-warning:       #F59E0B;
  --color-error:         #EF4444;
  --font-display:        'Barlow', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sa-top:              env(safe-area-inset-top, 0px);
  --sa-bottom:           env(safe-area-inset-bottom, 0px);
}

/* ============================================================
   BASE OVERRIDES FOR LANDING PAGE
   ============================================================ */
/* smooth scrolling for anchor nav links */
html {
  scroll-behavior: smooth;
}

.landing-page a { text-decoration: none; }
.landing-page button { cursor: pointer; }
.landing-page ::selection { background: var(--color-orange); color: #fff; }
.landing-page input,
.landing-page textarea,
.landing-page select { font-size: max(16px, 1em); }
:focus-visible { outline: 2px solid var(--color-orange); outline-offset: 3px; border-radius: 6px; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.92;
}
.display-italic { font-style: italic; font-weight: 700; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.eyebrow-on-dark { color: rgba(255,255,255,0.55); }
.eyebrow-accent { color: var(--color-orange); }
.body-lead { font-size: 18px; line-height: 1.55; font-weight: 400; color: var(--color-dark-gray); }
@media (min-width: 768px) { .body-lead { font-size: 20px; } }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 768px) { .container { padding-inline: 48px; } }
@media (min-width: 1200px) { .container { padding-inline: 64px; } }
@media (max-width: 480px) { .container { padding-inline: 20px; } }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(48px); transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-up { opacity: 0; transform: translateY(80px); transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-up.in { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-72px); transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-left.in { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(72px); transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-right.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-scale.in { opacity: 1; transform: none; }

/* Stagger children */
.stagger > * { transition-delay: 0ms; }
.stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.stagger.in > *:nth-child(2) { transition-delay: 80ms; }
.stagger.in > *:nth-child(3) { transition-delay: 160ms; }
.stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.stagger.in > *:nth-child(6) { transition-delay: 400ms; }

/* Text mask reveal */
.mask-line { display: block; overflow: hidden; padding-bottom: 0.15em; margin-bottom: -0.15em; padding-left: 0.08em; margin-left: -0.08em; }
.mask-line > span { display: inline-block; transform: translateY(110%); transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1); }
.in .mask-line > span, .mask-line.in > span { transform: translateY(0); }
.mask-line-d1 > span { transition-delay: 80ms; }
.mask-line-d2 > span { transition-delay: 180ms; }
.mask-line-d3 > span { transition-delay: 280ms; }

/* ============================================================
   MARQUEE
   ============================================================ */
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.marquee-track {
  display: flex;
  flex: 0 0 auto;
  animation: marquee-scroll 40s linear infinite;
  gap: 64px;
  padding-right: 64px;
  white-space: nowrap;
}
.marquee-fast .marquee-track { animation-duration: 28s; }
.marquee-slow .marquee-track { animation-duration: 70s; }
.marquee-reverse .marquee-track { animation-direction: reverse; }

/* ============================================================
   BUTTON BASE (landing page specific)
   ============================================================ */
.btn-land {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
  cursor: pointer;
  border: 0;
  text-decoration: none;
}
.btn-land:hover { transform: translateY(-2px); }
.btn-land-primary { background: var(--color-orange); color: #fff; }
.btn-land-primary:hover { background: #ff6a3d; box-shadow: 0 12px 30px -10px rgba(255,85,32,0.55); }
.btn-land-ghost { background: transparent; color: var(--color-text-dark); border: 1px solid var(--color-text-dark); }
.btn-land-ghost:hover { background: var(--color-text-dark); color: #fff; }
.btn-land-onDark { background: #fff; color: var(--color-text-dark); }
.btn-land-onDark:hover { background: var(--color-orange); color: #fff; }
.btn-land-lg { padding: 18px 28px; font-size: 16px; }
.btn-land-sm { padding: 10px 16px; font-size: 13px; }
.btn-land:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* Waitlist CTA (nav — matches doors-website .btn.btn-primary hover) */
.btn-waitlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  background: var(--color-orange);
  color: #fff;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}
.btn-waitlist:hover { transform: translateY(-2px); background: #ff6a3d; box-shadow: 0 12px 30px -10px rgba(255,85,32,0.55); }
.btn-waitlist:active { transform: scale(0.98); }
.btn-waitlist-sm { padding: 10px 18px; font-size: 13px; }
.btn-waitlist-lg { padding: 18px 28px; font-size: 16px; }

/* SwipeLetters button */
.swipe-btn { position: relative; overflow: hidden; }
.swipe-btn-top { display: flex; white-space: nowrap; }
.swipe-btn-bot { display: flex; position: absolute; inset: 0; align-items: center; justify-content: center; white-space: nowrap; }
.swipe-btn-bot > span { transform: translateY(110%); }

/* Glow Card — spotlight effect on mouse move */
.glow-card { position: relative; }
.glow-card::after { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 1; opacity: var(--go, 0); background: radial-gradient(380px circle at var(--gx, 50%) var(--gy, 50%), var(--glow-color, rgba(255,85,32,0.13)), transparent 70%); transition: opacity 0.4s ease; }

/* ============================================================
   CUSTOM CURSOR (desktop)
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
  .landing-page { cursor: none; }
  .landing-page a, .landing-page button, .landing-page input, .landing-page textarea { cursor: none; }
  .cursor-wrap {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    will-change: transform;
  }
  .cursor-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--color-orange);
    transform: scale(1);
    transition: width 0.32s cubic-bezier(0.22, 1, 0.36, 1),
                height 0.32s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.3s ease,
                border 0.3s ease,
                transform 0.3s ease;
  }
  .cursor-wrap.is-hover .cursor-dot {
    width: 56px; height: 56px;
    background: transparent;
    border: 1.5px solid var(--color-orange);
  }
  .cursor-wrap.on-orange .cursor-dot { background: #FFE7DD; }
  .cursor-wrap.on-orange.is-hover .cursor-dot { background: transparent; border-color: #FFE7DD; }
  .cursor-wrap.on-dark.is-hover .cursor-dot { border-color: #FF8A65; }
}
@media (hover: none), (pointer: coarse) { .cursor-wrap { display: none; } }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--color-orange);
  width: 0;
  z-index: 100;
  transition: width 0.1s linear;
}

/* ============================================================
   SECTION BACKGROUNDS
   ============================================================ */
.bg-warm   { background: #FAF9F7; }
.bg-cream  { background: #F7F5F2; }
.bg-ldark  { background: #1C1917; color: #fff; }
.bg-ldarker { background: #100E0D; color: #fff; }

/* ============================================================
   PILL BADGE
   ============================================================ */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(255,85,32,0.1);
  color: var(--color-orange);
  border: 1px solid rgba(255,85,32,0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.pill-onDark { background: rgba(255,85,32,0.16); border-color: rgba(255,85,32,0.4); }
.pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-orange);
  box-shadow: 0 0 0 0 rgba(255,85,32,0.6);
  animation: l-pulse 2.2s ease-in-out infinite;
}
@keyframes l-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,85,32,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(255,85,32,0); }
}

/* ============================================================
   NAV
   ============================================================ */
.l-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: calc(16px + var(--sa-top)) 0 16px;
  transition: background 0.35s ease, border-color 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease;
}
.l-nav.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: calc(10px + var(--sa-top)) 0 10px;
}
.l-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.l-nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.l-nav-logo-text { font-family: var(--font-display); font-weight: 900; font-size: 20px; letter-spacing: -0.05em; color: var(--color-text-dark); }
.l-nav-links { display: none; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; }
.l-nav-link {
  position: relative;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.l-nav-link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1px;
  background: var(--color-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.l-nav-link:hover { color: var(--color-orange); }
.l-nav-link:hover::after { transform: scaleX(1); }
.l-nav-cta { display: flex; align-items: center; gap: 10px; }
@media (min-width: 900px) { .l-nav-links { display: flex; } }

/* Nav CTA — long label default, short on narrow phones */
.l-nav-cta-short { display: none; }

/* Mobile burger */
.l-nav-burger { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 999px; background: transparent; border: 0; cursor: pointer; }
.l-nav-burger span { display: block; width: 18px; height: 2px; background: currentColor; position: relative; }
.l-nav-burger span::before, .l-nav-burger span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor; }
.l-nav-burger span::before { top: -6px; }
.l-nav-burger span::after { top: 6px; }
@media (min-width: 900px) { .l-nav-burger { display: none; } }

/* Mobile drawer */
.l-mobile-drawer {
  position: fixed; inset: 0;
  background: #fff;
  z-index: 80;
  padding: calc(28px + var(--sa-top)) 24px calc(28px + var(--sa-bottom));
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; flex-direction: column;
}
.l-mobile-drawer.open { transform: none; }
.l-mobile-drawer-head { display: flex; justify-content: space-between; align-items: center; }
.l-mobile-drawer-links { display: flex; flex-direction: column; gap: 4px; margin-top: 40px; }
.l-mobile-drawer-link {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-decoration: none;
  display: block;
}
.l-mobile-drawer-foot { margin-top: auto; padding-top: 24px; display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 480px) {
  .l-nav-inner { gap: 16px; }
  .l-mobile-drawer-link { font-size: 36px; }
}
@media (max-width: 380px) {
  .l-nav-cta-long { display: none; }
  .l-nav-cta-short { display: inline; }
  .l-nav-waitlist-cta { padding: 9px 14px; font-size: 12px; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: stretch;
  overflow: hidden;
  background: #FAF9F7;
  padding-top: 96px;
  padding-bottom: 88px;
}
.hero-gradient {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-gradient::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(58% 52% at 50% 46%, rgba(250,249,247,0.66) 0%, rgba(250,249,247,0.28) 48%, transparent 78%);
  pointer-events: none;
}
.hero-bg-word {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 1;
}
.hero-bg-word span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(220px, 38vw, 600px);
  color: rgba(28,25,23,0.045);
  letter-spacing: -0.05em;
  line-height: 1;
  white-space: nowrap;
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-title {
  text-align: center;
  font-size: clamp(44px, 8.4vw, 132px);
  line-height: 0.95;
  margin-bottom: 28px;
}
.hero-sub { max-width: 620px; margin: 0 auto 36px; }
.hero-sub p { font-size: clamp(15px, 1.4vw, 19px); line-height: 1.55; color: var(--color-dark-gray); }

.hero-scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2;
}
.hero-scroll-cue-line { width: 1px; height: 32px; background: linear-gradient(to bottom, transparent, var(--color-text-dark)); animation: scroll-cue 1.8s ease-in-out infinite; }
.hero-scroll-cue-label { font-size: 10px; letter-spacing: 0.24em; font-weight: 700; color: var(--color-muted); }
@keyframes scroll-cue {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50%       { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

.waitlist-form-wrap { display: flex; justify-content: center; margin-bottom: 32px; }
.waitlist-form {
  position: relative;
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px; padding: 8px;
  width: min(520px, 100%);
  box-shadow: 0 12px 40px -16px rgba(0,0,0,0.18);
}
.waitlist-form input {
  flex: 1; border: 0; outline: 0;
  background: transparent; padding: 12px 18px;
  font-size: 15px; font-family: var(--font-body);
  color: var(--color-text-dark); min-width: 0;
}
.waitlist-form input::placeholder { color: var(--color-gray-text); }
.waitlist-form .btn-land { padding: 14px 22px; font-size: 14px; flex-shrink: 0; }
@media (max-width: 540px) {
  .waitlist-form { flex-direction: column; border-radius: 18px; padding: 12px; }
  .waitlist-form input { width: 100%; padding: 10px 12px; font-size: 16px; }
  .waitlist-form .btn-land { width: 100%; justify-content: center; min-height: 48px; }
}
@media (max-width: 640px) {
  .hero-section { padding-top: calc(80px + var(--sa-top)); padding-bottom: 56px; min-height: 100svh; }
  .hero-bg-word span { font-size: clamp(180px, 50vw, 320px); opacity: 0.55; }
  .hero-title { font-size: clamp(38px, 11vw, 64px); line-height: 1.0; margin-bottom: 20px; letter-spacing: -0.025em; }
  .hero-sub { margin: 0 auto 28px; }
  .hero-sub p { font-size: 15px; }
  .waitlist-form-wrap { margin-bottom: 24px; }
  .waitlist-form input { font-size: 16px; }
  .waitlist-form .btn-land { min-height: 48px; padding: 14px 20px; }
  .hero-social { flex-direction: column; gap: 10px; }
  .hero-social-text { font-size: 14px; text-align: center; }
  .hero-scroll-cue { display: none; }
}
@media (max-width: 380px) {
  .hero-title { font-size: clamp(32px, 11vw, 52px); }
  .hero-bg-word span { font-size: 200px; opacity: 0.4; }
  .hero-av { width: 32px; height: 32px; font-size: 12px; margin-left: -8px; }
}
.hero-social { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero-avatars { display: flex; }
.hero-av {
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid #FAF9F7;
  margin-left: -10px; display: grid; place-items: center; color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.hero-av:first-child { margin-left: 0; }
.hero-av-more { background: var(--color-text-dark); }
.hero-social-text { font-size: 15px; color: var(--color-dark-gray); font-weight: 500; }
.hero-social-text strong { color: var(--color-text-dark); font-weight: 700; font-variant-numeric: tabular-nums; }

/* Product preview */
.product-preview-wrap { margin-top: 80px; padding: 0 24px; display: flex; justify-content: center; }
.product-preview {
  width: min(1100px, 100%); background: #fff;
  border: 1px solid rgba(0,0,0,0.06); border-radius: 24px;
  box-shadow: 0 30px 80px -30px rgba(28,25,23,0.18), 0 8px 24px -10px rgba(28,25,23,0.08);
  padding: 22px; display: grid; grid-template-columns: 320px 1fr; gap: 22px;
}
@media (max-width: 880px) { .product-preview { grid-template-columns: 1fr; padding: 16px; gap: 16px; } }
.pp-side, .pp-center { background: #FAF9F7; border-radius: 18px; padding: 20px; }
.pp-side-head { display: flex; gap: 6px; margin-bottom: 16px; }
.pp-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.12); }
.pp-dot:first-child { background: var(--color-orange); }
.pp-side-eyebrow, .pp-center-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-orange); margin-bottom: 6px; }
.pp-side-title { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; color: var(--color-text-dark); }
.pp-side-meta { font-size: 13px; color: var(--color-muted); margin-top: 4px; margin-bottom: 18px; }
.pp-bar { height: 4px; background: rgba(0,0,0,0.06); border-radius: 999px; overflow: hidden; margin-bottom: 4px; }
.pp-bar span { display: block; height: 100%; background: var(--color-orange); border-radius: 999px; animation: pp-bar-grow 1.6s cubic-bezier(0.22, 1, 0.36, 1) both 0.4s; }
@keyframes pp-bar-grow { from { width: 0 !important; } }
.pp-bar-label { font-size: 11px; color: var(--color-muted); display: inline-block; }
.pp-quotes { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.pp-quote { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 12px; padding: 10px 12px; display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; align-items: center; }
.pp-quote.selected { border-color: var(--color-orange); background: #FFF4F0; }
.pp-quote-name { font-size: 13px; font-weight: 600; color: var(--color-text-dark); display: flex; align-items: center; gap: 8px; }
.pp-quote-rating { font-size: 11px; color: var(--color-muted); grid-column: 1; }
.pp-quote-price { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--color-text-dark); grid-row: 1 / span 2; grid-column: 2; }
.pp-tag { font-size: 9px; letter-spacing: 0.12em; padding: 3px 6px; border-radius: 4px; background: var(--color-orange); color: #fff; font-weight: 700; }
.pp-center-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 4vw, 48px); letter-spacing: -0.025em; line-height: 0.95; color: var(--color-text-dark); margin-top: 6px; }
.pp-bignum { background: var(--color-text-dark); color: #fff; border-radius: 14px; padding: 18px 20px; margin: 16px 0; display: flex; flex-direction: column; gap: 4px; }
.pp-bignum-val { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 4vw, 44px); letter-spacing: -0.02em; }
.pp-bignum-cap { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.pp-categories { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.pp-chip { padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; background: #fff; border: 1px solid rgba(0,0,0,0.06); color: var(--color-dark-gray); }
.pp-chip-on { background: var(--color-orange); color: #fff; border-color: var(--color-orange); }
.pp-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.pp-step { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; background: #fff; padding: 10px; border-radius: 10px; font-size: 11px; color: var(--color-muted); }
.pp-step span { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: rgba(0,0,0,0.18); }
.pp-step b { color: var(--color-text-dark); font-weight: 600; font-size: 12px; }
.pp-step.done { background: rgba(16,185,129,0.08); }
.pp-step.done span { color: var(--color-success); }
.pp-step.active { background: var(--color-orange); }
.pp-step.active span, .pp-step.active b { color: #fff; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section { position: relative; height: 380vh; background: linear-gradient(160deg, #1a1208 0%, #100E0D 45%, #0b160b 100%); }
.video-sticky { background: transparent; will-change: border-radius, width, height; }
.video-expand-label { position: absolute; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.75); font-family: var(--font-display); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; pointer-events: none; z-index: 15; white-space: nowrap; }
.video-expand-label-top { top: 40%; font-size: clamp(22px, 4vw, 56px); }
.video-expand-label-bot { bottom: 30%; font-size: clamp(12px, 1.4vw, 18px); color: rgba(255,255,255,0.5); }
.video-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; pointer-events: none; }
.video-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 28%, rgba(0,0,0,0.7) 100%), rgba(0,0,0,0.18); pointer-events: none; }
.video-bottom-gradient { position: absolute; left: 0; right: 0; bottom: 0; height: 55%; background: linear-gradient(to top, rgba(16,14,13,0.95) 0%, rgba(16,14,13,0.65) 35%, transparent 100%); pointer-events: none; }
.video-top-gradient { position: absolute; left: 0; right: 0; top: 0; height: 30%; background: linear-gradient(to bottom, rgba(16,14,13,0.7) 0%, transparent 100%); pointer-events: none; }
.video-stage { position: absolute; inset: 0; pointer-events: none; }
.video-chapter { position: absolute; left: 48px; right: 48px; bottom: 180px; color: #fff; max-width: 720px; }
.video-chapter-meta { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.video-chapter-idx { font-family: var(--font-display); font-weight: 800; font-size: 14px; letter-spacing: 0.1em; color: var(--color-orange); }
.video-chapter-label { font-size: 11px; letter-spacing: 0.22em; font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,0.7); padding-left: 14px; border-left: 1px solid rgba(255,255,255,0.25); }
.video-chapter-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(48px, 9vw, 140px); letter-spacing: -0.035em; line-height: 0.92; margin-bottom: 14px; text-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.video-chapter-sub { font-size: clamp(16px, 1.8vw, 22px); color: rgba(255,255,255,0.9); max-width: 540px; line-height: 1.45; text-shadow: 0 2px 16px rgba(0,0,0,0.5); }
.video-final { position: absolute; bottom: 180px; right: 48px; color: #fff; }
.video-progress-wrap { position: absolute; left: 48px; right: 48px; bottom: 48px; color: #fff; pointer-events: none; }
.video-progress-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; gap: 24px; font-size: 11px; letter-spacing: 0.16em; font-weight: 700; text-transform: uppercase; }
.video-progress-label { color: rgba(255,255,255,0.6); }
.video-progress-pct { display: flex; gap: 28px; }
.vp-step { color: rgba(255,255,255,0.3); transition: color 0.4s ease; }
.vp-step.on { color: var(--color-orange); }
.video-progress-track { height: 2px; background: rgba(255,255,255,0.15); border-radius: 999px; overflow: hidden; }
.video-progress-fill { height: 100%; background: var(--color-orange); width: 100%; }
.video-loading { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,0.85); font-family: var(--font-display); background: #100E0D; z-index: 5; }
.video-loading-inner { width: min(360px, 70vw); text-align: center; }
.video-loading-bar { height: 2px; background: rgba(255,255,255,0.12); border-radius: 999px; overflow: hidden; margin-bottom: 14px; }
.video-loading-bar span { display: block; height: 100%; background: var(--color-orange); transition: width 0.2s ease; }
.video-loading-text { font-size: 11px; letter-spacing: 0.22em; font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,0.65); }
@media (max-width: 720px) {
  .video-section { height: 300vh; }
  .video-chapter { left: 24px; right: 24px; bottom: 160px; }
  .video-chapter-title { font-size: clamp(40px, 12vw, 80px); }
  .video-chapter-sub { font-size: 14px; }
  .video-progress-wrap { left: 24px; right: 24px; bottom: 24px; }
  .video-progress-pct { display: none; }
  .video-final {
    bottom: 80px;
    left: 24px;
    right: 24px;
    text-align: center;
  }
  .video-final .btn-land { width: 100%; justify-content: center; min-height: 48px; }
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto-section { position: relative; height: 220vh; background: #FAF9F7; }
.manifesto-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; }
.manifesto-text {
  font-size: clamp(40px, 7vw, 110px);
  line-height: 1.02; letter-spacing: -0.03em;
  text-align: left; max-width: 1200px; font-weight: 800;
}
@media (max-width: 640px) {
  .manifesto-section { height: auto; padding-block: 72px; }
  .manifesto-sticky { position: static; height: auto; display: block; }
  .manifesto-text { font-size: clamp(32px, 8vw, 56px); }
  .manifesto-text > span { opacity: 1 !important; transition: none !important; }
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section { padding-block: 120px; }
.stats-eyebrow-spacing { margin-bottom: 24px; }
.stats-title { font-size: clamp(40px, 7vw, 96px); color: #fff; margin-bottom: 80px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-card { background: #1C1917; padding: 48px 40px; display: flex; flex-direction: column; gap: 14px; border-right: 1px solid rgba(255,255,255,0.07); position: relative; cursor: default; }
.stat-card:last-child { border-right: none; }
.stat-eyebrow { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.18em; font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.stat-accent-bar { height: 2px; background: var(--color-orange); border-radius: 2px; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(72px, 9vw, 130px); line-height: 1; letter-spacing: -0.04em; color: #fff; transition: color 0.35s ease; }
.stat-card:hover .stat-num { color: var(--color-orange); }
.stat-label { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.5); max-width: 260px; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat-card:nth-child(2) { border-right: none; } .stat-card:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.07); border-right: none; } }
@media (max-width: 540px) { .stats-grid { grid-template-columns: 1fr; } .stat-card { border-right: none; border-top: 1px solid rgba(255,255,255,0.07); } .stat-card:first-child { border-top: none; } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { position: relative; height: 320vh; background: #fff; }
.how-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden; }
.how-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; width: 100%; align-items: center; }
.how-left { padding-top: 40px; }
.how-progress { display: flex; gap: 6px; margin-bottom: 18px; }
.how-tick { flex: 1; height: 4px; border-radius: 999px; background: rgba(0,0,0,0.08); overflow: hidden; max-width: 80px; }
.how-tick span { display: block; height: 100%; background: var(--color-orange); transform: scaleX(0); transform-origin: left; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.how-tick.on span { transform: scaleX(1); }
.how-counter { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--color-text-dark); letter-spacing: -0.02em; }
.how-counter-cur { color: var(--color-orange); }
.how-counter-sep, .how-counter-tot { color: rgba(0,0,0,0.25); }
.how-right { position: relative; min-height: 520px; }
.how-step { position: absolute; inset: 0; padding: 32px; background: #FAF9F7; border-radius: 24px; border: 1px solid rgba(0,0,0,0.04); opacity: 0; transform: translateY(40px) scale(0.96); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); display: flex; flex-direction: column; gap: 24px; pointer-events: none; overflow: hidden; }
.how-step.passed { opacity: 0; transform: translateY(-40px) scale(0.96); }
.how-step.active { opacity: 1; transform: none; pointer-events: auto; }
.how-step-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(80px, 12vw, 200px); letter-spacing: -0.04em; line-height: 0.9; color: var(--color-orange); }
.how-step-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3vw, 38px); letter-spacing: -0.02em; color: var(--color-text-dark); margin-bottom: 12px; }
.how-step-desc { color: var(--color-dark-gray); font-size: 16px; line-height: 1.55; margin-bottom: 18px; }
.how-step-bullets { display: flex; flex-direction: column; gap: 8px; }
.how-step-bullets li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--color-muted); font-weight: 500; }
@media (max-width: 900px) {
  .how-section { height: auto; }
  .how-sticky { position: static; height: auto; padding-block: 80px; }
  .how-inner { grid-template-columns: 1fr; gap: 40px; }
  .how-right { position: relative; min-height: 0; display: flex; flex-direction: column; gap: 16px; }
  .how-step { position: relative; inset: auto; opacity: 1; transform: none; pointer-events: auto; }
  .how-step.passed { opacity: 1; transform: none; }
}
@media (max-width: 640px) {
  .how-sticky { padding-block: 56px; }
  .how-inner { gap: 24px; }
  .how-right { gap: 12px; }
  .how-step { padding: 24px; gap: 16px; }
  .how-step-num { font-size: clamp(56px, 18vw, 80px); }
  .how-step-desc { margin-bottom: 12px; }
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories-section { background: #fff; padding-block: 96px; overflow: clip; }
.cats-opener-title { font-size: clamp(34px, 5.2vw, 78px); margin-top: 16px; margin-bottom: 0; max-width: 900px; }
.cats-opener { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: end; margin-bottom: 56px; }
.cats-opener-l { padding-bottom: 4px; }
.cats-opener-r { max-width: 380px; padding-bottom: 8px; }
@media (max-width: 900px) {
  .cats-opener { grid-template-columns: 1fr; gap: 24px; align-items: start; margin-bottom: 40px; }
  .cats-opener-r { max-width: 100%; }
}
.cats-list { border: 1px solid rgba(0,0,0,0.1); border-radius: 4px; overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.cat-row { display: grid; grid-template-columns: 80px 1.2fr 1.4fr 80px; align-items: center; gap: 40px; padding: 0 12px; flex: 1; min-height: 0; border-bottom: 1px solid rgba(0,0,0,0.1); color: var(--color-text-dark); transition: background 0.4s ease, color 0.4s ease, padding 0.4s ease; position: relative; text-decoration: none; }
.cat-row:last-child { border-bottom: none; }
.cat-row::before { content: ""; position: absolute; inset: 0; background: var(--color-orange); transform: scaleY(0); transform-origin: bottom; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); z-index: 0; }
.cat-row.hover::before { transform: scaleY(1); }
.cat-row.hover { color: #fff; padding-inline: 24px; }
.cat-row.dim { opacity: 0.32; }
.cat-row > * { position: relative; z-index: 1; }
.cat-num { font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.16em; color: var(--color-orange); transition: color 0.3s ease; }
.cat-row.hover .cat-num { color: rgba(255,255,255,0.7); }
.cat-name { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 4vw, 56px); letter-spacing: -0.025em; line-height: 1; min-width: 0; }
.cat-short { font-size: 15px; color: var(--color-muted); line-height: 1.45; overflow: hidden; min-width: 0; }
.cat-row.hover .cat-short { color: rgba(255,255,255,0.85); }
.cat-row-active.hover::before { transform: scaleY(0); }
.cat-row-active { background: rgba(255,85,32,0.04); }
.cat-arrow { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: rgba(0,0,0,0.04); color: var(--color-text-dark); transition: background 0.3s ease, color 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.cat-row.hover .cat-arrow { background: #fff; color: var(--color-orange); transform: translate(2px, -2px); }
@media (max-width: 900px) {
  .cats-list { height: auto !important; display: block; }
  .cat-row { grid-template-columns: auto 1fr auto; grid-template-rows: auto auto; gap: 12px 16px; padding: 24px 0; flex: unset; }
  .cat-row.hover { padding-inline: 16px; }
  .cat-num { grid-row: 1; grid-column: 1; }
  .cat-name { grid-row: 1; grid-column: 2; font-size: 28px; }
  .cat-arrow { grid-row: 1; grid-column: 3; width: 44px; height: 44px; }
  .cat-short { grid-row: 2; grid-column: 1 / -1; font-size: 14px; }
}

/* ============================================================
   WHY DOORS
   ============================================================ */
.why-section { background: #fff; padding-block: 120px; }
.why-head { margin-bottom: 80px; max-width: 1100px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.why-card { padding: 36px; border: 1px solid rgba(0,0,0,0.1); border-radius: 20px; background: #fff; transition: background 0.4s ease; position: relative; min-height: 280px; display: flex; flex-direction: column; }
.why-card:hover { background: #FAF9F7; }
.why-icon { width: 48px; height: 48px; border-radius: 50%; background: #FFF4F0; display: grid; place-items: center; margin-bottom: 32px; }
.why-num { position: absolute; top: 36px; right: 36px; font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.18em; color: var(--color-muted); }
.why-title { font-family: var(--font-display); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; color: var(--color-text-dark); margin-bottom: 12px; line-height: 1.1; }
.why-desc { font-size: 14px; line-height: 1.55; color: var(--color-muted); }
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROFESSIONALS
   ============================================================ */
.pros-section { padding-block: 120px; overflow: hidden; }
.pros-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.pros-benefits { list-style: none; margin: 0 0 40px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.pros-benefits li { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.85); font-size: 15px; }
.pros-bullet { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,85,32,0.16); border: 1px solid rgba(255,85,32,0.32); display: grid; place-items: center; flex-shrink: 0; }
@media (max-width: 1000px) { .pros-grid { grid-template-columns: 1fr; gap: 56px; } }

/* Dashboard mock */
.dash { background: #fff; color: var(--color-text-dark); border-radius: 24px; padding: 22px; box-shadow: 0 40px 100px -30px rgba(0,0,0,0.5); display: flex; flex-direction: column; gap: 18px; }
.dash-head { display: flex; justify-content: space-between; align-items: center; }
.dash-head-l { display: flex; align-items: center; gap: 12px; }
.dash-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--color-orange); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 14px; letter-spacing: 0.04em; }
.dash-name { font-weight: 700; font-size: 14px; }
.dash-sub { font-size: 12px; color: var(--color-muted); }
.dash-live { font-size: 10px; letter-spacing: 0.16em; font-weight: 700; color: var(--color-orange); display: inline-flex; align-items: center; gap: 6px; }
.dash-live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-orange); animation: dash-pulse 1.6s ease-in-out infinite; }
@keyframes dash-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.dash-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(0,0,0,0.06); border-radius: 14px; overflow: hidden; }
.dash-kpi { background: #FAF9F7; padding: 14px 16px; }
.dash-kpi-label { font-size: 10px; letter-spacing: 0.14em; font-weight: 700; text-transform: uppercase; color: var(--color-muted); }
.dash-kpi-val { font-family: var(--font-display); font-weight: 800; font-size: 32px; letter-spacing: -0.02em; color: var(--color-text-dark); margin-top: 4px; }
.dash-kpi-sub { font-size: 11px; color: var(--color-muted); margin-top: 2px; }
.dash-chart { background: var(--color-text-dark); color: #fff; border-radius: 14px; padding: 16px; }
.dash-chart-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 14px; }
.dash-chart-label { font-size: 10px; letter-spacing: 0.14em; color: rgba(255,255,255,0.5); font-weight: 700; }
.dash-chart-val { font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; margin-top: 2px; }
.dash-chart-delta { color: var(--color-success); font-size: 13px; font-weight: 600; }
.dash-chart-bars { display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px; height: 56px; align-items: end; }
.dash-chart-bar { background: linear-gradient(180deg, var(--color-orange) 0%, rgba(255,85,32,0.4) 100%); border-radius: 2px; height: 0; animation: bar-grow 1s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
@keyframes bar-grow { from { height: 0; } to { height: var(--h); } }
.dash-lead { background: #FFF4F0; border: 1px solid rgba(255,85,32,0.2); border-radius: 14px; padding: 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dash-lead-l { display: flex; align-items: center; gap: 12px; }
.dash-lead-icon { width: 32px; height: 32px; border-radius: 50%; background: #fff; display: grid; place-items: center; }
.dash-lead-title { font-weight: 700; font-size: 13px; }
.dash-lead-sub { font-size: 11px; color: var(--color-muted); margin-top: 2px; }
.dash-lead-cta { font-size: 12px; font-weight: 700; color: var(--color-orange); white-space: nowrap; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: #fff; padding-block: 120px; }
.faq-head { margin-bottom: 80px; max-width: 1100px; }
.faq-body { max-width: 980px; margin: 0 auto; }
.faq-group { margin-bottom: 64px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-label { font-size: 12px; letter-spacing: 0.2em; font-weight: 700; color: var(--color-orange); text-transform: uppercase; margin-bottom: 24px; display: inline-flex; align-items: center; gap: 12px; }
.faq-group-label::before { content: ""; width: 24px; height: 1px; background: var(--color-orange); }
.faq-list { display: flex; flex-direction: column; list-style: none; margin: 0; padding: 0; }
.faq-item { border-top: 1px solid rgba(0,0,0,0.1); }
.faq-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; padding: 28px 0; text-align: left; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; font-size: clamp(20px, 2.4vw, 30px); color: var(--color-text-dark); transition: color 0.3s ease; background: transparent; border: 0; cursor: pointer; }
.faq-q:hover { color: var(--color-orange); }
.faq-q-text { flex: 1; }
.faq-q-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.05); flex-shrink: 0; position: relative; transition: background 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.faq-q-icon span { position: absolute; background: var(--color-text-dark); top: 50%; left: 50%; }
.faq-q-icon span:nth-child(1) { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-q-icon span:nth-child(2) { width: 2px; height: 14px; transform: translate(-50%, -50%); transition: transform 0.3s ease; }
.faq-item.open .faq-q-icon { background: var(--color-orange); transform: rotate(180deg); }
.faq-item.open .faq-q-icon span { background: #fff; }
.faq-item.open .faq-q-icon span:nth-child(2) { transform: translate(-50%, -50%) scaleY(0); }
.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; font-size: 16px; line-height: 1.6; color: var(--color-muted); max-width: 720px; }
.faq-item.open .faq-a { padding-bottom: 28px; }
/* Motion handles FAQ icon rotation — reset CSS transform to avoid conflict */
.faq-item.open .faq-q-icon { transform: none; }
.faq-item.open .faq-q-icon span:nth-child(2) { transform: translate(-50%,-50%) scaleY(1); }
/* FAQ two-column sticky layout */
.faq-two-col { display: grid; grid-template-columns: 0.44fr 0.56fr; gap: 80px; align-items: start; }
.faq-col-left { position: sticky; top: 100px; }
.faq-group-tabs { display: flex; flex-direction: column; gap: 4px; }
.faq-tab-btn { position: relative; text-align: left; padding: 11px 14px; font-size: 14px; font-weight: 600; letter-spacing: -0.01em; color: var(--color-muted); background: transparent; border: 0; border-radius: 10px; cursor: pointer; transition: color 0.2s ease, background 0.2s ease; }
.faq-tab-btn.active { color: var(--color-text-dark); background: #F0EFED; }
.faq-tab-btn:hover:not(.active) { background: rgba(0,0,0,0.04); color: var(--color-text-dark); }
.faq-q-num { font-size: 11px; font-weight: 700; color: var(--color-orange); letter-spacing: 0.1em; font-feature-settings: "tnum"; flex-shrink: 0; padding-top: 5px; }
.faq-section .faq-q { font-size: clamp(16px, 1.5vw, 22px); gap: 16px; }
@media (max-width: 900px) { .faq-two-col { grid-template-columns: 1fr; gap: 0; } .faq-col-left { position: static; margin-bottom: 48px; } }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { background: #0D0D0B; color: #fff; padding-block: 120px; position: relative; overflow: hidden; }
.final-cta::before { content: none; }
.final-watermark { position: absolute; left: -1vw; bottom: -2vw; font-family: var(--font-display); font-weight: 900; font-size: 20vw; line-height: 0.85; letter-spacing: -0.05em; color: rgba(255,255,255,0.04); pointer-events: none; z-index: 0; user-select: none; will-change: transform; }
.final-cta-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.final-cta-title { font-size: clamp(48px, 8vw, 128px); color: #fff; margin-top: 16px; margin-bottom: 40px; text-align: center; }
.final-trust-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.final-trust-pill { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; background: rgba(13,13,11,0.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.22); border-radius: 999px; font-size: 13px; font-weight: 600; color: #fff; box-shadow: 0 4px 18px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.08); }
.final-trust-pill svg { color: #34D399; flex-shrink: 0; filter: drop-shadow(0 0 4px rgba(16,185,129,0.45)); }
.final-form-card { background: rgba(10,10,8,0.82); backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px); border: 1px solid rgba(255,255,255,0.14); border-radius: 24px; padding: 36px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 40px 100px -20px rgba(0,0,0,0.8); max-width: 520px; width: 100%; }
.final-form-eyebrow { font-size: 11px; letter-spacing: 0.2em; font-weight: 700; color: var(--color-orange); margin-bottom: 18px; }
.final-form { display: flex; flex-direction: column; gap: 16px; }
.final-form-label { font-size: 12px; letter-spacing: 0.08em; font-weight: 600; color: rgba(255,255,255,0.65); }
.final-form input { padding: 14px 16px; border: 1px solid rgba(255,255,255,0.18); border-radius: 12px; font-size: 16px; font-family: var(--font-body); color: #fff; background: rgba(255,255,255,0.1); outline: none; transition: border-color 0.2s ease, background 0.2s ease; width: 100%; box-sizing: border-box; }
.final-form input::placeholder { color: rgba(255,255,255,0.38); }
.final-form input:focus { border-color: var(--color-orange); background: rgba(255,255,255,0.13); }
.final-form-roles { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.final-form-roles-label { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500; }
.final-form-note { font-size: 12px; color: rgba(255,255,255,0.42); text-align: center; margin-top: 2px; }
.role-toggle { display: inline-flex; background: #F5F5F5; border-radius: 999px; padding: 4px; }
.role-opt { padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--color-muted); border-radius: 999px; transition: background 0.25s ease, color 0.25s ease; background: transparent; border: 0; cursor: pointer; }
.role-opt.on { background: var(--color-orange); color: #fff; }
.final-cta .role-toggle { background: rgba(255,255,255,0.08); }
.final-cta .role-opt { color: rgba(255,255,255,0.45); }
.final-cta .role-opt.on { background: var(--color-orange); color: #fff; }
@media (max-width: 640px) {
  .final-cta { padding-block: 72px; }
  .final-cta-title { font-size: clamp(36px, 10vw, 56px); margin-bottom: 28px; }
  .final-watermark { font-size: 28vw; opacity: 0.7; }
  .final-trust-pills { gap: 6px; margin-bottom: 28px; }
  .final-trust-pill { padding: 6px 12px; font-size: 12px; }
  .final-form-card { padding: 20px 16px; border-radius: 18px; }
  .final-form-eyebrow { font-size: 10px; margin-bottom: 14px; }
  .final-form input { padding: 14px 14px; }
  .final-form .btn-land { min-height: 48px; }
  .final-form-roles { gap: 8px; }
  .final-cta .role-toggle { width: 100%; justify-content: space-between; }
  .final-cta .role-opt { flex: 1; text-align: center; padding: 10px 10px; }
}
@media (max-width: 380px) {
  .final-cta-title { font-size: 32px; line-height: 1.02; }
  .final-trust-pills { flex-direction: column; align-items: center; }
  .final-trust-pill { width: fit-content; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.l-footer { background: #FAF9F7; padding-top: 80px; padding-bottom: 24px; overflow: hidden; }
.l-footer-top { display: grid; grid-template-columns: 1.2fr 2.8fr; gap: 64px; margin-bottom: 64px; }
.l-footer-tagline { font-size: 15px; color: var(--color-muted); line-height: 1.5; max-width: 240px; }
.l-footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.l-footer-col h4 { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-orange); margin-bottom: 16px; }
.l-footer-col ul { display: flex; flex-direction: column; gap: 10px; list-style: none; margin: 0; padding: 0; }
.l-footer-col a { font-size: 14px; color: var(--color-dark-gray); transition: color 0.2s ease; text-decoration: none; }
.l-footer-col a:hover { color: var(--color-orange); }
.l-footer-wordmark { font-family: var(--font-display); font-weight: 900; font-size: clamp(120px, 22vw, 360px); line-height: 0.85; letter-spacing: -0.05em; color: var(--color-text-dark); text-align: center; margin-bottom: 24px; }
.l-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.08); font-size: 13px; color: var(--color-muted); flex-wrap: wrap; gap: 12px; }
@media (max-width: 1000px) {
  .l-footer-top { grid-template-columns: 1fr; }
  .l-footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) { .l-footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; } }

/* ============================================================
   MOBILE — homepage polish (≤640px; desktop unchanged)
   ============================================================ */
@media (max-width: 640px) {
  .stats-section,
  .categories-section,
  .why-section,
  .faq-section,
  .pros-section { padding-block: 56px; }
  .stats-eyebrow-spacing { margin-bottom: 12px; }
  .stats-title { font-size: clamp(32px, 9vw, 44px); margin-bottom: 24px; line-height: 1.02; }
  .stat-card { padding: 28px 20px; gap: 8px; }
  .stat-num { font-size: clamp(56px, 16vw, 80px); }
  .stat-label { font-size: 13px; max-width: 100%; }

  .cats-opener { margin-bottom: 20px; }
  .cats-opener-title { font-size: clamp(28px, 7vw, 36px); }
  .cats-list {
    border: 0;
    background: transparent;
    gap: 12px;
    display: flex;
    flex-direction: column;
    height: auto !important;
  }
  .cat-row {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px 14px;
    padding: 20px 18px !important;
    flex: unset;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .cat-row:last-child { border-bottom: 1px solid rgba(0,0,0,0.06); }
  .cat-row::before { display: none; }
  .cat-row.hover { color: var(--color-text-dark); padding-inline: 18px !important; }
  .cat-row-active { background: #fff; }
  .cat-row.dim { opacity: 1; }
  .cat-num { grid-row: 1; grid-column: 1; font-size: 12px; padding-top: 6px; }
  .cat-name { grid-row: 1; grid-column: 2; font-size: 24px; }
  .cat-arrow { grid-row: 1; grid-column: 3; width: 40px; height: 40px; background: rgba(0,0,0,0.04); }
  .cat-short { grid-row: 2; grid-column: 1 / -1; font-size: 13px; padding-right: 4px; }

  .why-head { margin-bottom: 28px; }
  .why-card { padding: 28px; min-height: auto; }
  .faq-head { margin-bottom: 28px; }
  .faq-q { font-size: 17px; padding: 22px 0; }
  .l-footer { padding-top: 56px; padding-bottom: calc(24px + var(--sa-bottom)); }
  .l-footer-wordmark { padding-inline: 0; }
}
@media (max-width: 480px) {
  .l-footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============================================================
   INDEX NUM
   ============================================================ */
.index-num { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: 0.16em; color: var(--color-orange); }

/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/ba9851c3c22cd980-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/21350d82a1f187e9-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/df0a9ae256c0569c-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/8e9860b6e62d6359-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: 'Inter Fallback';src: local("Arial");ascent-override: 90.44%;descent-override: 22.52%;line-gap-override: 0.00%;size-adjust: 107.12%
}.__className_f367f3 {font-family: 'Inter', 'Inter Fallback';font-style: normal
}

