/* ====================================================
   Dare to Crush — Design System
   Palette: Rose #F43F5E · Gold #F59E0B · Navy #1E3A5F · Ivory #FFFBF5
   Fonts: Fraunces (headings) + Satoshi (body)
   =================================================== */

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

:root {
  --rose: #F43F5E;
  --rose-dark: #E11D48;
  --rose-light: #FB7185;
  --rose-pale: #FFE4E9;
  --gold: #F59E0B;
  --gold-dark: #D97706;
  --gold-pale: #FEF3C7;
  --navy: #1E3A5F;
  --navy-mid: #2D5282;
  --navy-light: #3B82F6;
  --ivory: #FFFBF5;
  --ivory-dark: #F5F0E8;
  --dark: #0F172A;
  --dark-mid: #1E293B;
  --text: #1a1a2e;
  --muted: #64748B;
  --border: rgba(244, 63, 94, 0.15);
  --shadow-sm: 0 2px 8px rgba(30, 58, 95, 0.10);
  --shadow: 0 4px 24px rgba(30, 58, 95, 0.14);
  --shadow-lg: 0 16px 48px rgba(30, 58, 95, 0.20);
  --shadow-rose: 0 8px 32px rgba(244, 63, 94, 0.25);
  --gradient-hero: linear-gradient(145deg, #0F172A 0%, #1E2D4A 40%, #3B1A2E 100%);
  --gradient-rose: linear-gradient(135deg, #F43F5E 0%, #E11D48 100%);
  --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

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

body {
  font-family: 'Satoshi', 'Segoe UI', system-ui, sans-serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 64px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
p { color: var(--muted); line-height: 1.7; }

a { color: var(--rose); text-decoration: none; }
a:hover { color: var(--rose-dark); }

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 680px; margin: 0 auto; padding: 0 20px; }
.container-xs { max-width: 480px; margin: 0 auto; padding: 0 20px; }

.section { padding: 80px 0; }
.section-ivory { background: var(--ivory-dark); }
.section-dark { background: var(--dark); }
.section-cta { background: var(--gradient-rose); }

/* ===== NAV ===== */
.dtc-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}
.dtc-nav-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.dtc-nav-brand span { color: var(--rose); }
.dtc-nav-links { display: flex; gap: 4px; align-items: center; }
.dtc-nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  cursor: pointer;
  background: none; border: none;
}
.dtc-nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.dtc-nav-cta {
  background: var(--rose) !important;
  color: #fff !important;
  border-radius: var(--radius-sm) !important;
  padding: 8px 18px !important;
  font-weight: 600;
}
.dtc-nav-cta:hover { background: var(--rose-dark) !important; transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  background: var(--gradient-hero);
  min-height: calc(100vh - 64px);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
  padding: 80px 0;
}
.hero-hearts-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.flt-heart {
  position: absolute; font-size: 2rem; opacity: 0.07; color: var(--rose);
  animation: floatUp 8s ease-in-out infinite;
}
.h1 { left: 5%; top: 20%; animation-delay: 0s; font-size: 3rem; }
.h2 { left: 80%; top: 60%; animation-delay: 1.5s; font-size: 1.5rem; }
.h3 { left: 20%; top: 75%; animation-delay: 3s; font-size: 2.5rem; }
.h4 { left: 65%; top: 15%; animation-delay: 4.5s; }
.h5 { left: 45%; top: 85%; animation-delay: 2s; font-size: 1.75rem; }

@keyframes floatUp {
  0%, 100% { transform: translateY(0) rotate(-5deg); opacity: 0.07; }
  50% { transform: translateY(-30px) rotate(5deg); opacity: 0.12; }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 2;
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.hero-title {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 5rem);
  font-style: italic;
}
.hero-accent { color: var(--rose); font-style: normal; }
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
}
.trust-sep { opacity: 0.3; }

/* Mock phone */
.mock-phone {
  width: 280px; max-width: 100%;
  background: #0F172A;
  border-radius: 32px;
  padding: 20px 16px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.06);
  margin: 0 auto;
}
.mock-screen { display: flex; flex-direction: column; gap: 16px; }
.mock-notif {
  background: rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 12px;
  display: flex; gap: 10px; align-items: flex-start;
}
.mock-notif-emoji { font-size: 1.5rem; flex-shrink: 0; }
.mock-notif-title { color: #fff; font-weight: 600; font-size: 0.875rem; }
.mock-notif-sub { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.mock-question { display: flex; flex-direction: column; gap: 10px; }
.mock-q-label { color: var(--rose); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.mock-q-text { color: #fff; font-weight: 600; font-size: 0.875rem; }
.mock-answers { display: flex; flex-direction: column; gap: 6px; }
.mock-ans {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 12px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.15s;
}
.mock-ans.selected {
  background: rgba(244, 63, 94, 0.2);
  border-color: var(--rose);
  color: #fff;
}

/* ===== SECTION HEADERS ===== */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head-light { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 8px;
}
.section-eyebrow-light {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.section-title { color: var(--text); margin-bottom: 16px; }
.section-title-light { color: #fff; margin-bottom: 16px; }

/* ===== STEPS GRID ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(244, 63, 94, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-icon { font-size: 2rem; margin-bottom: 8px; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--rose-pale);
  line-height: 1;
  margin-bottom: 12px;
}
.step-title { color: var(--text); margin-bottom: 8px; font-size: 1.1rem; }
.step-desc { font-size: 0.9rem; }

/* ===== WAYS GRID ===== */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .ways-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ways-grid { grid-template-columns: 1fr; } }

.way-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.way-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(244,63,94,0.3); }
.way-icon { font-size: 2.5rem; margin-bottom: 12px; }
.way-card h3 { color: #fff; margin-bottom: 8px; font-size: 1rem; }
.way-card p { color: rgba(255,255,255,0.55); font-size: 0.875rem; }

/* ===== STATS ===== */
.stats-section { padding: 60px 0; }
.stats-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.stat-item {
  flex: 1; min-width: 140px; text-align: center;
  padding: 32px 20px;
}
.stat-divider {
  width: 1px; align-self: stretch;
  background: var(--border);
}
@media (max-width: 600px) { .stat-divider { display: none; } .stat-item { border-bottom: 1px solid var(--border); } }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--rose);
  margin-bottom: 6px;
}
.stat-label { font-size: 0.85rem; color: var(--muted); font-weight: 500; }

/* ===== CTA SECTION ===== */
.cta-title { color: #fff; margin-bottom: 16px; }
.cta-sub { color: rgba(255,255,255,0.8); font-size: 1.125rem; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn-rose-lg {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--rose);
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: var(--shadow-rose);
}
.btn-rose-lg:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(244,63,94,0.35); color: #fff; }

.btn-ghost-lg {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost-lg:hover { background: rgba(255,255,255,0.14); color: #fff; }

.btn-rose {
  display: inline-flex; align-items: center;
  background: var(--rose); color: #fff;
  font-weight: 700; font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-rose:hover { background: var(--rose-dark); transform: translateY(-1px); color: #fff; }

.btn-rose-full {
  display: block; width: 100%;
  background: var(--rose); color: #fff;
  font-weight: 700; font-size: 1rem;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  text-align: center; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: var(--shadow-rose);
  margin-top: 24px;
}
.btn-rose-full:hover { background: var(--rose-dark); transform: translateY(-2px); color: #fff; }

.btn-rose-sm {
  display: inline-flex; background: var(--rose); color: #fff;
  font-weight: 600; font-size: 0.85rem; padding: 6px 14px;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  text-decoration: none; transition: background 0.15s;
}
.btn-rose-sm:hover { background: var(--rose-dark); color: #fff; }

.btn-ghost {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--muted);
  font-weight: 600; font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer; text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--rose); color: var(--rose); }

.btn-ghost-full {
  display: block; width: 100%;
  background: transparent; color: var(--muted);
  font-weight: 600; font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer; text-align: center;
  text-decoration: none; transition: all 0.2s;
  margin-top: 12px;
}
.btn-ghost-full:hover { border-color: var(--rose); color: var(--rose); }

.btn-ghost-sm {
  display: inline-flex;
  background: transparent; color: var(--muted);
  font-weight: 500; font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer; text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost-sm:hover { border-color: var(--rose); color: var(--rose); }

.btn-copy {
  background: var(--navy); color: #fff;
  border: none; cursor: pointer;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-copy:hover { background: var(--navy-mid); }

.btn-fb {
  display: block; width: 100%;
  background: #1877F2; color: #fff;
  border: none; cursor: pointer;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700; font-size: 1rem;
  transition: background 0.2s; margin-top: 16px;
}
.btn-fb:hover { background: #1464CC; }

.btn-retry {
  display: inline-flex;
  background: var(--gold-pale); color: var(--gold-dark);
  border: 1px solid var(--gold);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.85rem;
  cursor: pointer; margin-top: 8px;
  transition: background 0.15s;
}
.btn-retry:hover { background: var(--gold); color: #fff; }

/* ===== FORM PAGES ===== */
.form-page { min-height: calc(100vh - 64px); padding: 40px 0 80px; }

.form-progress {
  height: 4px; background: var(--rose-pale);
  border-radius: 2px; margin-bottom: 36px;
  overflow: hidden;
}
.progress-bar {
  height: 100%; background: var(--gradient-rose);
  border-radius: 2px; transition: width 0.4s ease;
}

.form-step { display: none; }
.form-step.active { display: block; }

.form-header { margin-bottom: 36px; }
.form-eyebrow { color: var(--rose); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.form-title { margin-bottom: 10px; }
.form-subtitle { color: var(--muted); font-size: 0.95rem; }

.form-section {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.form-section-title {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 20px; color: var(--text);
  display: flex; align-items: center; gap: 8px;
  font-family: 'Satoshi', sans-serif;
}
.private-tag {
  font-size: 0.75rem; background: var(--rose-pale); color: var(--rose);
  border-radius: 20px; padding: 2px 8px;
}
.clue-tag {
  font-size: 0.75rem; background: var(--gold-pale); color: var(--gold-dark);
  border-radius: 20px; padding: 2px 8px;
}
.form-section-note { color: var(--muted); font-size: 0.85rem; margin-bottom: 16px; margin-top: -8px; }

.form-row { margin-bottom: 20px; }
.form-row-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 20px;
}
@media (max-width: 500px) { .form-row-2 { grid-template-columns: 1fr; } }

.form-label {
  display: block; font-size: 0.875rem;
  font-weight: 600; color: var(--text);
  margin-bottom: 6px;
}
.req { color: var(--rose); }

.form-input {
  width: 100%;
  border: 1.5px solid rgba(30, 58, 95, 0.15);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--ivory);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.12);
}
.form-input[type="file"] { background: #fff; padding: 10px; }

.form-select {
  width: 100%;
  border: 1.5px solid rgba(30, 58, 95, 0.15);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--ivory);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  transition: border-color 0.2s;
  outline: none;
}
.form-select:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.12); }

.form-hint { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.form-error {
  background: var(--rose-pale); color: var(--rose);
  border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 0.9rem;
  margin-top: 16px; border-left: 4px solid var(--rose);
}
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; gap: 12px; }
.form-nav-back { margin-top: 16px; text-align: center; }

/* ===== QUIZ QUESTIONS ===== */
.quiz-question { margin-bottom: 36px; }
.quiz-q-num { color: var(--rose); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.quiz-q-text { font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.quiz-opts { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt {
  background: #fff;
  border: 1.5px solid rgba(30, 58, 95, 0.12);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  text-align: left;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s;
}
.quiz-opt:hover { border-color: var(--rose); background: var(--rose-pale); }
.quiz-opt.selected { border-color: var(--rose); background: var(--rose-pale); color: var(--rose-dark); font-weight: 600; }

/* ===== CHANNEL CARDS ===== */
.channel-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
@media (max-width: 540px) { .channel-cards { grid-template-columns: 1fr; } }
.channel-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  background: #fff;
}
.channel-card:hover { border-color: var(--rose); box-shadow: var(--shadow-rose); transform: translateY(-2px); }
.channel-card.selected { border-color: var(--rose); background: var(--rose-pale); box-shadow: var(--shadow-rose); }
.channel-icon { font-size: 2rem; margin-bottom: 10px; }
.channel-name { font-weight: 700; font-size: 1.1rem; color: var(--text); margin-bottom: 4px; }
.channel-price { color: var(--rose); font-weight: 700; font-size: 1.3rem; margin-bottom: 10px; }
.channel-desc { font-size: 0.85rem; color: var(--muted); margin-bottom: 10px; }
.channel-feature { font-size: 0.8rem; color: var(--navy); background: var(--gold-pale); border-radius: 6px; padding: 6px 10px; }

.payment-defer-notice {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.9rem; color: var(--gold-dark);
  margin-bottom: 16px;
}
.defer-icon { font-size: 1.25rem; flex-shrink: 0; }

/* ===== LINK CARD ===== */
.link-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.link-label { font-size: 0.8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.link-url {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  color: var(--navy);
  background: var(--ivory-dark);
  padding: 12px;
  border-radius: var(--radius-sm);
  word-break: break-all;
  margin-bottom: 12px;
}

/* FB copy options */
.fb-copy-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 12px; }
.fb-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }
.fb-opt {
  background: var(--ivory-dark);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--text);
}
.fb-opt:hover { border-color: #1877F2; background: #EEF2FF; }
.fb-opt.selected { border-color: #1877F2; background: #DBEAFE; }

/* ===== SUCCESS ===== */
.success-header { text-align: center; margin-bottom: 32px; }
.success-emoji { font-size: 3rem; margin-bottom: 12px; }
.success-next { display: flex; justify-content: center; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

/* ===== QUIZ PAGE ===== */
.quiz-page { min-height: calc(100vh - 64px); padding: 40px 0 80px; }
.quiz-screen { display: none; }
.quiz-screen.active { display: block; }

.quiz-intro-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
}
.qi-emoji { font-size: 3.5rem; margin-bottom: 16px; }
.qi-title { margin-bottom: 12px; }
.qi-sub { color: var(--muted); margin-bottom: 24px; font-size: 1rem; }

.qi-clues {
  background: var(--ivory-dark);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
  text-align: left;
}
.qi-clues-title { font-weight: 700; font-size: 0.85rem; margin-bottom: 10px; color: var(--navy); }
.qi-clue {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 0.875rem; color: var(--text); margin-bottom: 6px;
}

.qi-disclosure {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--rose-pale);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
  text-align: left;
  font-size: 0.875rem; color: var(--rose-dark);
}
.qi-disc-icon { font-size: 1.1rem; flex-shrink: 0; }

.quiz-progress-bar-wrap {
  height: 4px; background: var(--rose-pale);
  border-radius: 2px; margin-bottom: 32px; overflow: hidden;
}
.quiz-progress-bar {
  height: 100%; background: var(--gradient-rose);
  border-radius: 2px; transition: width 0.3s ease;
}
.quiz-q-head { margin-bottom: 8px; }
.quiz-nav { display: flex; justify-content: space-between; margin-top: 24px; gap: 12px; }

/* ===== RESULT CARDS ===== */
.result-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--border);
}
.result-match { border-color: var(--rose); box-shadow: var(--shadow-rose); }
.result-no-compat { border-color: var(--gold); }
.result-not-you { }
.result-reveal { border-color: var(--rose); background: linear-gradient(180deg, #fff 0%, var(--rose-pale) 100%); }

.result-emoji { font-size: 3.5rem; margin-bottom: 16px; }
.result-title { margin-bottom: 12px; }
.result-score {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem; font-weight: 900;
  color: var(--rose); margin-bottom: 16px;
}
.result-msg { color: var(--muted); font-size: 0.95rem; margin-bottom: 8px; }
.result-cta-row { margin-top: 24px; }

.disclosure-box {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 20px 0;
  text-align: left;
  font-size: 0.875rem; color: #92400E;
  border: 1px solid var(--gold);
}
.disc-icon { font-size: 1.25rem; flex-shrink: 0; }

/* Reveal page */
.reveal-page { min-height: calc(100vh - 64px); padding: 40px 0 80px; }
.reveal-loading { text-align: center; padding: 80px 20px; color: var(--muted); }
.reveal-spinner {
  width: 40px; height: 40px;
  border: 4px solid var(--rose-pale);
  border-top-color: var(--rose);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.reveal-photo {
  width: 120px; height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--rose);
  margin: 16px auto;
  display: block;
  box-shadow: var(--shadow-rose);
}
.reveal-sender-info { margin-bottom: 20px; }
.reveal-name { font-family: 'Fraunces', serif; font-size: 1.75rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.reveal-age { color: var(--muted); font-size: 0.9rem; }
.reveal-feelings { text-align: left; margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.feeling-item {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--ivory-dark);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.9rem; color: var(--text);
}

/* ===== DASHBOARD ===== */
.dashboard-page { min-height: calc(100vh - 64px); padding: 40px 0 80px; }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.dash-title { font-size: clamp(1.75rem, 4vw, 2.5rem); }
.dash-loading { text-align: center; padding: 60px; color: var(--muted); }
.dash-section { margin-bottom: 60px; }
.dash-section-title { margin-bottom: 20px; font-size: 1.4rem; }

.dash-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.dash-tab {
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 0.875rem; font-weight: 600;
  cursor: pointer; color: var(--muted);
  font-family: 'Satoshi', sans-serif;
  transition: all 0.15s;
}
.dash-tab:hover { border-color: var(--rose); color: var(--rose); }
.dash-tab.active { background: var(--rose); border-color: var(--rose); color: #fff; }

.dash-panel { display: none; }
.dash-panel.active { display: block; }

.dash-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.dash-card-title { font-weight: 700; color: var(--text); margin-bottom: 4px; }
.dash-card-meta { font-size: 0.85rem; color: var(--muted); margin-bottom: 10px; }
.dash-card-links { display: flex; gap: 12px; flex-wrap: wrap; }
.dash-link-copy {
  font-size: 0.8rem; color: var(--navy);
  cursor: pointer; text-decoration: underline;
  transition: color 0.15s;
}
.dash-link-copy:hover { color: var(--rose); }
.dash-empty { color: var(--muted); font-size: 0.9rem; padding: 24px 0; }
.dash-link { color: var(--rose); text-decoration: underline; }
.dash-revealed { color: var(--rose); font-size: 0.875rem; font-weight: 600; margin-top: 8px; }

/* ===== ADMIN PANEL ===== */
.admin-page { min-height: calc(100vh - 64px); padding: 40px 0 80px; }
.admin-header { margin-bottom: 32px; }
.admin-title { font-size: clamp(1.75rem, 4vw, 2.5rem); }

.admin-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 28px; border-bottom: 2px solid var(--border); padding-bottom: 0; }
.admin-tab {
  background: transparent; border: none;
  padding: 10px 20px; font-size: 0.875rem; font-weight: 600;
  cursor: pointer; color: var(--muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px; font-family: 'Satoshi', sans-serif;
  transition: color 0.15s, border-color 0.15s;
}
.admin-tab:hover { color: var(--rose); }
.admin-tab.active { color: var(--rose); border-bottom-color: var(--rose); }

.admin-panel { display: none; }
.admin-panel.active { display: block; }

.admin-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
@media (max-width: 600px) { .admin-stats-grid { grid-template-columns: repeat(2, 1fr); } }
.admin-stat-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow-sm); text-align: center;
}
.admin-stat-val { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 900; color: var(--rose); margin-bottom: 4px; }
.admin-stat-label { font-size: 0.85rem; color: var(--muted); }

.admin-sub-title { margin-bottom: 16px; margin-top: 32px; font-size: 1.2rem; }
.admin-placeholder { color: var(--muted); padding: 40px 0; }
.admin-search { display: flex; gap: 12px; margin-bottom: 20px; }
.admin-search .form-input { flex: 1; }

.admin-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.875rem;
}
.admin-table th { background: var(--ivory-dark); padding: 10px 12px; text-align: left; font-weight: 700; color: var(--navy); border-bottom: 2px solid var(--border); }
.admin-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); color: var(--text); }
.admin-table tr:hover td { background: var(--ivory-dark); }

.admin-user-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 16px;
  margin-bottom: 8px; font-size: 0.9rem;
}

.health-grid { display: flex; gap: 16px; flex-wrap: wrap; }
.health-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  text-align: center; min-width: 140px;
  box-shadow: var(--shadow-sm);
}
.health-icon { font-size: 1.75rem; margin-bottom: 8px; }
.health-label { font-weight: 700; color: var(--text); margin-bottom: 6px; font-size: 0.95rem; }
.health-status { font-size: 0.875rem; font-weight: 600; color: var(--muted); }
.status-ok { color: #16A34A; }
.status-err { color: var(--rose); }

/* ===== AUTH PAGES ===== */
.auth-page { min-height: calc(100vh - 64px); display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  width: 100%; max-width: 420px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.auth-title { margin-bottom: 8px; text-align: center; }
.auth-sub { text-align: center; color: var(--muted); margin-bottom: 28px; font-size: 0.95rem; }
.auth-footer { text-align: center; margin-top: 20px; font-size: 0.875rem; color: var(--muted); }

/* ===== FOOTER ===== */
.dtc-footer {
  background: var(--dark);
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.dtc-footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem; font-weight: 900;
  color: #fff; margin-bottom: 6px;
}
.dtc-footer-tagline { color: rgba(255,255,255,0.4); font-size: 0.875rem; margin-bottom: 20px; }
.dtc-footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.dtc-footer-links a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color 0.15s; }
.dtc-footer-links a:hover { color: var(--rose); }
.dtc-footer-copy { color: rgba(255,255,255,0.25); font-size: 0.75rem; }

/* ===== LEGACY COMPAT (for old Date or Don't Date pages that may still load) ===== */
.nav { display: none; } /* hide old nav if old pages load */
footer { display: none; } /* hide old footer */
