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

:root {
  --ink: #e8e6f0;
  --body: #b8b4c8;
  --muted: #8a85a0;
  --bg: #0c0b16;
  --bg-alt: #100f1c;
  --surface: rgba(28,26,46,0.7);
  --surface-solid: #1c1a2e;
  --surface-hover: #252340;
  --glass: rgba(28,26,46,0.5);
  --accent: #7c6cd4;
  --accent2: #9b8ce8;
  --accent-glow: rgba(124,108,212,0.25);
  --accent-light: rgba(124,108,212,0.08);
  --warm: #e8845a;
  --warm-glow: rgba(232,132,90,0.12);
  --green: #5cc9a7;
  --green-glow: rgba(92,201,167,0.1);
  --green-border: rgba(92,201,167,0.2);
  --blue: #5b9cf5;
  --lavender: #9b8ce8;
  --rose: #d4779b;
  --amber: #d4a84b;
  --amber-glow: rgba(212,168,75,0.08);
  --amber-border: rgba(212,168,75,0.2);
  --rule: rgba(255,255,255,0.05);
  --rule-strong: rgba(255,255,255,0.08);
  --radius: 24px;
  --radius-sm: 14px;
  --radius-xs: 10px;
}

html {
  font-size: 17px; scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* — AMBIENT — */
.ambient { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; max-width: 100vw; }
.ambient .orb {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}
.ambient .orb:nth-child(1) {
  width: 600px; height: 600px; top: -15%; left: -10%;
  background: radial-gradient(circle, rgba(124,108,212,0.15), transparent 70%);
}
.ambient .orb:nth-child(2) {
  width: 500px; height: 500px; bottom: -10%; right: -10%;
  background: radial-gradient(circle, rgba(92,201,167,0.08), transparent 70%);
  animation-delay: -10s;
}
.ambient .orb:nth-child(3) {
  width: 400px; height: 400px; top: 40%; left: 50%;
  background: radial-gradient(circle, rgba(212,119,155,0.06), transparent 70%);
  animation-delay: -5s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* — NAV — */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12,11,22,0.75);
  backdrop-filter: blur(24px) saturate(1.2); -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--rule);
  padding: 0.75rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 600; font-size: 1.1rem;
  color: var(--ink); text-decoration: none;
  display: flex; align-items: center; gap: 0.55rem;
}
.logo-img { width: 2rem; height: 2rem; border-radius: 7px; }
nav ul { list-style: none; display: flex; gap: 1.5rem; align-items: center; }
nav a { text-decoration: none; color: var(--muted); font-size: 0.8rem; font-weight: 500; transition: color 0.3s; }
nav a:hover, nav a.active { color: var(--ink); }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent2)) !important;
  color: #fff !important; padding: 0.45rem 1.2rem;
  border-radius: 100px; box-shadow: 0 2px 12px var(--accent-glow);
  transition: all 0.3s;
}
.nav-cta:hover { box-shadow: 0 4px 24px rgba(124,108,212,0.45); transform: translateY(-1px); }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.3rem; color: var(--ink); cursor: pointer; }

/* — HERO — */
.hero-wrap {
  position: relative; z-index: 1;
  padding: 6rem 2rem 0;
  overflow: hidden;
}
.hero-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100%;
  background: linear-gradient(170deg, rgba(124,108,212,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-text { padding-bottom: 5rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--green-glow); border: 1px solid var(--green-border);
  color: var(--green); font-size: 0.7rem; font-weight: 600;
  padding: 0.4rem 1rem; border-radius: 100px;
  margin-bottom: 1.8rem; letter-spacing: 0.04em;
}
.hero h1 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 2.8rem; color: #fff; line-height: 1.18;
  letter-spacing: -0.025em; margin-bottom: 1.3rem;
}
.hero p { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 2.2rem; max-width: 450px; }
.hero-image {
  position: relative; border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden; align-self: end;
}
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, var(--bg) 100%);
  pointer-events: none;
}
.cta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* — PAGE HEADER — */
.page-header-wrap {
  position: relative; z-index: 1;
  padding: 5rem 2rem 3rem; text-align: center;
  background: linear-gradient(170deg, rgba(124,108,212,0.05) 0%, transparent 60%);
}
.page-header { max-width: 620px; margin: 0 auto; }
.page-header h1 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 2.4rem; color: #fff; line-height: 1.2; margin-bottom: 0.8rem; }
.page-header p { font-size: 1rem; color: var(--muted); line-height: 1.7; }

/* — BUTTONS — */
.btn {
  display: inline-block; padding: 0.82rem 1.8rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; text-decoration: none;
  transition: all 0.3s; cursor: pointer; letter-spacing: 0.01em;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; box-shadow: 0 4px 20px var(--accent-glow);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: 100px; padding: 1px;
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--blue));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { box-shadow: 0 6px 35px rgba(124,108,212,0.5); transform: translateY(-2px); }
.btn-primary:hover::before { opacity: 1; }
.btn-outline { border: 1.5px solid var(--rule-strong); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

/* — LAYOUT — */
.container { max-width: 940px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
section { padding: 5rem 0; }
section + section { border-top: 1px solid var(--rule); }

.section-eyebrow {
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--accent); margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 1.7rem; color: #fff; margin-bottom: 0.6rem; line-height: 1.25;
}
.section-sub { font-size: 0.93rem; color: var(--muted); max-width: 560px; line-height: 1.75; margin-bottom: 1.5rem; }

/* — SPLITS — */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; margin-top: 1.5rem; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-image { border-radius: var(--radius); overflow: hidden; position: relative; }
.split-image img { width: 100%; height: 340px; object-fit: cover; display: block; background: linear-gradient(135deg, var(--surface-solid), var(--bg-alt)); }
.hero-image img { width: 100%; height: 440px; object-fit: cover; display: block; background: linear-gradient(135deg, var(--surface-solid), var(--bg-alt)); }
.image-break { width: 100%; height: 280px; object-fit: cover; display: block; opacity: 0.5; position: relative; z-index: 1; background: linear-gradient(135deg, var(--surface-solid), var(--bg-alt)); }
.split-image::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  pointer-events: none;
}

/* — CARDS — */
.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.card {
  background: var(--surface); backdrop-filter: blur(12px);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius); padding: 1.8rem;
  transition: all 0.4s cubic-bezier(.17,.67,.35,1.2);
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(124,108,212,0.2); }
.card:hover::before { opacity: 1; }
.card-icon {
  font-size: 1.3rem; margin-bottom: 0.8rem;
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: var(--radius-xs);
}
.card-icon.sage { background: var(--green-glow); border: 1px solid var(--green-border); }
.card-icon.accent { background: var(--accent-light); border: 1px solid rgba(124,108,212,0.12); }
.card-icon.lavender { background: rgba(155,140,232,0.08); border: 1px solid rgba(155,140,232,0.12); }
.card-icon.warm { background: var(--warm-glow); border: 1px solid rgba(232,132,90,0.15); }
.card h3 { font-size: 0.93rem; font-weight: 600; color: var(--ink); margin-bottom: 0.35rem; }
.card p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* — STATS — */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.stat-item {
  text-align: center; padding: 2.2rem 1rem;
  background: var(--surface); backdrop-filter: blur(12px);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius); transition: all 0.4s;
  position: relative; overflow: hidden;
}
.stat-item::after {
  content: ''; position: absolute; bottom: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.stat-item:hover { border-color: rgba(124,108,212,0.15); }
.stat-item:hover::after { opacity: 1; }
.stat-num {
  font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 0.2rem; }
.stat-desc { font-size: 0.76rem; color: var(--muted); }

/* — STEPS — */
.steps { margin-top: 1.5rem; }
.step { display: flex; gap: 1.3rem; padding: 1.5rem 0; }
.step + .step { border-top: 1px solid var(--rule); }
.step-num {
  flex-shrink: 0; width: 2.8rem; height: 2.8rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-weight: 700; font-size: 0.85rem;
  box-shadow: 0 3px 18px var(--accent-glow);
}
.step-body h3 { font-size: 0.95rem; font-weight: 600; color: var(--ink); margin-bottom: 0.3rem; }
.step-body p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; }

/* — BANNERS — */
.urgent-box {
  background: var(--warm-glow); border: 1px solid rgba(232,132,90,0.15);
  border-left: 3px solid var(--warm);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.6rem 2rem; margin-top: 1.5rem;
}
.urgent-box h3 { color: var(--warm); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.4rem; }
.urgent-box p { font-size: 0.84rem; color: var(--body); line-height: 1.65; }

.hope-banner {
  background: var(--green-glow); border: 1px solid var(--green-border);
  border-radius: var(--radius); padding: 2.5rem; text-align: center; margin-top: 2rem;
}
.hope-banner h3 { font-family: 'Fraunces', serif; color: var(--green); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }
.hope-banner p { font-size: 0.86rem; color: var(--body); max-width: 480px; margin: 0 auto; line-height: 1.7; }

.comfort-banner {
  background: var(--accent-light); border: 1px solid rgba(124,108,212,0.12);
  border-radius: var(--radius); padding: 2.5rem; text-align: center; margin-top: 2rem;
}
.comfort-banner h3 { font-family: 'Fraunces', serif; color: var(--lavender); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }
.comfort-banner p { font-size: 0.86rem; color: var(--body); max-width: 480px; margin: 0 auto; line-height: 1.7; }

/* — INDEPENDENCE — */
.independence-notice {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--amber-glow); border: 1px solid var(--amber-border);
  border-radius: var(--radius); padding: 1.5rem 1.8rem;
}
.ind-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.15rem; }
.ind-text { font-size: 0.86rem; color: var(--body); line-height: 1.7; }
.ind-text strong { color: var(--amber); display: block; margin-bottom: 0.2rem; font-size: 0.9rem; }

/* — QUOTE — */
.quote-block {
  padding: 3rem 2.5rem; text-align: center; position: relative;
  background: var(--surface); backdrop-filter: blur(12px);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius); margin: 2rem 0;
  overflow: hidden;
}
.quote-block::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.quote-block p {
  font-family: 'Fraunces', serif; font-size: 1.12rem; font-style: italic;
  color: var(--ink); line-height: 1.6; max-width: 540px; margin: 0 auto; opacity: 0.9;
}
.quote-block .attribution {
  font-family: 'Inter', sans-serif; font-style: normal;
  font-size: 0.76rem; color: var(--muted); margin-top: 1rem; font-weight: 500;
}

/* — CONTACT — */
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.contact-card {
  background: var(--surface); backdrop-filter: blur(12px);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius); padding: 2rem; text-align: center;
  transition: all 0.4s;
}
.contact-card:hover { border-color: rgba(124,108,212,0.2); transform: translateY(-3px); }
.contact-card .icon { font-size: 1.6rem; margin-bottom: 0.8rem; }
.contact-card .label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 0.4rem; }
.contact-card .value { font-size: 1.05rem; font-weight: 600; }
.contact-card .value a { color: var(--accent); text-decoration: none; }
.contact-card .value a:hover { color: var(--accent2); }

/* — RESOURCES — */
.resource-list { margin-top: 1.2rem; }
.resource-link {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 0; text-decoration: none;
  border-bottom: 1px solid var(--rule); transition: all 0.2s;
}
.resource-link:hover { padding-left: 0.4rem; }
.resource-link .r-icon {
  width: 2.2rem; height: 2.2rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-light); border: 1px solid rgba(124,108,212,0.1);
  border-radius: 8px; font-size: 0.95rem; flex-shrink: 0;
}
.resource-link .r-text strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.resource-link .r-text span { font-size: 0.78rem; color: var(--muted); }

/* — PROSE — */
.prose { margin-top: 1rem; }
.prose p { margin-bottom: 1rem; line-height: 1.8; }
.prose p:last-child { margin-bottom: 0; }

/* — VALUES — */
.values-grid { margin-top: 1.5rem; }
.value-row { display: flex; gap: 1.3rem; align-items: flex-start; padding: 1.3rem 0; border-bottom: 1px solid var(--rule); }
.value-row:last-child { border-bottom: none; }
.value-icon {
  flex-shrink: 0; width: 2.6rem; height: 2.6rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; border-radius: var(--radius-xs);
}
.value-text h3 { font-size: 0.93rem; font-weight: 600; color: var(--ink); margin-bottom: 0.25rem; }
.value-text p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* — IMAGE BREAK — */

/* — GUIDE TABS — */
.guide-tabs { display: flex; gap: 0.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.guide-tab {
  background: var(--surface-solid); border: 1.5px solid var(--rule-strong);
  border-radius: 100px; padding: 0.6rem 1.4rem;
  font-size: 0.82rem; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all 0.3s; font-family: 'Inter', sans-serif;
}
.guide-tab:hover { border-color: rgba(124,108,212,0.3); color: var(--ink); }
.guide-tab.active {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: transparent; color: #fff;
  box-shadow: 0 3px 18px var(--accent-glow);
}
.guide-content { display: none; margin-top: 2.5rem; animation: fadeSlide 0.5s ease; }
.guide-content.active { display: block; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.guide-intro-box {
  background: var(--surface); backdrop-filter: blur(12px);
  border: 1px solid var(--rule-strong); border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.8rem 2rem; margin-bottom: 2.5rem;
}
.guide-intro-box p { font-size: 0.9rem; color: var(--body); line-height: 1.8; margin-bottom: 0.8rem; }
.guide-intro-box p:last-child { margin-bottom: 0; }

.guide-section { margin-bottom: 3rem; }
.guide-section h3 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 1.25rem; color: #fff; margin-bottom: 0.8rem; line-height: 1.3;
}
.guide-section > p { font-size: 0.88rem; color: var(--body); line-height: 1.8; margin-bottom: 0.8rem; }

.guide-list { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.guide-item {
  display: flex; gap: 1rem; padding: 1.1rem 1.3rem;
  border-radius: var(--radius-sm);
  transition: transform 0.2s;
}
.guide-item:hover { transform: translateX(4px); }
.guide-item.do { background: rgba(92,201,167,0.06); border: 1px solid rgba(92,201,167,0.1); }
.guide-item.dont { background: rgba(232,132,90,0.05); border: 1px solid rgba(232,132,90,0.08); }
.guide-item.remember { background: var(--accent-light); border: 1px solid rgba(124,108,212,0.08); }
.guide-item-marker { flex-shrink: 0; font-size: 1rem; margin-top: 0.15rem; font-weight: 700; }
.guide-item.do .guide-item-marker { color: var(--green); }
.guide-item.dont .guide-item-marker { color: var(--warm); }
.guide-item.remember .guide-item-marker { color: var(--accent); }
.guide-item strong { display: block; font-size: 0.9rem; color: var(--ink); margin-bottom: 0.25rem; }
.guide-item p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; margin: 0; }

.phase-block { padding-left: 1.2rem; border-left: 2px solid rgba(124,108,212,0.15); margin-bottom: 3rem; }
.phase-label {
  font-size: 0.6rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--accent); margin-bottom: 0.3rem;
  background: var(--accent-light); display: inline-block;
  padding: 0.2rem 0.7rem; border-radius: 100px;
}

/* — PATH CHOOSER — */
.path-chooser { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.path-card {
  background: var(--surface); backdrop-filter: blur(12px);
  border: 2px solid var(--rule-strong);
  border-radius: var(--radius); padding: 2.2rem; text-align: center;
  cursor: pointer; transition: all 0.4s;
  position: relative; overflow: hidden;
}
.path-card::before {
  content: ''; position: absolute; inset: -1px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  opacity: 0; transition: opacity 0.4s; z-index: -1;
}
.path-card:hover { border-color: rgba(124,108,212,0.3); transform: translateY(-3px); }
.path-card.active { border-color: var(--accent); background: rgba(124,108,212,0.08); }
.path-card.active::before { opacity: 0.05; }
.path-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.path-card h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.15rem; color: #fff; margin-bottom: 0.4rem; }
.path-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }

.path-result { margin-top: 1.5rem; animation: fadeSlide 0.4s ease; }
.path-result-inner { border-radius: var(--radius); padding: 2rem; }
.path-result-inner.action { background: var(--green-glow); border: 1px solid var(--green-border); }
.path-result-inner.listen { background: var(--accent-light); border: 1px solid rgba(124,108,212,0.12); }
.path-result-inner h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.12rem; margin-bottom: 0.6rem; }
.path-result-inner.action h3 { color: var(--green); }
.path-result-inner.listen h3 { color: var(--lavender); }
.path-result-inner p { font-size: 0.88rem; color: var(--body); line-height: 1.7; margin-bottom: 0.8rem; }
.path-result-inner p:last-child { margin-bottom: 0; }
.path-contacts { display: flex; gap: 2rem; margin: 1rem 0; flex-wrap: wrap; }
.path-contacts div { font-size: 0.86rem; color: var(--body); }
.path-contacts strong { color: var(--ink); }
.path-contacts a { color: var(--accent); text-decoration: none; }
.path-contacts a:hover { color: var(--accent2); }
.path-note { font-size: 0.8rem !important; color: var(--muted) !important; font-style: italic; }

/* — FOOTER — */
footer {
  border-top: 1px solid var(--rule); padding: 3rem 2rem;
  text-align: center; background: var(--bg-alt);
  position: relative; z-index: 1;
}
.footer-inner { max-width: 940px; margin: 0 auto; }
.footer-logo { margin-bottom: 0.6rem; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 1rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.78rem; color: var(--muted); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--ink); }
footer p { font-size: 0.74rem; color: var(--muted); margin-top: 0.3rem; opacity: 0.6; }
.footer-heart { font-size: 0.74rem; color: var(--accent); margin-top: 0.8rem; opacity: 0.5; }

/* — INCOGNITO NOTICE — */
.incognito-notice {
  background: rgba(220,53,69,0.06);
  border-bottom: 1px solid rgba(220,53,69,0.15);
  padding: 0.6rem 2rem;
  text-align: center;
  position: relative; z-index: 5;
}
.incognito-notice p {
  font-size: 0.76rem; color: var(--muted); margin: 0;
}
.incognito-notice a {
  color: var(--warm); text-decoration: underline; font-weight: 600;
  cursor: pointer;
}
.incognito-notice a:hover { color: #fff; }

@media (max-width: 640px) {
  .incognito-notice { padding: 0.6rem 1rem; }
  .incognito-notice p { font-size: 0.72rem; }
}

/* — INCOGNITO MODAL — */
.incog-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(5,4,10,0.85); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
.incog-modal {
  background: var(--surface-solid);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  padding: 2.2rem;
  max-width: 440px; width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.incog-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: none; border: none; color: var(--muted);
  font-size: 1rem; cursor: pointer; transition: color 0.2s;
}
.incog-close:hover { color: var(--ink); }
.incog-modal h3 {
  font-family: 'Fraunces', serif; font-size: 1.25rem; color: #fff;
  margin-bottom: 0.8rem;
}
.incog-modal > p {
  font-size: 0.86rem; color: var(--body); line-height: 1.7; margin-bottom: 1.3rem;
}
.incog-steps { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.3rem; }
.incog-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-xs);
  padding: 0.8rem 1rem;
}
.incog-step strong { display: block; font-size: 0.84rem; color: var(--ink); margin-bottom: 0.2rem; }
.incog-step span { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.incog-note { font-size: 0.78rem !important; color: var(--green) !important; font-style: italic; margin-bottom: 0 !important; }

/* — SCROLL REVEAL — */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* — RESPONSIVE — */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-text { padding-bottom: 2rem; }
  .hero-image img { height: 280px; border-radius: var(--radius); }
  .cta-row { justify-content: center; }
  .split, .split.reverse { grid-template-columns: 1fr; direction: ltr; }
  .stat-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero h1, .page-header h1 { font-size: 1.85rem; }
  .card-grid, .contact-cards, .path-chooser { grid-template-columns: 1fr; }
  nav ul {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(12,11,22,0.95); backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--rule);
    padding: 1rem 2rem; gap: 0.8rem;
  }
  nav ul.open { display: flex; }
  .mobile-toggle { display: block; }
  .hero-wrap { padding: 4rem 1.5rem 0; }
  .page-header-wrap { padding: 3rem 1.5rem 2rem; }
  .image-break { height: 180px; }
  .guide-tabs { gap: 0.4rem; }
  .guide-tab { padding: 0.5rem 1rem; font-size: 0.78rem; }
}

/* — EXIT BUTTON (in nav) — */
.exit-nav-btn {
  background: #dc3545 !important; color: #fff !important;
  padding: 0.45rem 1.1rem !important; border-radius: 100px;
  font-size: 0.78rem !important; font-weight: 700 !important;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px rgba(220,53,69,0.3);
  transition: all 0.2s;
}
.exit-nav-btn:hover { background: #c82333 !important; color: #fff !important; transform: scale(1.04); }

/* — TRUST STRIP — */
.trust-strip {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 1.2rem; margin-bottom: 0.5rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--muted); font-weight: 500;
}
.trust-icon { font-size: 0.95rem; }

/* — FORM CARD — */
.form-card {
  background: linear-gradient(180deg, rgba(28,26,46,0.9), rgba(20,18,34,0.9));
  backdrop-filter: blur(16px);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  padding: 2.2rem;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--blue));
}

.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.76rem; font-weight: 600;
  color: var(--ink); display: flex; align-items: baseline; gap: 0.4rem;
}
.form-label .optional {
  font-weight: 400; font-size: 0.7rem; color: var(--muted);
  font-style: italic; text-transform: none; letter-spacing: 0;
}
.form-input, .form-textarea, .form-select {
  background: rgba(255,255,255,0.03);
  border: 1.5px solid var(--rule-strong);
  border-radius: var(--radius-xs);
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem; color: var(--ink);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  width: 100%;
}
.form-input:hover, .form-textarea:hover, .form-select:hover {
  border-color: rgba(124,108,212,0.3);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--accent);
  background: rgba(124,108,212,0.05);
  box-shadow: 0 0 0 4px var(--accent-light);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); opacity: 0.55; }
.form-textarea { min-height: 130px; resize: vertical; line-height: 1.7; }

.select-wrap { position: relative; }
.form-select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  padding-right: 2.5rem;
}
.form-select option { background: var(--surface-solid); color: var(--ink); }
.select-arrow {
  position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%);
  font-size: 0.7rem; color: var(--muted); pointer-events: none;
}

.form-submit-btn {
  width: 100%; margin-top: 1.8rem;
  padding: 1rem; font-size: 0.92rem;
  text-align: center; border: none;
  cursor: pointer;
}
.form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.form-privacy {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; color: var(--muted);
  text-align: left; margin-top: 1.3rem; line-height: 1.6;
  padding: 0.9rem 1.1rem;
  background: rgba(124,108,212,0.04);
  border-radius: var(--radius-xs);
  border: 1px solid rgba(124,108,212,0.08);
}
.privacy-icon { flex-shrink: 0; font-size: 0.95rem; }

/* — FORM SUCCESS — */
.form-success {
  display: none; text-align: center; padding: 3rem 2rem;
  background: linear-gradient(180deg, rgba(92,201,167,0.08), rgba(92,201,167,0.03));
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  margin-top: 1.5rem;
}
.success-icon {
  width: 3.2rem; height: 3.2rem; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--green); color: #fff;
  border-radius: 50%; font-size: 1.3rem; font-weight: 700;
  box-shadow: 0 0 30px var(--green-glow);
}
.form-success h3 {
  font-family: 'Fraunces', serif; color: var(--green);
  font-size: 1.4rem; margin-bottom: 0.6rem;
}
.form-success p { font-size: 0.92rem; color: var(--body); max-width: 420px; margin: 0 auto; line-height: 1.7; }
.success-note { margin-top: 1rem !important; font-size: 0.84rem !important; color: var(--muted) !important; font-style: italic; }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem; }
  .trust-strip { gap: 0.9rem; }
}

/* — GOOGLE FORM EMBED — */
.gform-wrap {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--rule-strong);
  background: #fff;
}
.gform-wrap iframe {
  display: block;
  width: 100%;
  border: none;
}
@media (max-width: 640px) {
  .gform-wrap iframe { height: 1700px; }
}

/* — FAQ — */
.faq-list { margin-top: 1.5rem; }
.faq-item {
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 0; cursor: pointer;
  font-size: 0.95rem; font-weight: 600; color: var(--ink);
  transition: color 0.2s;
  background: none; border: none; width: 100%; text-align: left;
  font-family: 'Inter', sans-serif;
}
.faq-question:hover { color: var(--accent); }
.faq-arrow {
  font-size: 0.8rem; color: var(--muted); transition: transform 0.3s;
  flex-shrink: 0; margin-left: 1rem;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 0 1.3rem 0; }
.faq-answer p { font-size: 0.86rem; color: var(--muted); line-height: 1.75; margin-bottom: 0.6rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* — SHARE SAFELY — */
.share-safe-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--surface-solid); border: 1px solid var(--rule-strong);
  border-radius: 100px; padding: 0.6rem 1.3rem;
  font-size: 0.8rem; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all 0.3s; font-family: 'Inter', sans-serif;
}
.share-safe-btn:hover { border-color: var(--accent); color: var(--accent); }
.share-safe-btn.copied { border-color: var(--green); color: var(--green); }
