/* ═══════════════════════════════════════════════════════
   THE WITNESS — Landing Page (v2 Editorial Redesign)
   ═══════════════════════════════════════════════════════ */

:root {
  --surface-0: #050709;
  --surface-1: #0a0d15;
  --surface-2: #10141e;
  --surface-3: #171c2a;
  --surface-4: #1e2436;

  --border-subtle: rgba(255, 255, 255, 0.04);
  --border-default: rgba(255, 255, 255, 0.07);
  --border-glass: rgba(255, 255, 255, 0.08);

  --text-primary: #f0f1f5;
  --text-secondary: #8b90a6;
  --text-tertiary: #555a70;
  --text-ghost: #353848;

  --accent: #e8a308;
  --accent-hover: #fbbf24;
  --accent-muted: rgba(232, 163, 8, 0.12);
  --accent-glow: rgba(232, 163, 8, 0.08);

  --positive: #34d399;
  --negative: #f87171;
  --info: #60a5fa;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Sora', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--surface-0);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface-0); }
::-webkit-scrollbar-thumb { background: var(--surface-4); border-radius: 3px; }
::selection { background: rgba(232, 163, 8, 0.3); color: white; }

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

/* ── Navigation ──────────────────────────────────────── */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 7, 9, 0.6);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  color: var(--accent);
  display: flex;
  filter: drop-shadow(0 0 8px rgba(232, 163, 8, 0.15));
  transition: transform 0.4s ease-out;
}

.nav-logo:hover .nav-logo-icon {
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px rgba(232, 163, 8, 0.25));
}

.nav-logo-gaze {
  transition: transform 0.15s ease-out;
}

.nav-logo-pupil {
  animation: navPupilPulse 4s ease-in-out infinite;
  transform-origin: 12px 12px;
}

.nav-logo-iris {
  animation: navIrisBlink 6s ease-in-out 3s infinite;
  transform-origin: 12px 12px;
}

@keyframes navPupilPulse {
  0%, 100% { r: 1.5; }
  50% { r: 1.8; }
}

@keyframes navIrisBlink {
  0%, 88% { opacity: 1; }
  92% { opacity: 0; }
  96% { opacity: 1; }
}

.nav-logo-icon.blinking svg {
  animation: navClickBlink 0.18s ease-in-out;
}

@keyframes navClickBlink {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.1); }
}

.nav-logo-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1;
}

.nav-logo-the {
  font-weight: 400;
  opacity: 0.5;
  margin-right: 0.15em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links .nav-link {
  font-size: 14px;
  color: var(--text-tertiary);
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links .nav-link:hover {
  color: var(--text-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-sans);
  background: var(--accent);
  color: var(--surface-0);
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}

.nav-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 20px rgba(232, 163, 8, 0.3);
}

/* ── Hero (Asymmetric Split) ─────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(232, 163, 8, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-text {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  animation: hero-fade-in 1s var(--ease-out) both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--positive);
  animation: pulse-subtle 2s ease-in-out infinite;
}

@keyframes pulse-subtle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: hero-fade-in 1s var(--ease-out) 0.1s both;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent) 0%, #fde68a 50%, var(--accent) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hero-fade-in 1s var(--ease-out) 0.1s both, shimmer-text 6s ease-in-out infinite;
}

@keyframes shimmer-text {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 32px;
  animation: hero-fade-in 1s var(--ease-out) 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: hero-fade-in 1s var(--ease-out) 0.3s both;
}

/* ── Google OAuth Hero Button ─────────────────────── */
.hero-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-sans);
  background: #fff;
  color: #1f1f1f;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  animation: hero-fade-in 1s var(--ease-out) 0.3s both;
}

.hero-google-btn:hover {
  background: #f2f2f2;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 480px;
  margin: 12px 0;
  animation: hero-fade-in 1s var(--ease-out) 0.3s both;
}

.hero-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border-glass);
}

.hero-divider-text {
  font-size: 12px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ── Inline Signup Form ────────────────────────────── */
.hero-signup, .cta-signup {
  animation: hero-fade-in 1s var(--ease-out) 0.3s both;
  margin-bottom: 8px;
}

.hero-signup-row {
  display: flex;
  gap: 0;
  max-width: 480px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: var(--surface-1);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-signup-row:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 163, 8, 0.12);
}

.hero-signup-input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  font-size: 15px;
  font-family: var(--font-sans);
  background: transparent;
  color: var(--text-primary);
  border: none;
  outline: none;
}

.hero-signup-input::placeholder {
  color: var(--text-ghost);
}

.hero-signup-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-sans);
  background: linear-gradient(180deg, #f0b429 0%, var(--accent) 100%);
  color: var(--surface-0);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  min-height: 48px;
}

.hero-signup-btn:hover {
  background: linear-gradient(180deg, var(--accent-hover) 0%, #d4940a 100%);
  box-shadow: 0 4px 20px rgba(232, 163, 8, 0.3);
}

.hero-signup-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.hero-signup-error {
  margin-top: 8px;
  font-size: 13px;
  color: var(--negative);
  min-height: 0;
}

.cta-signup .hero-signup-row {
  max-width: 520px;
  margin: 0 auto;
}

/* ── Hero Channel Logos ─────────────────────────────── */
.hero-channels {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  animation: hero-fade-in 1s var(--ease-out) 0.5s both;
}

.hero-channels-label {
  font-size: 12px;
  color: var(--text-ghost);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.hero-channel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-tertiary);
  transition: all 0.2s;
}

.hero-channel-icon:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-glass);
}

/* ── Social Proof Metrics ──────────────────────────── */
.social-proof-strip {
  padding: 48px 40px;
  border-bottom: 1px solid var(--border-subtle);
}

.social-proof-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 64px;
}

.social-proof-stat {
  text-align: center;
}

.social-proof-value {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  font-style: italic;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.social-proof-label {
  display: block;
  font-size: 14px;
  color: var(--text-tertiary);
  margin-top: 6px;
  font-weight: 500;
}

/* ── Try It Now Demo ─────────────────────────────────── */
.try-demo-section {
  border-bottom: 1px solid var(--border-subtle);
}

.demo-try {
  max-width: 600px;
  margin: 32px auto 0;
}

.demo-try-row {
  display: flex;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: var(--surface-1);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.demo-try-row:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 163, 8, 0.12);
}

.demo-try-input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  font-size: 15px;
  font-family: var(--font-sans);
  background: transparent;
  color: var(--text-primary);
  border: none;
  outline: none;
}

.demo-try-input::placeholder {
  color: var(--text-ghost);
}

.demo-try-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-sans);
  background: linear-gradient(180deg, #f0b429 0%, var(--accent) 100%);
  color: var(--surface-0);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.demo-try-btn:hover {
  background: linear-gradient(180deg, var(--accent-hover) 0%, #d4940a 100%);
}

.demo-try-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.demo-try-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(6,8,16,0.3);
  border-top-color: var(--surface-0);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.demo-try-error {
  margin-top: 8px;
  font-size: 13px;
  color: var(--negative);
}

.demo-try-result {
  margin-top: 20px;
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 24px;
  animation: hero-fade-in 0.5s var(--ease-out);
}

.demo-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.demo-result-type {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(232, 163, 8, 0.1);
  padding: 3px 10px;
  border-radius: 6px;
}

.demo-result-value {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 6px;
}

.demo-result-value--high { background: rgba(52,211,153,0.12); color: var(--positive); }
.demo-result-value--medium { background: rgba(232,163,8,0.12); color: var(--accent); }
.demo-result-value--low { background: rgba(96,165,250,0.12); color: var(--info); }

.demo-result-summary {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.demo-result-finding {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  padding: 12px 16px;
  background: var(--surface-2);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  margin-bottom: 16px;
}

.demo-result-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.demo-result-freq {
  font-size: 12px;
  color: var(--text-tertiary);
}

.demo-result-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

.demo-result-cta:hover {
  color: var(--accent-hover);
}

/* ── Live Intelligence Cards ─────────────────────────── */
.live-intel-section {
  border-bottom: 1px solid var(--border-subtle);
}

.intel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 32px auto 0;
}

.intel-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg, 12px);
  padding: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.intel-card:hover {
  border-color: var(--border-glass);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.intel-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.intel-card-source {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-tertiary);
  min-width: 0;
}

.intel-card-source img {
  width: 16px;
  height: 16px;
  border-radius: 2px;
  flex-shrink: 0;
}

.intel-card-source span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.intel-card-score {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}

.intel-card-score--high { background: rgba(248,113,113,0.12); color: var(--negative); }
.intel-card-score--medium { background: rgba(232,163,8,0.12); color: var(--accent); }
.intel-card-score--low { background: rgba(96,165,250,0.12); color: var(--info); }

.intel-card-summary {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.intel-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-ghost);
}

.intel-card-category {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-tertiary);
  animation: hero-fade-in 1s var(--ease-out) 0.4s both;
}

.hero-proof-sep {
  opacity: 0.3;
}

.hero-proof-stat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-stat-value {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--accent);
}

@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-sans);
  background: linear-gradient(180deg, #f0b429 0%, var(--accent) 100%);
  color: var(--surface-0);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 163, 8, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-sans);
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-hero-secondary:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
}

/* ── Hero Demo Card ──────────────────────────────────── */
.hero-demo {
  animation: hero-demo-in 1.2s var(--ease-out) 0.3s both;
}

@keyframes hero-demo-in {
  from { opacity: 0; transform: translateY(32px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.demo-card {
  background: var(--surface-1);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.02) inset;
  position: relative;
}

.demo-card::before,
.demo-card::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  pointer-events: none;
  z-index: 3;
  opacity: 0.25;
}

.demo-card::before {
  top: 10px;
  left: 10px;
  border-top: 1.5px solid var(--accent);
  border-left: 1.5px solid var(--accent);
}

.demo-card::after {
  bottom: 10px;
  right: 10px;
  border-bottom: 1.5px solid var(--accent);
  border-right: 1.5px solid var(--accent);
}

.demo-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.demo-card-url {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-tertiary);
  min-width: 0;
}

.demo-card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--positive);
  flex-shrink: 0;
  animation: pulse-subtle 2s ease-in-out infinite;
}

.demo-card-url-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.typed-url {
  color: var(--text-secondary);
  border-right: 2px solid var(--accent);
  padding-right: 2px;
  animation: blink-cursor 0.8s step-end infinite;
}

@keyframes blink-cursor {
  0%, 100% { border-color: var(--accent); }
  50% { border-color: transparent; }
}

.demo-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(248, 113, 113, 0.12);
  color: var(--negative);
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.demo-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--negative);
  animation: pulse-subtle 1.5s ease-in-out infinite;
}

.demo-card-body {
  padding: 24px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  min-height: 120px;
  transition: opacity 0.25s ease;
}

.demo-card-body.demo-fade {
  opacity: 0;
}

.demo-score-ring {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.demo-ring-svg {
  width: 48px;
  height: 48px;
  transform: rotate(0deg);
}

.demo-ring-progress {
  transition: stroke-dashoffset 1.5s var(--ease-out);
}

.demo-score-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--negative);
}

.demo-analysis {
  min-width: 0;
}

.demo-analysis-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.demo-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.demo-details li {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}

.demo-details li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 7px;
}

.demo-card-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 12px;
}

.demo-footer-label {
  font-size: 10px;
  color: var(--text-ghost);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.demo-channels {
  display: flex;
  gap: 8px;
}

.demo-channel {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ch-color, var(--text-tertiary));
  opacity: 0.7;
}

.demo-channel::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ch-color, var(--text-tertiary));
}

/* ── Trust Strip ─────────────────────────────────────── */
.trust-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 18px 24px;
  background: var(--surface-1);
}

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

.trust-strip .trust-item {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.trust-sep {
  color: var(--text-ghost);
  font-size: 10px;
}

/* ── Section Shared ──────────────────────────────────── */
.section {
  position: relative;
  z-index: 2;
  padding: 120px 40px;
}

.section--alt {
  background: var(--surface-1);
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-inner--center {
  text-align: center;
}

.section-inner--center .section-title,
.section-inner--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-anchor {
  color: inherit;
  text-decoration: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-title em {
  background: linear-gradient(135deg, var(--accent) 0%, #fde68a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.65;
}

/* ── Features (Staggered Editorial Rows) ─────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 80px;
}

.feature-row--reversed {
  direction: rtl;
}

.feature-row--reversed > * {
  direction: ltr;
}

.feature-row-text {
  display: flex;
  flex-direction: column;
}

.feature-row-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: 16px;
}

.feature-row-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.feature-row-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.feature-row-visual {
  position: relative;
}

/* ── Feature Mockup: Before/After Analysis ───────────── */
.feature-mockup {
  background: var(--surface-2);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  overflow: hidden;
}

.feature-mockup--analysis {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  padding: 24px;
  align-items: center;
}

.mockup-before, .mockup-after {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-ghost);
  margin-bottom: 4px;
}

.mockup-label--alert {
  color: var(--negative);
}

.mockup-line {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 4px 8px;
  border-radius: 4px;
}

.mockup-line--dim {
  color: var(--text-tertiary);
}

.mockup-line--changed {
  background: rgba(248, 113, 113, 0.06);
  border-left: 2px solid var(--negative);
}

.mockup-line--removed {
  text-decoration: line-through;
  color: var(--text-ghost);
  background: rgba(248, 113, 113, 0.04);
}

.mockup-highlight {
  color: var(--negative);
  font-weight: 600;
}

.mockup-arrow {
  padding: 0 12px;
  display: flex;
  align-items: center;
  opacity: 0.5;
}

/* ── Feature Mockup: Screenshots ─────────────────────── */
.feature-mockup--screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px;
}

.mockup-screenshot {
  background: var(--surface-3);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.mockup-ss-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--surface-4);
  border-bottom: 1px solid var(--border-subtle);
}

.mockup-ss-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-ghost);
}

.mockup-ss-url {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-tertiary);
  margin-left: 4px;
}

.mockup-ss-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-ss-line {
  height: 6px;
  border-radius: 3px;
  background: var(--surface-4);
}

.mockup-ss-line--diff {
  background: rgba(248, 113, 113, 0.2);
  box-shadow: inset 0 0 0 1px rgba(248, 113, 113, 0.3);
}

.mockup-ss-block {
  height: 32px;
  border-radius: 4px;
  background: var(--surface-4);
  margin-top: 4px;
}

.mockup-ss-block--diff {
  background: rgba(248, 113, 113, 0.12);
  box-shadow: inset 0 0 0 1px rgba(248, 113, 113, 0.2);
}

.mockup-ss-time {
  display: block;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-ghost);
  border-top: 1px solid var(--border-subtle);
}

/* ── Feature Mockup: Alerts Scoring ──────────────────── */
.feature-mockup--alerts {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-alert {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: var(--surface-1);
  transition: border-color 0.2s;
}

.mockup-alert--low {
  opacity: 0.45;
}

.mockup-alert-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-alert-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mockup-alert-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.mockup-alert-title--muted {
  color: var(--text-ghost);
}

.mockup-alert-sub {
  font-size: 11px;
  color: var(--text-tertiary);
}

.mockup-alert-score {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  min-width: 28px;
  text-align: center;
}

.mockup-alert-score--high { color: var(--negative); }
.mockup-alert-score--mid { color: var(--accent); }
.mockup-alert-score--low { color: var(--text-ghost); }

.mockup-channels-row {
  display: flex;
  gap: 12px;
  padding: 8px 14px 4px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 4px;
}

.mockup-ch-icon {
  opacity: 0.5;
  display: flex;
  align-items: center;
}

/* ── Feature Mockup: Preview & Interact ──────────────── */
.feature-mockup--preview {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--surface-1);
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
}

.mockup-preview-labels {
  display: flex;
  gap: 16px;
  align-items: center;
}

.mockup-preview-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  flex: 1;
}

.mockup-preview-label:last-child {
  padding-left: 32px; /* align with after frame past the arrow */
}

.mockup-preview-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.mockup-preview-dot--before { background: var(--negative); opacity: 0.6; }
.mockup-preview-dot--after { background: var(--positive); opacity: 0.6; }

.mockup-preview-frames {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
}

.mockup-preview-frame {
  background: var(--surface-1);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.mockup-preview-frame--before {
  opacity: 0.75;
  transition: opacity 0.4s var(--ease-out);
}

.feature-mockup--preview:hover .mockup-preview-frame--before {
  opacity: 0.55;
}

.mockup-preview-frame--after {
  border-color: rgba(52, 211, 153, 0.15);
  box-shadow: 0 0 24px rgba(52, 211, 153, 0.04);
  transition: box-shadow 0.4s var(--ease-out);
}

.feature-mockup--preview:hover .mockup-preview-frame--after {
  box-shadow: 0 0 36px rgba(52, 211, 153, 0.08);
}

/* Browser chrome bar */
.mockup-preview-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 8px;
  height: 26px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border-subtle);
}

.mockup-preview-bar .mockup-ss-dot {
  width: 6px;
  height: 6px;
}

.mockup-preview-bar .mockup-ss-dot:last-of-type {
  margin-right: 4px;
}

.mockup-preview-nav-btn {
  color: var(--text-tertiary);
  flex-shrink: 0;
}

.mockup-preview-url {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-tertiary);
  background: var(--surface-0);
  padding: 3px 8px;
  border-radius: 3px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Page content inside browser */
.mockup-preview-page {
  position: relative;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 180px;
}

.mockup-preview-page--clean {
  min-height: 220px;
}

.mockup-preview-site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 4px;
}

.mockup-preview-logo {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-primary);
  margin-right: auto;
}

.mockup-preview-nav-link {
  font-family: var(--font-sans);
  font-size: 8px;
  color: var(--text-tertiary);
}

.mockup-preview-nav-link--active {
  color: var(--text-secondary);
}

.mockup-preview-site-heading {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.mockup-preview-site-sub {
  font-family: var(--font-sans);
  font-size: 8px;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

.mockup-preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.mockup-preview-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 7px;
  background: var(--surface-2);
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
}

.mockup-preview-card--accent {
  border-color: rgba(232, 163, 8, 0.2);
}

.mockup-preview-card-tier {
  font-family: var(--font-sans);
  font-size: 7px;
  font-weight: 500;
  color: var(--text-secondary);
}

.mockup-preview-card-tier--accent {
  color: var(--accent);
}

.mockup-preview-card-price {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Dark overlay on Before frame */
.mockup-preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 16, 0.8);
  z-index: 1;
}

/* Cookie consent dialog */
.mockup-cookie-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: var(--surface-2);
  border: 1px solid var(--border-default);
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 82%;
  max-width: 220px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.mockup-cookie-header {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-primary);
}

.mockup-cookie-desc {
  font-family: var(--font-sans);
  font-size: 8px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.mockup-cookie-btns {
  display: flex;
  gap: 6px;
}

.mockup-cookie-btn {
  flex: 1;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 4px;
}

.mockup-cookie-btn--reject {
  color: var(--text-secondary);
  background: var(--surface-3);
  border: 1px solid var(--border-default);
}

.mockup-cookie-btn--accept {
  color: var(--surface-0);
  background: var(--positive);
  font-weight: 600;
}

/* Click cursor indicator */
.mockup-click-cursor {
  position: absolute;
  bottom: 10px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-click-ring {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: 0.5;
  animation: pulse-subtle 2s ease-in-out infinite;
}

/* Cookie dismiss animation */
@keyframes cookie-dismiss {
  0%, 55% { opacity: 1; transform: translate(-50%, -50%); }
  65% { opacity: 0; transform: translate(-50%, -40%); }
  75%, 100% { opacity: 1; transform: translate(-50%, -50%); }
}

.mockup-cookie-dialog {
  animation: cookie-dismiss 5s ease-in-out 2s infinite;
}

/* Arrow between frames */
.mockup-preview-arrow {
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  flex-shrink: 0;
}

/* Content lines in After frame */
.mockup-preview-content-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 4px;
}

.mockup-preview-content-lines .mockup-ss-line {
  height: 4px;
}

.mockup-preview-faq {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 6px;
}

.mockup-preview-ready {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--positive);
  margin-top: 4px;
  align-self: flex-end;
}

.mockup-preview-ready-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--positive);
  animation: pulse-subtle 2s ease-in-out infinite;
}

/* Action pills */
.mockup-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.mockup-preview-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-secondary);
  background: var(--surface-2);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

/* Stagger reveal when section is visible */
.visible .mockup-preview-action:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.visible .mockup-preview-action:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.visible .mockup-preview-action:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }

/* ── Use Cases (Editorial Grid) ──────────────────────── */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.popular-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border-glass);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.popular-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, var(--accent-glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.popular-card:hover {
  border-color: var(--accent);
  border-style: solid;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.popular-card:hover::before { opacity: 1; }

.popular-favicon {
  border-radius: 8px;
  flex-shrink: 0;
  position: relative;
}

.popular-card-text {
  flex: 1;
  min-width: 0;
  position: relative;
}

.popular-card-name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popular-card-desc {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popular-card-arrow {
  color: var(--text-ghost);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
  position: relative;
}

.popular-card:hover .popular-card-arrow {
  color: var(--accent);
  transform: translateX(2px);
}

/* ── How It Works (Vertical Narrative) ───────────────── */
.steps-vertical {
  margin-top: 64px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.step-v {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
}

.step-v-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-v-number {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-1);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.step-v-line {
  width: 1.5px;
  flex: 1;
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0.25;
  margin-top: 8px;
}

.step-v-content {
  padding-bottom: 56px;
}

.step-v:last-child .step-v-content {
  padding-bottom: 0;
}

.step-v-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  padding-top: 4px;
}

.step-v-icon {
  color: var(--accent);
  flex-shrink: 0;
}

.step-v-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ── Step Mockups ────────────────────────────────────── */
.step-mockup {
  background: var(--surface-2);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  overflow: hidden;
}

/* URL input mockup */
.step-mockup--url {
  padding: 0;
}

.step-url-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
}

.step-url-text {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
}

.step-url-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--surface-0);
  background: var(--accent);
  padding: 6px 16px;
  border-radius: 6px;
  flex-shrink: 0;
}

/* Diff mockup */
.step-mockup--diff {
  padding: 4px 0;
}

.step-diff-row {
  display: flex;
  align-items: center;
  padding: 4px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
}

.step-diff-ln {
  width: 24px;
  text-align: right;
  color: var(--text-ghost);
  margin-right: 12px;
  flex-shrink: 0;
  user-select: none;
}

.step-diff-code {
  color: var(--text-secondary);
}

.step-diff-row--same {
  background: transparent;
}

.step-diff-row--removed {
  background: rgba(248, 113, 113, 0.06);
}

.step-diff-row--removed .step-diff-code {
  color: var(--negative);
}

.step-diff-row--added {
  background: rgba(52, 211, 153, 0.06);
}

.step-diff-row--added .step-diff-code {
  color: var(--positive);
}

/* Notify mockup */
.step-mockup--notify {
  padding: 0;
}

.step-notify-card {
  padding: 16px;
}

.step-notify-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.step-notify-icon {
  display: flex;
  align-items: center;
}

.step-notify-app {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
}

.step-notify-body {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-notify-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.step-notify-body em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12px;
  color: var(--accent);
}

/* ── Pricing ─────────────────────────────────────────── */
.pricing-section {
  background: linear-gradient(180deg, transparent 0%, rgba(232, 163, 8, 0.015) 30%, rgba(232, 163, 8, 0.015) 70%, transparent 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
  align-items: start;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 36px 28px 32px;
  backdrop-filter: blur(12px);
  transition: all 0.35s var(--ease-out);
  position: relative;
  text-align: left;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.10);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card-featured {
  border-color: var(--accent);
  background: rgba(232, 163, 8, 0.03);
  box-shadow: 0 0 60px rgba(232, 163, 8, 0.08);
}

.pricing-card-featured:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(232, 163, 8, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--accent);
  color: var(--surface-0);
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

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

.pricing-amount {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-card-featured .pricing-amount {
  background: linear-gradient(135deg, var(--accent) 0%, #fde68a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-period {
  font-size: 15px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
}

.pricing-feature.included {
  color: var(--text-secondary);
}

.pricing-feature.included svg {
  color: var(--positive);
  flex-shrink: 0;
}

.pricing-feature.excluded {
  color: var(--text-ghost);
}

.pricing-feature.excluded svg {
  color: var(--text-ghost);
  flex-shrink: 0;
  opacity: 0.5;
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-sans);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.pricing-cta-primary {
  background: linear-gradient(180deg, #f0b429 0%, var(--accent) 100%);
  color: var(--surface-0);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.pricing-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(232, 163, 8, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}

.pricing-cta-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
}

.pricing-cta-outline:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

/* ── CTA Section ─────────────────────────────────────── */
.cta-section {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 160px 40px;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(232, 163, 8, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  font-family: var(--font-sans);
  background: linear-gradient(180deg, #f0b429 0%, var(--accent) 100%);
  color: var(--surface-0);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1) inset;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 163, 8, 0.3), 0 0 0 1px rgba(255,255,255,0.1) inset;
}

/* ── Footer ──────────────────────────────────────────── */
.landing-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-subtle);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-ghost);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.footer-brand svg { color: var(--accent); opacity: 0.5; }

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

.footer-links a {
  font-size: 13px;
  color: var(--text-tertiary);
  transition: color 0.15s;
}

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

.footer-lang-switcher {
  background: transparent;
  border: 1px solid var(--border-default);
  border-radius: 6px;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 6px 24px 6px 10px;
  cursor: pointer;
  transition: all 0.15s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23555a70' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.footer-lang-switcher:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

.footer-lang-switcher:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-muted);
}

.footer-lang-switcher option {
  background: var(--surface-2);
  color: var(--text-primary);
}

/* ── Cookie Notice ───────────────────────────────────── */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--surface-3);
  border-top: 1px solid var(--border-default);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-secondary);
  backdrop-filter: blur(12px);
  animation: cookie-slide-up 0.4s var(--ease-out);
}

@keyframes cookie-slide-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-notice p { margin: 0; }
.cookie-notice a { color: var(--accent); text-decoration: none; }
.cookie-notice a:hover { text-decoration: underline; }

.cookie-notice-btn {
  flex-shrink: 0;
  padding: 6px 16px;
  background: var(--accent);
  color: var(--surface-0);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-sans);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-notice-btn:hover { opacity: 0.85; }

/* ── Sticky Mobile CTA ───────────────────────────────── */
.sticky-cta {
  display: none;
}

@media (max-width: 600px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 20px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background: linear-gradient(to top, var(--surface-0) 60%, transparent);
    pointer-events: none;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s var(--ease-out), opacity 0.3s;
  }

  .sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .sticky-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-sans);
    background: linear-gradient(180deg, #f0b429 0%, var(--accent) 100%);
    color: var(--surface-0);
    text-decoration: none;
    border: none;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.2s;
  }

  .sticky-cta-btn:active {
    transform: scale(0.98);
  }
}

/* ── Scroll Reveal ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* Directional reveals for staggered features */
.reveal-from-left {
  opacity: 0;
  transform: translateX(-20px) translateY(10px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-from-left.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.reveal-from-right {
  opacity: 0;
  transform: translateX(20px) translateY(10px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-from-right.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-proof {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-demo {
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-signup-row {
    max-width: 100%;
  }

  .hero-channels {
    justify-content: center;
  }

  .social-proof-inner {
    gap: 40px;
  }

  .social-proof-value {
    font-size: 28px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-row--reversed {
    direction: ltr;
  }

  .feature-row-visual {
    order: -1;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .steps-vertical {
    max-width: 100%;
  }

  .nav-links {
    display: none;
  }

  .trust-strip-inner {
    gap: 6px;
    font-size: 12px;
  }

  .trust-sep {
    display: none;
  }

  .trust-strip .trust-item {
    font-size: 12px;
  }

  .trust-strip-inner {
    flex-direction: column;
    gap: 4px;
  }

  /* On mobile, flatten directional reveals to simple fade-up */
  .reveal-from-left,
  .reveal-from-right {
    transform: translateY(30px);
  }

  .reveal-from-left.visible,
  .reveal-from-right.visible {
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .landing-nav { padding: 0 20px; }
  .section { padding: 80px 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; max-width: 300px; justify-content: center; }
  .landing-footer { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .cta-section { padding: 100px 20px; }

  .hero-signup-row {
    flex-direction: column;
    border-radius: 12px;
  }

  .hero-signup-input {
    border-bottom: 1px solid var(--border-subtle);
  }

  .hero-signup-btn {
    justify-content: center;
    border-radius: 0;
    min-height: 48px;
  }

  .social-proof-strip { padding: 32px 20px; }
  .social-proof-inner { gap: 24px; }
  .social-proof-value { font-size: 24px; }
  .social-proof-label { font-size: 12px; }

  .feature-mockup--analysis {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mockup-arrow {
    transform: rotate(90deg);
    justify-content: center;
  }

  .feature-mockup--screenshots {
    grid-template-columns: 1fr;
  }

  .mockup-preview-frames {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mockup-preview-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }

  .mockup-preview-labels {
    flex-direction: column;
    gap: 0;
  }

  .mockup-preview-label:last-child {
    padding-left: 0;
  }

  .mockup-preview-frame--before {
    opacity: 0.65;
  }

  .mockup-preview-actions {
    justify-content: center;
  }

  .step-v {
    grid-template-columns: 36px 1fr;
    gap: 16px;
  }

  .step-v-number {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
}
