/* ============================================================
   COLZY — WAITLIST LANDING PAGE  |  style.css v4
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #050508;
  --yellow:      #E6C15A;
  --text-primary: rgba(255, 255, 255, 0.88);
  --text-muted:   rgba(255, 255, 255, 0.44);
  --text-dim:     rgba(255, 255, 255, 0.24);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --loop: 10s;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  background:
    radial-gradient(ellipse 85% 55% at 50% -2%,   rgba(230, 193, 90, 0.11)  0%, transparent 62%),
    radial-gradient(ellipse 130% 80% at 50% 44%,  rgba(108, 68, 214, 0.13)  0%, transparent 68%),
    radial-gradient(ellipse 65%  42% at 50% 102%, rgba(76,  50, 190, 0.09)  0%, transparent 58%),
    #050508;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================================================
   BACKGROUND — CENTRAL GRADIENT + GRAIN
   Warm gold crown at top, deep indigo bloom at center,
   cool fade at bottom. Edge vignette deepens the darkness.
   ============================================================ */

/* Edge vignette — keeps edges dark so gradient feels contained */
.vignette {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 100% 100% at 50% 50%,
    transparent 40%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

/* Film grain */
.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

/* ============================================================
   STICKY HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 56px;
  background: rgba(5, 5, 8, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.site-header.header-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-logo {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.01em;
}

.header-cta {
  display: inline-block;
  padding: 7px 18px;
  background: rgba(255, 255, 255, 0.94);
  color: #050508;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.header-cta:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

[data-animate] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.78s var(--ease-out), transform 0.78s var(--ease-out);
}
[data-animate].in-view { opacity: 1; transform: translateY(0); }

.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordReveal 0.92s var(--ease-out) forwards;
}
@keyframes wordReveal { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */

#hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 110px 24px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-inner { max-width: 620px; width: 100%; position: relative; margin-bottom: 56px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.1s forwards;
}

.eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.7;
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(2.5rem, 7vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.05;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 24px;
  min-height: 1em;
}

/* Grade 5 subheadline — short */
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.55s forwards;
}

.hero-form-wrap {
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.75s forwards;
}

/* Trust badges */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.9s forwards;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.44);
  letter-spacing: 0.01em;
}

.trust-badge--prominent {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.form-below {
  margin-top: 20px;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 2;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.92s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Forms */
.waitlist-form { width: 100%; }
.hidden-field  { display: none; }

.form-row {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  min-width: 0;
}

.email-input::placeholder { color: rgba(255, 255, 255, 0.26); }

.email-input:focus {
  border-color: rgba(230, 193, 90, 0.4);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(230, 193, 90, 0.07);
}

.cta-btn {
  background: #fff;
  color: #070709;
  border: none;
  border-radius: 12px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  letter-spacing: -0.01em;
}

.cta-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.11);
}
.cta-btn:active { transform: translateY(0); }

.success-msg {
  font-size: 15px;
  font-weight: 500;
  color: var(--yellow);
  padding: 18px 0;
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================================
   HERO MOCKUP — inside hero section
   ============================================================ */

.hero-mockup-wrap {
  width: 100%;
  max-width: 900px;
  padding: 0 24px 80px;
  text-align: center;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.video-call-wrapper { display: flex; justify-content: center; }

.video-call {
  width: 100%;
  max-width: 880px;
  background: #0e0e12;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.055),
    0 50px 120px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

/* Top bar */
.call-topbar {
  height: 46px;
  background: #181820;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  user-select: none;
}

.topbar-left, .topbar-right { display: flex; align-items: center; gap: 8px; }

.rec-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: recPulse 2.2s ease-in-out infinite;
}
@keyframes recPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.call-timer {
  font-size: 12px; font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.07em;
}

.call-platform-label { font-size: 12px; color: rgba(255, 255, 255, 0.27); }

.ctrl-icon-sm {
  background: none; border: none;
  padding: 4px; cursor: default;
  display: flex; align-items: center;
  opacity: 0.4;
}

/* Video area */
.call-video-area {
  position: relative;
  height: 480px;
  background: #0c0c10;
  overflow: hidden;
}

/* Subtle scan-line glare */
.call-video-area::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.018) 40%,
    rgba(255, 255, 255, 0.034) 50%,
    rgba(255, 255, 255, 0.018) 60%,
    transparent 100%
  );
  animation: scanLine 12s linear infinite;
  pointer-events: none;
  z-index: 4;
}
@keyframes scanLine {
  from { transform: translateY(-100%); }
  to   { transform: translateY(200%); }
}

.prospect-tile {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(160deg, #14141c 0%, #0a0a10 100%);
}

.self-tile {
  position: absolute;
  top: 16px; right: 16px;
  width: 132px; height: 98px;
  background: linear-gradient(155deg, #1c1c26 0%, #11111a 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.person-silhouette { width: 120px; height: auto; }
.self-tile .person-silhouette { width: 58px; }

/* Speaking bars */
.speaking-indicator {
  display: flex; align-items: flex-end;
  gap: 3px; height: 18px;
  margin-top: 14px; margin-bottom: 4px;
}

.speak-bar {
  display: block; width: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.5);
  animation: speakPulse 0.5s ease-in-out infinite alternate;
  animation-play-state: paused;
}
.video-call-wrapper.animation-active .speak-bar {
  animation-play-state: running;
}
.speak-bar:nth-child(1) { height: 5px;  animation-duration: 0.40s; animation-delay: 0.00s; }
.speak-bar:nth-child(2) { height: 11px; animation-duration: 0.54s; animation-delay: 0.10s; }
.speak-bar:nth-child(3) { height: 7px;  animation-duration: 0.46s; animation-delay: 0.05s; }
.speak-bar:nth-child(4) { height: 14px; animation-duration: 0.60s; animation-delay: 0.15s; }
.speak-bar:nth-child(5) { height: 6px;  animation-duration: 0.43s; animation-delay: 0.08s; }
@keyframes speakPulse {
  from { transform: scaleY(0.28); opacity: 0.3; }
  to   { transform: scaleY(1);    opacity: 0.8; }
}

/* ── Speech subtitle — 10s loop, QUICK entry ── */
.speech-subtitle {
  position: absolute;
  bottom: 90px; left: 50%;
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  animation: speechIn var(--loop) ease-in-out infinite;
  animation-play-state: paused;
  white-space: nowrap;
  z-index: 3;
}
.video-call-wrapper.animation-active .speech-subtitle {
  animation-play-state: running;
}

.speech-quote {
  display: inline-block;
  background: rgba(6, 6, 9, 0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  padding: 10px 22px;
  font-size: 15px; font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

/* Speech: fast in (0→4% idle, 4→14% fade-in), long hold (14→84%), quick fade (84→94%) */
@keyframes speechIn {
  0%,  4%  { opacity: 0; transform: translateX(-50%) translateY(12px); }
  14%, 84% { opacity: 1; transform: translateX(-50%) translateY(0);    }
  94%, 100%{ opacity: 0; transform: translateX(-50%) translateY(-6px); }
}

/* Tile nameplates */
.tile-nameplate {
  position: absolute;
  bottom: 10px; left: 14px;
  font-size: 11px; font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.55);
  padding: 3px 10px; border-radius: 20px;
  pointer-events: none;
}
.self-tile .tile-nameplate {
  bottom: 6px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px; white-space: nowrap;
}

/* ── Colzy overlay card — top-left, QML replica ──
   Fast entry: 20%→32% slide in | Long hold: 32%→84% | Quick fade 84%→94% */
.colzy-overlay-card {
  position: absolute;
  top: 60px; left: 16px;
  width: 380px;
  max-width: calc(100% - 32px);

  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 8px  24px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;

  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 15px 22px 17px;
  z-index: 10;

  opacity: 0;
  transform: translateY(-14px);
  animation: overlayIn var(--loop) ease-in-out infinite;
  animation-play-state: paused;
}
.video-call-wrapper.animation-active .colzy-overlay-card {
  animation-play-state: running;
}

@keyframes overlayIn {
  0%,  20% { opacity: 0; transform: translateY(-14px); }
  32%, 84% { opacity: 1; transform: translateY(0);     }
  94%, 100%{ opacity: 0; transform: translateY(6px);   }
}

/* Overlay header */
.overlay-header {
  display: flex; align-items: center;
  gap: 8px; margin-bottom: 10px;
}

.overlay-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 5px rgba(34, 197, 94, 0.5); }
  50%       { box-shadow: 0 0 14px rgba(34, 197, 94, 0.95); }
}

.overlay-label-text {
  font-size: 11px; font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.07em; text-transform: uppercase;
  flex: 1;
}

.overlay-mic-bars { display: flex; align-items: flex-end; gap: 2px; height: 14px; }

.mic-bar {
  display: block; width: 2.5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: micWave 0.45s ease-in-out infinite alternate;
}
.mic-bar:nth-child(1) { height: 4px;  animation-duration: 0.38s; animation-delay: 0.00s; }
.mic-bar:nth-child(2) { height: 9px;  animation-duration: 0.44s; animation-delay: 0.07s; }
.mic-bar:nth-child(3) { height: 13px; animation-duration: 0.40s; animation-delay: 0.14s; }
.mic-bar:nth-child(4) { height: 8px;  animation-duration: 0.50s; animation-delay: 0.21s; }
.mic-bar:nth-child(5) { height: 11px; animation-duration: 0.36s; animation-delay: 0.06s; }
.mic-bar:nth-child(6) { height: 6px;  animation-duration: 0.42s; animation-delay: 0.18s; }
.mic-bar:nth-child(7) { height: 10px; animation-duration: 0.46s; animation-delay: 0.10s; }
@keyframes micWave {
  from { transform: scaleY(0.3); opacity: 0.45; }
  to   { transform: scaleY(1);   opacity: 1;    }
}

.overlay-body { display: flex; flex-direction: column; gap: 9px; }

.overlay-say { font-size: 15px; color: rgba(255, 255, 255, 0.70); line-height: 1.5; }
.overlay-say strong { font-weight: 700; color: rgba(255, 255, 255, 0.93); }

.overlay-next {
  display: flex; flex-direction: column; gap: 5px;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.next-branch { font-size: 12px; color: rgba(255, 255, 255, 0.40); line-height: 1.55; }
.next-branch span { color: rgba(255, 255, 255, 0.62); font-style: italic; }

/* Call controls bar */
.call-controls-bar {
  height: 60px; background: #181820;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
  gap: 18px; padding: 0 20px;
}

.call-ctrl-btn {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 11px; padding: 8px 16px;
  cursor: default; color: rgba(255, 255, 255, 0.52);
}
.call-ctrl-btn span {
  font-size: 10px; font-weight: 500;
  font-family: var(--font); letter-spacing: 0.02em;
}
.end-call-btn { background: rgba(239, 68, 68, 0.12); border-color: rgba(239, 68, 68, 0.2); }
.end-call-btn span { color: rgba(239, 68, 68, 0.7); }

/* ============================================================
   SECTION 3 — SUPPORT STRIP
   ============================================================ */

#support-strip {
  padding: 28px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 10, 16, 0.55);
  position: relative; z-index: 1;
}

.strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
  max-width: 760px; margin: 0 auto;
}

.strip-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 500;
  color: var(--text-muted); letter-spacing: 0.01em;
}

.strip-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--yellow); opacity: 0.7; flex-shrink: 0;
}

.strip-divider { width: 1px; height: 18px; background: rgba(255, 255, 255, 0.08); }

/* ============================================================
   SECTION 3 — HOW IT WORKS  |  Scroll-driven roadmap
   ============================================================ */

#how-it-works {
  padding: 100px 24px 110px;
  text-align: center;
  position: relative; z-index: 1;
  background: rgba(5, 4, 10, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hiw-inner { max-width: 520px; margin: 0 auto; }

.hiw-headline {
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
  font-weight: 700; letter-spacing: -0.025em;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 72px;
}

/* Roadmap container — holds track + steps */
.roadmap {
  position: relative;
  text-align: left;
}

/* Vertical track line */
.roadmap-track {
  position: absolute;
  left: 22px;       /* center of 44px node */
  top: 44px;        /* starts at bottom of first node */
  bottom: 44px;     /* ends at top of last node */
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

/* Fill — grows downward as you scroll */
.roadmap-fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0%;
  background: linear-gradient(to bottom, var(--yellow), rgba(230, 193, 90, 0.35));
  transition: height 0.12s linear;
}

/* Each step row */
.roadmap-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 28px;
  align-items: center;
  padding-bottom: 60px;
  position: relative;
}
.roadmap-step:last-child { padding-bottom: 0; }

/* Node circle */
.roadmap-node {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: #0b0b10;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  transition: border-color 0.6s ease, background 0.6s ease, box-shadow 0.6s ease;
}

.roadmap-step.step-active .roadmap-node {
  border-color: rgba(230, 193, 90, 0.6);
  background: #110f0a;
  box-shadow: 0 0 28px rgba(230, 193, 90, 0.22);
}

.node-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.28);
  transition: color 0.6s ease;
}

.roadmap-step.step-active .node-num { color: var(--yellow); }

/* Step text */
.roadmap-step-text {
  font-size: 17px; font-weight: 500;
  color: rgba(255, 255, 255, 0.30);
  line-height: 1.6;
  transition: color 0.6s ease, transform 0.6s var(--ease-out);
  transform: translateX(-6px);
}

.roadmap-step.step-active .roadmap-step-text {
  color: rgba(255, 255, 255, 0.84);
  transform: translateX(0);
}

/* ============================================================
   SECTION 5b — FAQ
   ============================================================ */

#faq {
  padding: 100px 24px 120px;
  position: relative; z-index: 1;
}

.faq-inner {
  max-width: 600px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 48px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.4;
  transition: color 0.2s ease;
}
.faq-q:hover { color: rgba(255, 255, 255, 0.96); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
  transition: transform 0.3s var(--ease-out), border-color 0.2s ease, color 0.2s ease;
}
.faq-item.faq-open .faq-icon {
  transform: rotate(45deg);
  border-color: rgba(230, 193, 90, 0.5);
  color: var(--yellow);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.7;
  transition: max-height 0.38s ease, padding-bottom 0.38s ease;
  padding-bottom: 0;
}
.faq-item.faq-open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ============================================================
   SECTION 6 — FINAL CTA
   ============================================================ */

#final-cta {
  padding: 140px 24px 160px;
  text-align: center;
  position: relative; z-index: 1;
}

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

.cta-headline {
  font-size: clamp(1.5rem, 4.2vw, 2.3rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.22;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 44px;
}

.cta-below { margin-top: 20px; font-size: 13px; color: rgba(255, 255, 255, 0.44); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ============================================================
   FORM CONSENT LINE
   ============================================================ */

.form-consent {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  text-align: center;
  line-height: 1.6;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */

.site-footer {
  padding: 28px 24px 36px;
  text-align: center;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-link:hover { color: rgba(255, 255, 255, 0.55); }

@media (max-width: 600px) {
  .site-header { padding: 0 20px; }
  .form-row { flex-direction: column; }
  .email-input, .cta-btn { width: 100%; }
  .faq-q { font-size: 15px; }

  .trust-badges { gap: 10px; flex-wrap: nowrap; }
  .trust-badge { font-size: 10px; gap: 5px; }
  .trust-badge svg { width: 10px; height: 10px; }
  .trust-badge--prominent { font-size: 10px; }
  .hero-mockup-wrap { padding: 0 16px 60px; }

  .strip-inner { flex-direction: column; gap: 14px; text-align: center; }
  .strip-divider { display: none; }

  .call-video-area { height: 340px; }
  .self-tile { width: 94px; height: 72px; }
  .self-tile .person-silhouette { width: 44px; }
  .person-silhouette { width: 85px; }

  .call-controls-bar { gap: 10px; }
  .call-ctrl-btn { padding: 7px 12px; }
  .call-ctrl-btn span { display: none; }

  .colzy-overlay-card { width: 215px; padding: 9px 11px 11px; }
  .overlay-label-text { font-size: 9px; }
  .overlay-say { font-size: 11px; }
  .overlay-next { display: none; }

  .speech-subtitle { bottom: 36px; }
  .speech-quote { font-size: 13px; padding: 8px 16px; }

  .roadmap-step { grid-template-columns: 38px 1fr; column-gap: 20px; }
  .roadmap-node { width: 38px; height: 38px; }
  .roadmap-track { left: 19px; }
  .roadmap-step-text { font-size: 15px; }
}
