/* ============================================================
   OHANASECURE — Brand-derived design system
   Palette: coral-to-indigo gradient from logo
   Dark-first, with light mode toggle
   ============================================================ */

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Brand gradient anchors (extracted from logo) */
  --brand-coral:    #f08769;
  --brand-rose:     #e17896;
  --brand-mauve:    #c87ab4;
  --brand-indigo:   #8c87dc;
  --brand-teal:     #5ab4d2;

  /* Gradient definitions */
  --gradient-brand: linear-gradient(135deg, var(--brand-coral) 0%, var(--brand-rose) 35%, var(--brand-mauve) 65%, var(--brand-indigo) 100%);
  --gradient-brand-text: linear-gradient(135deg, #f0a569 0%, #e17896 40%, #b478c8 70%, #7878dc 100%);
  --gradient-glow: radial-gradient(ellipse at center, oklch(0.62 0.18 350 / 0.25) 0%, transparent 70%);

  /* Type */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Type scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-hero: clamp(2.75rem,  1rem    + 5.5vw,  6rem);

  /* Spacing (4px base) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radii */
  --radius-sm:   0.375rem;
  --radius-md:   0.625rem;
  --radius-lg:   1rem;
  --radius-xl:   1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:    0 1px 3px oklch(0 0 0 / 0.2);
  --shadow-md:    0 4px 16px oklch(0 0 0 / 0.3);
  --shadow-lg:    0 12px 40px oklch(0 0 0 / 0.45);
  --shadow-glow:  0 0 60px oklch(0.62 0.18 350 / 0.3);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 180ms var(--ease-out);

  /* Layout */
  --content-narrow:  640px;
  --content-default: 980px;
  --content-wide:    1200px;
}

/* ── DARK MODE (default) ─────────────────────────────────────── */
:root, [data-theme="dark"] {
  --color-bg:              #0c0b0f;
  --color-surface:         #121118;
  --color-surface-2:       #17161e;
  --color-surface-card:    #1a1924;
  --color-border:          #2a2836;
  --color-border-subtle:   #1f1d2a;

  --color-text:            #e8e6f0;
  --color-text-muted:      #8b8a9e;
  --color-text-faint:      #4a4858;

  --color-primary:         #c87ab4;
  --color-primary-hover:   #d990c8;
  --color-cta-bg:          var(--gradient-brand);
}

/* ── LIGHT MODE ──────────────────────────────────────────────── */
[data-theme="light"] {
  --color-bg:              #faf9fc;
  --color-surface:         #f3f1f8;
  --color-surface-2:       #ede9f5;
  --color-surface-card:    #ffffff;
  --color-border:          #ddd8ec;
  --color-border-subtle:   #eae6f4;

  --color-text:            #1a1825;
  --color-text-muted:      #5c5972;
  --color-text-faint:      #9d9ab0;

  --color-primary:         #9a3d9a;
  --color-primary-hover:   #7a2a7a;
  --color-cta-bg:          var(--gradient-brand);
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    --color-bg:              #faf9fc;
    --color-surface:         #f3f1f8;
    --color-surface-2:       #ede9f5;
    --color-surface-card:    #ffffff;
    --color-border:          #ddd8ec;
    --color-border-subtle:   #eae6f4;
    --color-text:            #1a1825;
    --color-text-muted:      #5c5972;
    --color-text-faint:      #9d9ab0;
    --color-primary:         #9a3d9a;
    --color-primary-hover:   #7a2a7a;
  }
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.12; text-wrap: balance; }
p, li { text-wrap: pretty; max-width: 68ch; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
ul[role="list"] { list-style: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── UTILITIES ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-12));
}

.gradient-text {
  background: var(--gradient-brand-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gradient-brand-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: var(--space-3);
}

.centered { text-align: center; }
.centered.section-label { display: block; }
p.centered { margin-inline: auto; }

.section-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  margin-bottom: var(--space-10);
  max-width: 60ch;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.6em 1.4em;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-lg {
  padding: 0.75em 2em;
  font-size: var(--text-base);
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 2px 20px oklch(0.62 0.18 350 / 0.35);
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 28px oklch(0.62 0.18 350 / 0.5);
}

.btn-outline {
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--brand-mauve);
  color: var(--brand-mauve);
  background: oklch(0.62 0.1 320 / 0.07);
}

.btn-ghost {
  color: var(--color-text-muted);
  border: 1.5px solid var(--color-border-subtle);
}
.btn-ghost:hover {
  color: var(--color-text);
  border-color: var(--color-border);
}

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: box-shadow var(--transition);
}
.nav--scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-12));
  height: 68px;
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}
.nav-logo-img { width: 36px; height: 36px; object-fit: contain; }
.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  background: var(--gradient-brand-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: var(--space-6);
  margin-left: auto;
}
.nav-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--color-text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: var(--space-4);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: color var(--transition), background var(--transition);
}
.theme-toggle:hover { color: var(--color-text); background: var(--color-surface); }

.nav-mobile-toggle { display: none; }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4) clamp(var(--space-5), 5vw, var(--space-12)) var(--space-6);
  border-top: 1px solid var(--color-border-subtle);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  padding: var(--space-3) 0;
  font-size: var(--text-base);
  color: var(--color-text-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--color-border-subtle);
}
.nav-mobile-menu .btn { margin-top: var(--space-3); align-self: flex-start; }

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-mobile-toggle { display: flex; align-items: center; justify-content: center; margin-left: auto; }
  .nav-actions { margin-left: 0; }
  .nav-actions .theme-toggle { display: flex; }
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, oklch(0.55 0.2 350 / 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 30% 70%, oklch(0.55 0.18 260 / 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero-pixel-logo {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 40vw, 560px);
  opacity: 0.12;
  filter: blur(1px);
  pointer-events: none;
  user-select: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  background: var(--color-surface);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gradient-brand);
}

.hero-heading {
  font-size: var(--text-hero);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-6);
  max-width: 14ch;
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-8);
  max-width: 52ch;
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.hero-trust {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
}
.trust-pill svg { color: var(--brand-coral); flex-shrink: 0; }

/* ── PROBLEM ──────────────────────────────────────────────────── */
.problem {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  background: var(--color-surface);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: start;
}

.problem-text h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}
.problem-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.problem-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.stat-card {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-surface-card);
  border: 1px solid var(--color-border-subtle);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ── SERVICES ────────────────────────────────────────────────── */
.services {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: start;
}

.service-card {
  position: relative;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: var(--brand-mauve);
  box-shadow: 0 0 40px oklch(0.62 0.15 320 / 0.15);
}

.service-card--featured {
  border-color: transparent;
  background: linear-gradient(var(--color-surface-card), var(--color-surface-card)) padding-box,
              var(--gradient-brand) border-box;
  box-shadow: 0 4px 40px oklch(0.62 0.18 350 / 0.2);
}
.service-card--featured:hover {
  box-shadow: 0 8px 60px oklch(0.62 0.18 350 / 0.3);
}

.service-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-coral);
}

.service-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  background: var(--gradient-brand-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.service-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-top: calc(-1 * var(--space-2));
}

.service-card > p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

.service-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border-subtle);
}
.service-includes li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: none;
}
.service-includes li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gradient-brand);
  flex-shrink: 0;
}

.service-card .btn {
  margin-top: var(--space-2);
  justify-content: center;
  width: 100%;
}

.services-addon {
  text-align: center;
  margin-top: var(--space-8);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.services-addon strong { color: var(--color-text); }

@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .service-card--featured { order: -1; }
}

/* ── HOW IT WORKS ─────────────────────────────────────────────── */
.how {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  background: var(--color-surface);
}

.how h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-12);
  letter-spacing: -0.02em;
}

.steps {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  max-width: 900px;
  margin-inline: auto;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
}

.step-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.step h3 {
  font-size: var(--text-base);
  font-weight: 700;
}

.step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 28ch;
}

.step-divider {
  color: var(--color-border);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .steps { flex-direction: column; }
  .step-divider { transform: rotate(90deg); }
  .step p { max-width: 40ch; }
}

/* ── LIFELINE ─────────────────────────────────────────────────── */
.lifeline {
  position: relative;
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  overflow: hidden;
}
.lifeline-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, oklch(0.55 0.2 320 / 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.lifeline-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-inline: auto;
}
.lifeline-text h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}
.lifeline-text > p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}
.lifeline-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}
.lifeline-plan {
  position: relative;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.lifeline-plan--featured {
  border-color: transparent;
  background: linear-gradient(var(--color-surface-card), var(--color-surface-card)) padding-box,
              var(--gradient-brand) border-box;
}
.lifeline-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lifeline-plan-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  background: var(--gradient-brand-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.lifeline-plan-price span {
  font-size: var(--text-sm);
  font-weight: 500;
  -webkit-text-fill-color: var(--color-text-muted);
  color: var(--color-text-muted);
}
.lifeline-plan-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
}
.lifeline-plan-desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}
.lifeline-note {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  max-width: none;
}
@media (max-width: 600px) {
  .lifeline-plans { grid-template-columns: 1fr; }
}

/* ── TRUST ────────────────────────────────────────────────────── */
.trust {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  background: var(--color-surface);
}
.trust h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-12);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--color-surface-card);
  border: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-coral);
}
.trust-item h3 {
  font-size: var(--text-base);
  font-weight: 700;
}
.trust-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}
@media (max-width: 860px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}
.faq-inner {
  max-width: 720px;
}
.faq h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-10);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-card);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] {
  border-color: var(--brand-mauve);
}
.faq-item summary {
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--brand-coral);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item > p {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: none;
}

/* ── BOOK CTA ─────────────────────────────────────────────────── */
.book-cta {
  position: relative;
  padding-block: clamp(var(--space-20), 10vw, var(--space-32));
  overflow: hidden;
  background: var(--color-surface);
  text-align: center;
}
.book-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, oklch(0.55 0.2 350 / 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.book-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}
.book-cta-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: var(--space-2);
}
.book-cta h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 18ch;
}
.book-cta > .book-cta-inner > p:first-of-type {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  max-width: 40ch;
}
.book-cta-note {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  max-width: none;
}
.book-cta-note a {
  color: var(--brand-coral);
  text-decoration: underline;
  text-decoration-color: oklch(0.65 0.18 30 / 0.4);
  text-underline-offset: 3px;
}

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  padding-block: var(--space-12);
  border-top: 1px solid var(--color-border-subtle);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.footer-logo-img { width: 28px; height: 28px; object-fit: contain; }
.footer-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  background: var(--gradient-brand-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: none;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-text); }
.footer-links span { color: var(--color-border); }
.footer-copy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  max-width: none;
}

/* ── FOCUS VISIBLE ───────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--brand-mauve);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
