/* ============================================================
   Private I — Shared Stylesheet
   Deep navy brand palette matched from app Theme.swift
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* === CUSTOM PROPERTIES === */

:root {
  --bg:        #0b1726;
  --surface:   #132034;
  --surface-2: #1a2940;
  --text:      #e8eef2;
  --muted:     #7a95a8;
  --muted-2:   #4a6578;
  --accent:    #c8a84b;
  --accent-dim: rgba(200,168,75,0.15);
  --accent-border: rgba(200,168,75,0.3);
  --blue:      #7ba8ba;
  --blue-dim:  rgba(123,168,186,0.12);
  --border:    rgba(255,255,255,0.07);
  --border-hi: rgba(255,255,255,0.12);
  --danger:    #c97070;
  --success:   #6bbf8a;

  --radius:    20px;
  --radius-sm: 12px;
  --gap:       clamp(40px, 6vw, 80px);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --nav-h: 68px;
  --max-w: 1140px;
}

/* === RESET & BASE === */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
svg { display: block; }
ul, ol { list-style: none; }

::selection { background: var(--accent-dim); color: var(--text); }

/* === LAYOUT === */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.section { padding-block: var(--gap); }

/* === TYPOGRAPHY === */

.serif { font-family: var(--font-serif); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.accent { color: var(--accent); }
.muted  { color: var(--muted); }

/* === SCROLLBAR === */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 3px; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(11, 23, 38, 0.85);
  border-color: var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text);
  flex-shrink: 0;
}

.logo-eye {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-sans);
  font-weight: 600;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--muted-2);
  text-transform: uppercase;
  margin-top: -2px;
  display: block;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  transition: color 0.2s;
}

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

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 100px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 13.5px;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-nav:hover {
  background: rgba(200,168,75,0.22);
  border-color: rgba(200,168,75,0.5);
  color: var(--accent);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(11,23,38,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px clamp(20px, 5vw, 60px) 32px;
  z-index: 99;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:hover { color: var(--text); }

.mobile-menu .btn-primary-full {
  display: block;
  margin-top: 20px;
  text-align: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  background: var(--accent);
  color: #0b1726;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid var(--border-hi);
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover { border-color: rgba(255,255,255,0.25); color: var(--text); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}

.btn-ghost:hover { opacity: 0.75; }

/* ============================================================
   GLASS CARD — matches app's GlassCard modifier
   ============================================================ */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Grain texture */
.hero::before {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}

/* Glow orbs — matches app's FrostedBackground */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-glow::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,168,186,0.07) 0%, transparent 70%);
  top: -150px;
  left: -100px;
  filter: blur(60px);
}

.hero-glow::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,0.06) 0%, transparent 70%);
  bottom: -80px;
  right: 0;
  filter: blur(80px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-inline: 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
}

.hero-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--text);
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* Eye visual */
.hero-visual {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.eye-orb {
  position: relative;
  width: clamp(160px, 20vw, 220px);
  height: clamp(160px, 20vw, 220px);
}

/* Subtle glow ring behind the logo */
.eye-outer {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid rgba(123,168,186,0.15);
  pointer-events: none;
}

.hero-eyemark {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: eye-breathe 5s ease-in-out infinite;
  filter: drop-shadow(0 0 28px rgba(123,168,186,0.3));
}

@keyframes eye-breathe {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%       { transform: scale(1.03); opacity: 0.88; }
}

/* Scan line */
.hero-scan {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0.4;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--muted-2);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, var(--muted-2));
  animation: scroll-fade 2s ease-in-out infinite;
}

@keyframes scroll-fade {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6) translateY(-4px); }
  50%       { opacity: 0.8; transform: scaleY(1)   translateY(0); }
}

/* ============================================================
   DIVIDER
   ============================================================ */

.divider {
  height: 1px;
  background: var(--border);
  margin-inline: auto;
}

/* ============================================================
   PROBLEM / SOLUTION
   ============================================================ */

.problem-solution {
  padding-block: var(--gap);
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.ps-col {
  padding: clamp(32px, 5vw, 56px);
  position: relative;
}

.ps-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.ps-col--problem {
  background: var(--surface);
  border-right: 1px solid var(--border);
}

.ps-col--solution {
  background: linear-gradient(135deg, rgba(200,168,75,0.04) 0%, var(--surface) 50%);
}

.ps-col h3 {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  margin-bottom: 28px;
  line-height: 1.3;
}

.ps-col--problem h3 { color: var(--muted); }
.ps-col--solution h3 { color: var(--accent); }

.ps-list { display: flex; flex-direction: column; gap: 18px; }

.ps-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.ps-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.ps-col--problem .ps-icon {
  background: rgba(201,112,112,0.12);
  color: var(--danger);
}

.ps-col--solution .ps-icon {
  background: var(--accent-dim);
  color: var(--accent);
}

.ps-col--solution .ps-item { color: var(--text); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.hiw-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.hiw-header h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-top: 12px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin-inline: auto;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent-border), transparent);
}

.step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  position: relative;
}

.step-num {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.step-body { padding-top: 10px; }

.step-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  margin-bottom: 8px;
}

.step-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */

.features-header {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.features-header h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-top: 12px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature {
  background: var(--surface);
  padding: clamp(24px, 3.5vw, 36px);
  position: relative;
  transition: background 0.3s;
}

.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.feature:hover { background: var(--surface-2); }

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
}

.feature h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.feature p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================================
   DECOY SHOWCASE
   ============================================================ */

.decoy-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(60px, 9vw, 110px);
  overflow: hidden;
  position: relative;
}

.decoy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,168,75,0.03) 0%, transparent 50%);
}

.decoy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.decoy-copy { position: relative; z-index: 1; }

.decoy-copy h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.1;
  margin-top: 12px;
  margin-bottom: 20px;
}

.decoy-copy .sub {
  font-size: clamp(17px, 2.2vw, 21px);
  font-style: italic;
  color: var(--accent);
  font-family: var(--font-serif);
  font-weight: 400;
  margin-bottom: 16px;
}

.decoy-copy p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
}

.decoy-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CSS Phone mockup */
.phone-wrap {
  position: relative;
}

.phone-frame {
  width: 220px;
  height: 460px;
  border-radius: 40px;
  background: #0d1520;
  border: 1.5px solid rgba(255,255,255,0.12);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.04),
    0 40px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.phone-island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 28px;
  background: #000;
  border-radius: 14px;
  z-index: 2;
}

.phone-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}

/* Decoy — Loading state */
.decoy-ui {
  flex: 1;
  background: #f5f5f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  padding-top: 56px;
}

.decoy-app-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #c8c8cc 0%, #aeaeb2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.decoy-app-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.decoy-spinner {
  width: 28px;
  height: 28px;
  border: 2.5px solid rgba(0,0,0,0.1);
  border-top-color: rgba(0,0,0,0.35);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.decoy-msg {
  font-family: -apple-system, sans-serif;
  font-size: 13px;
  color: #3c3c43;
  text-align: center;
  line-height: 1.4;
}

.decoy-msg strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1c1c1e;
  margin-bottom: 3px;
}

/* Glow effect around phone */
.phone-glow {
  position: absolute;
  inset: -30px;
  border-radius: 60px;
  background: radial-gradient(ellipse at center, rgba(200,168,75,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Caption under phone */
.phone-caption {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* "You see" badge */
.you-see-badge {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.you-see-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-header {
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.testimonials-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-top: 12px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial {
  padding: clamp(24px, 3vw, 32px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.testimonial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.testimonial:hover { border-color: rgba(200,168,75,0.2); }

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 24px;
  position: relative;
}

.quote-mark {
  font-size: 56px;
  font-family: Georgia, serif;
  line-height: 1;
  color: var(--accent);
  opacity: 0.25;
  display: block;
  margin-bottom: -8px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.author-desc {
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 1px;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.stars svg {
  width: 13px;
  height: 13px;
  color: var(--accent);
}

/* ============================================================
   DOWNLOAD CTA
   ============================================================ */

.cta-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding-block: clamp(60px, 9vw, 110px);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(200,168,75,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-eyebrow { margin-bottom: 20px; }

.cta-section h2 {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 18px;
  max-width: 680px;
  margin-inline: auto;
}

.cta-section h2 em {
  color: var(--accent);
  font-style: italic;
}

.cta-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--muted);
  margin-bottom: 36px;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: var(--text);
  color: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s, transform 0.2s;
}

.store-badge:hover { opacity: 0.88; transform: translateY(-1px); }

.store-badge svg {
  width: 22px;
  height: 22px;
}

.cta-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted-2);
}

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

.footer {
  padding-block: 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted-2);
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 12px;
  color: var(--muted-2);
  text-align: right;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legal-page {
  padding-top: calc(var(--nav-h) + var(--gap));
  padding-bottom: var(--gap);
}

.legal-header {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-header h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 12px;
}

.legal-date {
  font-size: 13px;
  color: var(--muted-2);
}

.legal-body {
  max-width: 720px;
  margin-inline: auto;
}

.legal-body h2 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.legal-body h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-body ul {
  margin-bottom: 14px;
  padding-left: 20px;
}

.legal-body li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 8px;
  list-style: disc;
}

.legal-body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent-border);
}

.legal-body a:hover { text-decoration-color: var(--accent); }

.legal-highlight {
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 16px;
}

.legal-highlight p {
  color: var(--text);
  margin-bottom: 0;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="delay-1"] { transition-delay: 0.1s; }
[data-reveal="delay-2"] { transition-delay: 0.2s; }
[data-reveal="delay-3"] { transition-delay: 0.3s; }
[data-reveal="delay-4"] { transition-delay: 0.4s; }

/* Hero content fades in on page load */
.hero-content {
  animation: hero-enter 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-visual {
  animation: hero-enter 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SECTION SPACING & SHARED HEADERS
   ============================================================ */

.section-header {
  max-width: 580px;
  text-align: center;
  margin-inline: auto;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-header h2 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 500;
  margin-top: 10px;
  line-height: 1.12;
}

/* ============================================================
   STAT STRIP (optional social proof)
   ============================================================ */

.stat-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 36px;
  background: var(--surface);
}

.stat-strip-inner {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 8vw, 100px);
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}

.stat-num em { color: var(--accent); font-style: normal; }

.stat-label {
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

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

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .ps-grid {
    grid-template-columns: 1fr;
  }

  .ps-col--problem {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .decoy-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .decoy-copy p { margin-inline: auto; }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-copy { text-align: center; }

  .you-see-badge { display: none; }
}

@media (max-width: 580px) {
  :root { --gap: 48px; }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .steps::before { display: none; }
}
