/* ============================================================================
   Faux Spy App Waitlist Landing Page
   White-background adaptation of the brand's gold/noir palette
   ============================================================================ */

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

:root {
  --yellow:      #fbbf24;
  --yellow-dark: #d97706;
  --yellow-deep: #92400e;
  --black:       #0a0a0a;
  --gray-body:   #4b5563;
  --gray-light:  #f9fafb;
  --gray-border: #e5e7eb;
  --white:       #ffffff;
  --dark-bg:     #0a0e1a;
  --dark-card:   #1e2536;
  --radius:      12px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.app-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-border);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 800;
  font-size: 20px;
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span { color: var(--yellow-dark); }

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

.nav-link {
  font-size: 14px;
  color: var(--gray-body);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--black); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.8; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  padding: 60px 24px 80px;
  background:
    radial-gradient(ellipse 550px 650px at 22% 55%, rgba(15,20,40,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 600px 500px at 25% 50%, rgba(251,191,36,0.07) 0%, transparent 70%),
    var(--white);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ── Phone Mockup ────────────────────────────────────────────────────────── */
.phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.phone-wrap::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(251,191,36,0.16) 0%, transparent 65%);
  bottom: 0; left: 8%;
  z-index: -1; pointer-events: none;
}

.phone-wrap::after {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.13) 0%, transparent 65%);
  top: 0; right: 5%;
  z-index: -1; pointer-events: none;
}

/* Floating AI Confidence chip — isolated component technique */
.phone-float-chip {
  position: absolute;
  right: -16px; top: 48%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, rgba(239,68,68,0.95), rgba(185,28,28,0.9));
  color: white;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 30px rgba(239,68,68,0.45), 0 2px 8px rgba(0,0,0,0.2);
  white-space: nowrap; letter-spacing: 0.3px;
  animation: chipFloat 3s ease-in-out infinite;
  z-index: 10;
}

.chip-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff; flex-shrink: 0;
  animation: chipPulse 1.5s ease-out infinite;
}

@keyframes chipFloat {
  0%, 100% { transform: translateY(-50%) translateY(0px); }
  50% { transform: translateY(-50%) translateY(-8px); }
}

@keyframes chipPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.phone-outer {
  position: relative;
  display: inline-block;
  transform: perspective(1000px) rotateY(-15deg) rotateX(4deg) rotateZ(1.5deg);
  transition: transform 0.4s ease;
}

.phone-outer:hover {
  transform: perspective(1000px) rotateY(-8deg) rotateX(2deg) rotateZ(0.5deg);
}

/* Hardware buttons — visible because they live OUTSIDE overflow:hidden */
.phone-btn-right {
  position: absolute; right: -4px; top: 154px;
  width: 4px; height: 90px;
  background: linear-gradient(180deg, #3a3a3c, #2c2c2e, #3a3a3c);
  border-radius: 0 3px 3px 0;
  box-shadow: inset -1px 0 2px rgba(0,0,0,0.4);
  z-index: 2;
}
.phone-btn-silent {
  position: absolute; left: -4px; top: 129px;
  width: 4px; height: 39px;
  background: linear-gradient(180deg, #3a3a3c, #2c2c2e, #3a3a3c);
  border-radius: 3px 0 0 3px;
  z-index: 2;
}
.phone-btn-vol-up {
  position: absolute; left: -4px; top: 199px;
  width: 4px; height: 58px;
  background: linear-gradient(180deg, #3a3a3c, #2c2c2e, #3a3a3c);
  border-radius: 3px 0 0 3px;
  z-index: 2;
}
.phone-btn-vol-down {
  position: absolute; left: -4px; top: 276px;
  width: 4px; height: 58px;
  background: linear-gradient(180deg, #3a3a3c, #2c2c2e, #3a3a3c);
  border-radius: 3px 0 0 3px;
  z-index: 2;
}

.phone-frame {
  width: 340px;
  height: 695px;
  background: linear-gradient(145deg, #2e2e30, #1c1c1e 35%, #242426 65%, #1c1c1e);
  border-radius: 50px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 0 0 2px rgba(255,255,255,0.04),
    25px 45px 80px rgba(0,0,0,0.55),
    10px 20px 40px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  padding: 8px;
}

/* Dynamic Island */
.phone-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 138px;
  height: 36px;
  background: #1c1c1e;
  border-radius: 20px;
  z-index: 20;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 42px;
  overflow: hidden;
  position: relative;
  background: #fff;
}

.phone-screen::after {
  content: '';
  position: absolute; inset: 0; z-index: 10;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 50%);
  pointer-events: none;
  border-radius: inherit;
}


/* Slides */
.phone-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.phone-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.phone-slide.active { opacity: 1; }

/* ── Slide 1: Instagram post ─────────────────────────────────────────────── */
.slide-1 {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px 6px;
  font-size: 11px;
  font-weight: 600;
  color: #1c1c1e;
  flex-shrink: 0;
}

/* Instagram-style post UI */
.insta-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 12px 8px; border-bottom: 1px solid #efefef; flex-shrink: 0;
}
.insta-logo {
  font-size: 17px; font-weight: 800; font-style: italic;
  letter-spacing: -0.5px; color: #1c1c1e;
}
.insta-nav-icons { display: flex; gap: 14px; font-size: 18px; color: #1c1c1e; }

.insta-post-header {
  display: flex; align-items: center; padding: 8px 10px; gap: 8px; flex-shrink: 0;
}
.insta-avatar-ring {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  padding: 2px;
}
.insta-avatar-inner {
  width: 100%; height: 100%; border-radius: 50%;
  background: linear-gradient(160deg, #f0c9a0, #d4956a);
  border: 1.5px solid #fff;
}
.insta-uname-col { flex: 1; }
.insta-username { font-size: 11px; font-weight: 700; color: #1c1c1e; }
.insta-subloc { font-size: 9px; color: #8e8e93; }
.insta-more-btn { font-size: 16px; font-weight: 700; color: #1c1c1e; }

/* Warm portrait photo — layered radial gradients read as person in golden-hour light */
.insta-photo {
  width: 100%;
  height: 248px;
  flex-shrink: 0;
  background:
    radial-gradient(ellipse 90px 55px at 50% 5%, rgba(32,18,10,0.85) 0%, transparent 100%),
    radial-gradient(ellipse 55px 80px at 50% 42%, #f3c9a0 0%, #e09070 55%, transparent 80%),
    radial-gradient(ellipse 45px 55px at 33% 85%, rgba(240,196,160,0.7) 0%, transparent 70%),
    radial-gradient(ellipse 45px 55px at 68% 85%, rgba(240,196,160,0.7) 0%, transparent 70%),
    radial-gradient(ellipse 90px 90px at 18% 60%, rgba(190,120,60,0.45) 0%, transparent 70%),
    radial-gradient(ellipse at 70% 65%, #b8642a 0%, #8b4510 100%),
    linear-gradient(180deg, #7a3f18 0%, #c07848 45%, #d4956a 100%);
}

.insta-actions-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 12px 3px; font-size: 18px; color: #1c1c1e; flex-shrink: 0;
}
.insta-left-actions { display: flex; gap: 14px; }
.insta-share-icon { color: var(--yellow-dark); animation: shareGlow 2s ease-in-out infinite; }
.insta-likes { padding: 0 12px 2px; font-size: 11px; font-weight: 700; color: #1c1c1e; flex-shrink: 0; }
.insta-caption { padding: 0 12px 8px; font-size: 10px; color: #1c1c1e; line-height: 1.4; flex-shrink: 0; }

@keyframes shareGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251,191,36,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(251,191,36,0); }
}

/* ── Slide 2: Share sheet ────────────────────────────────────────────────── */
.slide-2 {
  background: #f2f2f7;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.slide-2-bg {
  flex: 1;
  background: linear-gradient(135deg, #f4c09a 0%, #e8955e 45%, #c46b28 100%);
  opacity: 0.4;
}

.share-sheet {
  background: #f2f2f7;
  border-radius: 16px 16px 0 0;
  padding: 12px 16px 24px;
}

.sheet-handle {
  width: 36px;
  height: 4px;
  background: #c7c7cc;
  border-radius: 2px;
  margin: 0 auto 14px;
}

.sheet-label {
  font-size: 12px;
  color: #8e8e93;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 500;
}

.share-apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 4px;
  margin-bottom: 12px;
}

.share-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.share-app-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  border: none;
}

/* App-specific icon colors matching real iOS share sheet */
.icon-airdrop  { background: linear-gradient(180deg, #6e6e73, #3a3a3c); font-size: 20px; }
.icon-messages { background: linear-gradient(180deg, #34d058, #28a745); font-size: 16px; }
.icon-mail     { background: linear-gradient(180deg, #3a8ef8, #1f6ef0); font-size: 16px; }
.icon-safari   { background: linear-gradient(180deg, #3a8ef8, #1f6ef0); font-size: 18px; }
.icon-photos   { background: conic-gradient(from 180deg, #f97316, #eab308, #22c55e, #3b82f6, #8b5cf6, #ec4899, #f97316); }
.icon-notes    { background: linear-gradient(180deg, #fde68a, #fbbf24); color: #92400e; font-size: 20px; font-weight: 700; }
.icon-more     { background: linear-gradient(180deg, #6e6e73, #3a3a3c); font-size: 14px; letter-spacing: 1px; }

.share-app-icon.fauxspy-icon {
  background: var(--yellow);
  border-color: var(--yellow-dark);
  box-shadow: 0 0 0 3px rgba(251,191,36,0.35), 0 4px 12px rgba(251,191,36,0.4);
  animation: pulseIcon 1.8s ease-in-out infinite;
}

@keyframes pulseIcon {
  0%, 100% { box-shadow: 0 0 0 3px rgba(251,191,36,0.35), 0 4px 12px rgba(251,191,36,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(251,191,36,0.15), 0 4px 16px rgba(251,191,36,0.5); }
}

.share-app-name {
  font-size: 9px;
  color: #3c3c43;
  text-align: center;
  font-weight: 500;
}

.share-app-name.fauxspy-name {
  color: var(--yellow-dark);
  font-weight: 700;
}

/* ── Slide 3: AI Detected result ─────────────────────────────────────────── */
.slide-3 {
  background: var(--dark-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 32px;
  gap: 12px;
  text-align: center;
}

.result-eyebrow {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.result-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(239,68,68,0.15);
  border: 2px solid rgba(239,68,68,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.result-verdict {
  font-size: 20px;
  font-weight: 800;
  color: #f87171;
  letter-spacing: 0.5px;
}

.result-confidence {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.result-bar-wrap {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  height: 8px;
  overflow: hidden;
}

.result-bar {
  height: 100%;
  width: 94%;
  background: linear-gradient(90deg, #ef4444, #f97316);
  border-radius: 8px;
}

.result-indicators {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.result-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  color: rgba(255,255,255,0.65);
}

.result-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f87171;
  flex-shrink: 0;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: #f87171;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── Platform badges under phone ─────────────────────────────────────────── */
.platform-pills {
  display: flex;
  gap: 10px;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--black);
  color: var(--white);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* ── Hero Right (form) ───────────────────────────────────────────────────── */
.hero-content { max-width: 480px; }

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 16px;
}

.hero-h1 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hero-h1 em {
  font-style: normal;
  color: var(--yellow-dark);
}

.hero-sub {
  font-size: 17px;
  color: var(--gray-body);
  line-height: 1.65;
  margin-bottom: 32px;
}

/* ── Waitlist Form ───────────────────────────────────────────────────────── */
.waitlist-form {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.waitlist-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-border);
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
  color: var(--black);
}

.waitlist-form input[type="email"]:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(251,191,36,0.15);
}

.waitlist-form button {
  padding: 14px 24px;
  background: var(--yellow);
  color: var(--black);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}

.waitlist-form button:hover { background: var(--yellow-dark); color: var(--white); }
.waitlist-form button:active { transform: scale(0.98); }
.waitlist-form button:disabled { opacity: 0.6; cursor: default; }

.honeypot { display: none !important; }

.form-trust {
  font-size: 13px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.social-proof {
  font-size: 14px;
  color: var(--gray-body);
  font-weight: 500;
}

.social-proof strong { color: var(--black); }

.form-success {
  display: none;
  padding: 16px 20px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 10px;
  color: #166534;
  font-size: 15px;
  font-weight: 600;
}

.form-success.visible { display: block; }

/* ── Section base ────────────────────────────────────────────────────────── */
section { padding: 96px 24px; }

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

.section-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 12px;
  text-align: center;
}

.section-h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--black);
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray-body);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.65;
}

/* ── How It Works ────────────────────────────────────────────────────────── */
.how-it-works { background: var(--gray-light); }

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

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-left: 4px solid var(--yellow);
  box-shadow: var(--shadow-card);
  position: relative;
}

.step-number {
  position: absolute;
  top: -14px;
  left: 28px;
  width: 28px;
  height: 28px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon { font-size: 32px; margin-bottom: 14px; display: block; }

.step-h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

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

/* ── What It Catches ─────────────────────────────────────────────────────── */
.what-it-catches {
  background: var(--dark-bg);
  padding: 96px 24px;
}

.what-it-catches .section-h2 { color: var(--white); }
.what-it-catches .section-sub { color: rgba(255,255,255,0.55); }
.what-it-catches .section-eyebrow { color: var(--yellow); }

.catches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.catch-card {
  background: var(--dark-card);
  border: 1px solid rgba(251,191,36,0.12);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: border-color 0.2s, transform 0.2s;
}

.catch-card:hover {
  border-color: rgba(251,191,36,0.3);
  transform: translateY(-3px);
}

.catch-icon { font-size: 36px; margin-bottom: 14px; display: block; }

.catch-h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.catch-p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonials { background: var(--white); }

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

.testimonial-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--gray-border);
}

.testimonial-stars { color: var(--yellow); font-size: 15px; margin-bottom: 12px; }

.testimonial-text {
  font-size: 15px;
  color: var(--black);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-body);
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq { background: var(--gray-light); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.15s;
}

.faq-question:hover { background: var(--gray-light); }

.faq-chevron {
  font-size: 18px;
  color: var(--gray-body);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-question { background: var(--gray-light); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--gray-body);
  line-height: 1.7;
  border-top: 1px solid var(--gray-border);
  padding-top: 16px;
}

/* ── Bottom CTA ──────────────────────────────────────────────────────────── */
.cta-bottom {
  background: var(--yellow);
  padding: 80px 24px;
}

.cta-bottom .section-h2 { color: var(--black); }
.cta-bottom .section-sub { color: rgba(10,10,10,0.65); }

.cta-bottom .waitlist-form input[type="email"] {
  border-color: rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.8);
}

.cta-bottom .waitlist-form input[type="email"]:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
  background: var(--white);
}

.cta-bottom .waitlist-form button {
  background: var(--black);
  color: var(--white);
}

.cta-bottom .waitlist-form button:hover {
  background: #333;
  color: var(--white);
}

.cta-form-wrap {
  max-width: 520px;
  margin: 0 auto;
}

.cta-bottom .form-trust { color: rgba(0,0,0,0.5); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.app-footer {
  background: var(--black);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 800;
  color: var(--yellow);
  text-decoration: none;
}

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

.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: rgba(255,255,255,0.8); }

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .phone-outer {
    transform: none;
  }

  .phone-float-chip {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero {
    padding: 48px 24px 60px;
    min-height: auto;
  }

  .hero-content { max-width: 100%; }

  .phone-wrap { order: 2; }
  .hero-content { order: 1; }

  .waitlist-form { flex-direction: column; }
  .waitlist-form button { width: 100%; }

  .form-trust { justify-content: center; }

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

@media (max-width: 600px) {
  .catches-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .nav-links { display: none; }
  .hero-h1 { font-size: 32px; }

  .phone-frame {
    width: 240px;
    height: 490px;
  }
  .phone-island { width: 104px; height: 27px; }
  .insta-photo { height: 175px; }
  .phone-btn-right  { top: 110px; height: 64px; }
  .phone-btn-silent { top: 92px; height: 28px; }
  .phone-btn-vol-up { top: 143px; height: 40px; }
  .phone-btn-vol-down { top: 193px; height: 40px; }
}
