:root {
  --bg: #ffffff;
  --bg-elev: #ffffff;
  --bg-elev-2: #f7faff;
  --border: #e3ecff;
  --border-bright: #c8dcff;
  --text: #081225;
  --text-dim: #526178;
  --text-faint: #8b99ad;
  --accent: #2563eb;
  --accent-bright: #3b82f6;
  --accent-deep: #1d4ed8;
  --done: #16a34a;
  --article-text: #1c2638;
  --review-text: #343d4c;
  --mark-bg: #fff16a;
  --bg-grad-1: rgba(37, 99, 235, 0.07);
  --bg-grad-2: #fbfdff;
  --card-shadow: rgba(8, 18, 37, 0.06);
  --icon-grad-from: #e7efff;
  --icon-grad-to: #f7faff;
  --cta-grad-from: #f0f6ff;
  --cta-grad-to: #ffffff;
  --avatar-ring: #ffffff;
  --sans: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Fraunces', Georgia, serif;
  --gutter: 28px;
  --gutter-mobile: 26px;
}

/* ===== DARK MODE (auto-switches with OS preference) ===== */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a0e17;
    --bg-elev: #11161f;
    --bg-elev-2: #161c28;
    --border: #1f2a44;
    --border-bright: #2c3a5c;
    --text: #e9ecf3;
    --text-dim: #9aa6bf;
    --text-faint: #6b7689;
    --accent: #60a5fa;
    --accent-bright: #93c5fd;
    --accent-deep: #3b82f6;
    --done: #22c55e;
    --article-text: #c8d0e0;
    --review-text: #b8c2d4;
    --mark-bg: #fbbf24;
    --bg-grad-1: rgba(96, 165, 250, 0.10);
    --bg-grad-2: #0d121c;
    --card-shadow: rgba(0, 0, 0, 0.35);
    --icon-grad-from: #1a2238;
    --icon-grad-to: #161c28;
    --cta-grad-from: #16213a;
    --cta-grad-to: #0e141f;
    --avatar-ring: #1f2a44;
  }
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background-color: var(--bg) !important;
  background-image:
    radial-gradient(circle at 50% 0%, var(--bg-grad-1), transparent 34%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-grad-2) 44%, var(--bg) 100%) !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
}
html, body {
  width: 100%; min-height: 100%; overflow-x: hidden; overflow-y: auto;
  color: var(--text) !important; font-family: var(--sans); font-size: 14px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body { background-color: transparent !important; }
::selection { background: var(--accent); color: #ffffff; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

body::before, body::after {
  content: ""; position: fixed; pointer-events: none; z-index: -1;
  border-radius: 999px; filter: blur(80px); transform: translateZ(0);
}
body::before { width: 320px; height: 320px; top: 8%; left: 50%; margin-left: -160px; background: rgba(37,99,235,0.06); }
body::after  { width: 280px; height: 280px; right: -120px; top: 62%; background: rgba(59,130,246,0.06); }

/* ===== NAV ===== */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: calc(20px + env(safe-area-inset-top)) var(--gutter) 16px;
  max-width: 1100px; margin: 0 auto; width: 100%;
}
.nav .logo-mark {
  font-family: var(--serif); font-weight: 800; font-style: italic;
  font-size: 26px; letter-spacing: -0.03em; line-height: 1;
}
.nav .logo-mark .accent { color: var(--accent); }
.nav .logo-mark .faint { color: var(--text-faint); }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 13px; font-weight: 600; color: var(--text-dim); }
.nav-links a { transition: color .15s ease; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 9px 17px; border-radius: 999px;
  background: var(--accent); color: #fff !important;
  font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .06em;
  box-shadow: 0 8px 22px rgba(37,99,235,.22);
  transition: transform .15s ease, box-shadow .15s ease;
}
.nav-cta:hover { transform: translateY(-1px); }

/* ===== MOBILE BURGER MENU ===== */
.nav-toggle { display: none; }
.burger { display: none; }
.mobile-menu { display: none; }

@media (max-width: 760px) {
  .nav { padding-left: var(--gutter-mobile); padding-right: var(--gutter-mobile); }
  .nav-links-desktop { display: none !important; }

  .burger {
    display: inline-flex; flex-direction: column; justify-content: space-between;
    width: 28px; height: 22px; cursor: pointer; padding: 3px 0;
    z-index: 60;
  }
  .burger span {
    display: block; width: 100%; height: 2px; border-radius: 2px;
    background: var(--text); transition: transform .2s ease, opacity .2s ease;
  }

  .mobile-menu {
    display: block;
    position: fixed; inset: 0; z-index: 55;
    background: var(--bg-elev);
    transform: translateY(-100%);
    transition: transform .26s ease;
    overflow-y: auto;
    padding: calc(80px + env(safe-area-inset-top)) 0 80px;
  }
  .mobile-menu-inner {
    max-width: 480px; margin: 0 auto;
    padding: 0 var(--gutter-mobile);
    display: flex; flex-direction: column; gap: 4px;
  }
  .mm-link {
    display: block; padding: 16px 4px;
    font-size: 18px; font-weight: 700; color: var(--text);
    border-bottom: 1px solid var(--border);
  }
  .mm-link.mm-cta {
    margin-top: 14px; border: 0; text-align: center;
    background: var(--accent); color: #fff !important;
    border-radius: 999px; padding: 16px 22px;
    font-size: 13px; text-transform: uppercase; letter-spacing: .06em;
    box-shadow: 0 12px 28px rgba(37,99,235,.25);
  }
  .mm-section {
    margin-top: 28px; padding: 0 4px 8px;
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
    color: var(--accent);
  }
  .mm-sub {
    display: block; padding: 12px 4px;
    font-size: 14px; font-weight: 600; color: var(--text-dim);
    border-bottom: 1px solid var(--border);
    line-height: 1.35;
  }
  .mm-sub:active { color: var(--accent-deep); }

  /* Toggle state */
  .nav-toggle:checked ~ .mobile-menu { transform: translateY(0); }
  .nav-toggle:checked ~ .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle:checked ~ .burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  /* Lock scroll when menu open */
  .nav-toggle:checked ~ .mobile-menu { overscroll-behavior: contain; }
  html:has(.nav-toggle:checked) { overflow: hidden; }
}


/* ===== LAYOUT ===== */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.narrow { max-width: 720px; margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
@media (max-width: 640px) {
  .wrap { padding-left: var(--gutter-mobile); padding-right: var(--gutter-mobile); }
  .narrow { padding-left: var(--gutter-mobile); padding-right: var(--gutter-mobile); }
}

.section { padding: 56px 0; }
.section-eyebrow { color: var(--accent); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; text-align: center; margin-bottom: 10px; }
.section-title { font-family: var(--serif); font-weight: 600; font-size: clamp(26px, 4.4vw, 38px); line-height: 1.1; letter-spacing: -0.035em; color: var(--text); text-align: center; margin-bottom: 14px; }
.section-title em { font-style: italic; font-weight: 400; color: var(--accent); }
.section-lede { color: var(--text-dim); font-size: 16px; line-height: 1.6; text-align: center; max-width: 600px; margin: 0 auto 36px; padding: 0 var(--gutter-mobile); }

/* ===== HERO ===== */
.hero { padding: 16px var(--gutter) 48px; max-width: 1100px; margin: 0 auto; text-align: center; }
@media (max-width: 640px) { .hero { padding-left: var(--gutter-mobile); padding-right: var(--gutter-mobile); } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-deep);
  padding: 10px 17px; border: 1px solid var(--border-bright); background: var(--bg-elev);
  border-radius: 100px; margin-bottom: 22px; line-height: 1.3;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.12), inset 0 1px 0 rgba(255,255,255,0.9);
}
.hero-badge::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--done); box-shadow: 0 0 0 4px rgba(22,163,74,.15);
}
h1.hero-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(32px, 6vw, 60px); line-height: 1.06; letter-spacing: -0.035em;
  margin: 0 auto 16px; max-width: 880px; color: var(--text);
}
h1.hero-title em { font-style: italic; font-weight: 400; color: var(--accent); }
.hero-sub { font-size: 16px; line-height: 1.6; color: var(--text-dim); margin: 0 auto 26px; max-width: 580px; }
.hero-sub b { color: var(--text); font-weight: 600; }
.hero-actions { display: inline-flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.btn {
  min-height: 50px; padding: 0 24px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.btn.primary { background: var(--accent); color: #fff; box-shadow: 0 12px 32px rgba(37,99,235,.22); }
.btn.primary:hover { transform: translateY(-1px); background: var(--accent-deep); }
.btn.ghost { background: var(--bg-elev); color: var(--text); border: 1px solid var(--border-bright); }
.btn.ghost:hover { transform: translateY(-1px); border-color: var(--accent); color: var(--accent-deep); }
.btn svg { width: 15px; height: 15px; }

.hero-meta {
  margin-top: 26px; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
  color: var(--text-faint); font-size: 12px; font-weight: 600;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta b { color: var(--text); font-weight: 800; }

/* ===== HERO PARTNER BADGE (Instagram link) ===== */
.partner-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-deep);
  padding: 10px 17px; border: 1px solid var(--border-bright); background: var(--bg-elev);
  border-radius: 100px; margin-bottom: 24px; line-height: 1.3;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.12);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.partner-badge:hover { transform: translateY(-1px); border-color: var(--accent); }
.partner-badge::after { content: "↗"; font-size: 12px; color: var(--accent); margin-left: 1px; }
.google-g { width: 15px; height: 15px; flex-shrink: 0; display: block; }

/* ===== SERVICES ===== */
.service-grid { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 720px; margin: 0 auto; }
.service-card {
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.service-card:hover { transform: translateY(-2px); border-color: var(--border-bright); box-shadow: 0 14px 34px var(--card-shadow); }
.service-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--icon-grad-from), var(--icon-grad-to));
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px;
  color: var(--accent-deep);
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 {
  font-family: var(--serif); font-weight: 600; font-size: 24px;
  line-height: 1.15; letter-spacing: -0.025em; color: var(--text); margin-bottom: 10px;
}
.service-card p { color: var(--text-dim); font-size: 15px; line-height: 1.55; }
.service-card ul { list-style: none; margin-top: 16px; }
.service-card li {
  font-size: 14px; color: var(--text); padding: 7px 0 7px 22px; position: relative; font-weight: 500;
}
.service-card li::before {
  content: "✓"; position: absolute; left: 0; top: 7px;
  color: var(--accent); font-weight: 800; font-size: 12px;
}

/* ===== STATS ===== */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 8px; }
@media (max-width: 720px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat-card { background: var(--bg-elev); border: 1px solid var(--border); border-radius: 18px; padding: 22px 16px; text-align: center; }
.stat-num { font-family: var(--serif); font-weight: 700; font-size: 34px; letter-spacing: -.03em; color: var(--accent-deep); line-height: 1; }
.stat-label { margin-top: 6px; font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }

/* ===== RESULTS SLIDER ===== */
.results-slider {
  display: flex; gap: 16px; overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scroll-padding-left: var(--gutter);
  padding: 4px var(--gutter) 16px; margin: 0 calc(-1 * var(--gutter));
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
@media (max-width: 640px) {
  .results-slider { padding-left: var(--gutter-mobile); padding-right: var(--gutter-mobile); margin-left: calc(-1 * var(--gutter-mobile)); margin-right: calc(-1 * var(--gutter-mobile)); scroll-padding-left: var(--gutter-mobile); }
}
.results-slider::-webkit-scrollbar { display: none; }
.result-card {
  flex: 0 0 88%; max-width: 360px; scroll-snap-align: center;
  display: block; border-radius: 22px; overflow: hidden;
  background: var(--bg-elev); border: 1px solid var(--border);
  transition: transform .18s ease, border-color .18s ease;
}
@media (min-width: 720px) { .result-card { flex-basis: 360px; } }
.result-card:hover { transform: translateY(-2px); border-color: var(--border-bright); }
.result-topbar { height: 32px; display: flex; align-items: center; gap: 6px; padding: 0 13px; background: var(--bg-elev-2); border-bottom: 1px solid var(--border); }
.result-dot { width: 7px; height: 7px; border-radius: 999px; background: #d3ddf0; }
.result-title { margin-left: 6px; font-size: 10px; font-weight: 700; color: #64748b; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.result-shot { background: var(--bg-elev-2); padding: 8px; }
.result-card img { width: 100%; height: auto; display: block; border-radius: 14px; }
.result-caption { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 13px 15px 15px; }
.result-caption strong { font-size: 13px; color: var(--text); }
.result-caption span { font-size: 11px; color: var(--accent); font-weight: 700; }
.slider-hint { display: flex; align-items: center; justify-content: center; gap: 7px; color: var(--text-faint); font-size: 11px; margin-top: 4px; }
.slider-hint span { width: 24px; height: 2px; border-radius: 10px; background: var(--border-bright); opacity: .9; }

/* ===== WHATSAPP STACK (vertical, full-width) ===== */
/* The whatsapp source images are very wide horizontal message strips,
   not portrait chat screenshots. They read best stacked full-width. */
.wa-slider {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  max-width: 720px; margin: 0 auto;
}
.wa-card {
  display: block; border-radius: 18px; background: var(--bg-elev);
  border: 1px solid var(--border); padding: 10px; overflow: hidden;
  transition: transform .18s ease, border-color .18s ease;
}
.wa-card:hover { transform: translateY(-2px); border-color: var(--border-bright); }
.wa-card img { width: 100%; height: auto; display: block; border-radius: 10px; }

/* ===== REVIEWS ===== */
.auth-review-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
}
@media (max-width: 920px) { .auth-review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .auth-review-grid { grid-template-columns: 1fr; } }
.auth-review-card { background: var(--bg-elev); border: 1px solid var(--border); border-radius: 22px; padding: 22px; box-shadow: 0 14px 34px var(--card-shadow); }
.auth-review-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.auth-logo {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--bg-elev); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  padding: 0; flex-shrink: 0; overflow: hidden;
}
.auth-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.auth-review-head h3 { font-size: 15px; font-weight: 800; line-height: 1.2; color: var(--text); margin: 0 0 3px; }
.auth-review-head p { font-size: 12px; color: var(--text-faint); font-weight: 600; margin: 0; }
.auth-stars { color: #fbbc05; font-size: 15px; letter-spacing: 1px; margin-bottom: 12px; }
.auth-copy { font-size: 14px; line-height: 1.55; color: var(--review-text); }
.auth-copy mark { background: var(--mark-bg); color: #0a0e17; padding: 0 4px; border-radius: 3px; font-weight: 600; }

/* ===== ARTICLES INDEX ===== */
.articles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 760px) { .articles-grid { grid-template-columns: 1fr; } }
.article-card {
  display: block; background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: 22px; padding: 26px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.article-card:hover { transform: translateY(-2px); border-color: var(--border-bright); box-shadow: 0 14px 34px var(--card-shadow); }
.article-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 12px; }
.article-tag {
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  color: var(--accent-deep); background: #eff5ff; border: 1px solid var(--border);
  padding: 5px 9px; border-radius: 999px;
}
.article-card h3 {
  font-family: var(--serif); font-weight: 600; font-size: 22px;
  letter-spacing: -.03em; line-height: 1.18; color: var(--text); margin-bottom: 10px;
}
.article-excerpt { color: var(--text-dim); font-size: 14px; line-height: 1.55; margin-bottom: 14px; }
.article-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-faint); font-weight: 600; flex-wrap: wrap; }
.article-meta b { color: var(--text); font-weight: 700; }
.article-meta .dot { width: 3px; height: 3px; background: var(--text-faint); border-radius: 50%; }

/* ===== ARTICLE PAGE ===== */
/* NOTE: do NOT set padding shorthand on .article-hero or .article-body —
   they live inside .narrow which provides the left/right gutters.
   A shorthand here would zero those out and the text would hug the screen. */
.article-hero { padding-top: 28px; padding-bottom: 16px; text-align: center; }
.article-hero .tag-row { display: flex; justify-content: center; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.article-hero h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(28px, 5vw, 44px); line-height: 1.12; letter-spacing: -0.03em;
  margin: 0 auto 18px; max-width: 800px; color: var(--text);
}
.article-author {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--bg-elev); border: 1px solid var(--border);
  padding: 10px 16px 10px 12px; border-radius: 999px; margin-top: 8px;
}
.article-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--serif); font-weight: 800; font-size: 15px;
}
.article-avatar-img {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; display: block;
  border: 2px solid var(--avatar-ring); box-shadow: 0 0 0 1px var(--border-bright);
}

/* ===== FOUNDER SECTION (homepage) ===== */
.founder-card {
  display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: center;
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: 26px; padding: 32px; max-width: 880px; margin: 0 auto;
  box-shadow: 0 14px 34px var(--card-shadow);
}
@media (max-width: 720px) {
  .founder-card { grid-template-columns: 1fr; gap: 22px; padding: 24px; text-align: center; }
}
.founder-photo {
  width: 100%; aspect-ratio: 1/1; border-radius: 22px;
  object-fit: cover; display: block;
  border: 1px solid var(--border);
}
.founder-text h3 {
  font-family: var(--serif); font-weight: 600; font-size: 26px;
  letter-spacing: -.025em; line-height: 1.18; margin-bottom: 8px; color: var(--text);
}
.founder-text .founder-role {
  color: var(--accent); font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px;
}
.founder-text p { color: var(--text-dim); font-size: 15px; line-height: 1.6; margin-bottom: 10px; }
.founder-text p b { color: var(--text); font-weight: 600; }
.article-author-name { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.15; }
.article-author-meta { font-size: 11px; color: var(--text-faint); font-weight: 600; }

.article-body { padding-top: 28px; padding-bottom: 24px; font-size: 17px; line-height: 1.72; color: var(--article-text); }
.article-body h2 { font-family: var(--serif); font-weight: 600; font-size: 26px; letter-spacing: -0.03em; line-height: 1.22; color: var(--text); margin: 36px 0 12px; }
.article-body h3 { font-family: var(--serif); font-weight: 600; font-size: 20px; letter-spacing: -0.025em; line-height: 1.25; color: var(--text); margin: 28px 0 10px; }
.article-body p { margin-bottom: 16px; }
.article-body p strong { color: var(--text); font-weight: 700; }
.article-body ul, .article-body ol { margin: 0 0 20px 22px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 3px solid var(--accent); padding: 6px 0 6px 22px;
  font-family: var(--serif); font-style: italic; font-size: 19px;
  color: var(--text); margin: 24px 0;
}
.article-body a { color: var(--accent-deep); text-decoration: underline; text-decoration-color: var(--border-bright); text-underline-offset: 3px; }
.article-body a:hover { text-decoration-color: var(--accent); }
.article-body hr { border: 0; border-top: 1px solid var(--border); margin: 36px 0; }

.article-footer-cta {
  margin: 30px auto 0; max-width: 720px; padding: 28px;
  background: linear-gradient(135deg, var(--cta-grad-from), var(--cta-grad-to));
  border: 1px solid var(--border-bright); border-radius: 22px; text-align: center;
}
.article-footer-cta h3 { font-family: var(--serif); font-weight: 600; font-size: 22px; letter-spacing: -.025em; margin-bottom: 10px; color: var(--text); }
.article-footer-cta p { color: var(--text-dim); font-size: 14px; margin-bottom: 18px; }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, #0b1730, #122a5e);
  color: #fff; border-radius: 26px; padding: 48px 28px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 999px;
  filter: blur(60px); pointer-events: none;
}
.cta-band::before { width: 240px; height: 240px; background: rgba(59,130,246,.4); top: -80px; left: -80px; }
.cta-band::after { width: 280px; height: 280px; background: rgba(37,99,235,.35); bottom: -100px; right: -80px; }
.cta-band h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(26px, 4vw, 38px); line-height: 1.12; letter-spacing: -.03em; margin-bottom: 14px; position: relative; }
.cta-band h2 em { font-style: italic; font-weight: 400; color: #a8c5ff; }
.cta-band p { font-size: 15px; opacity: .85; margin-bottom: 24px; position: relative; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn { position: relative; }
.cta-band .btn.primary { background: var(--bg-elev); color: var(--accent-deep); }
.cta-band .btn.primary:hover { background: #f0f6ff; }

/* ===== FOOTER ===== */
footer { border-top: 1px solid var(--border); padding: 48px var(--gutter) 40px; text-align: center; margin-top: 32px; }
@media (max-width: 640px) { footer { padding-left: var(--gutter-mobile); padding-right: var(--gutter-mobile); } }
.footer-inner { max-width: 720px; margin: 0 auto; }
.footer-mark { font-family: var(--serif); font-weight: 800; font-style: italic; font-size: 22px; margin-bottom: 6px; }
.footer-mark .accent { color: var(--accent); }
.footer-tag { color: var(--text-dim); font-size: 14px; margin-bottom: 20px; }
.footer-actions { display: inline-flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 24px; }
.footer-cta {
  padding: 11px 20px; border-radius: 999px;
  background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  transition: transform .15s ease;
  box-shadow: 0 8px 22px rgba(37,99,235,.20);
}
.footer-cta:hover { transform: translateY(-1px); }
.footer-cta.ghost { background: var(--bg-elev); color: var(--text); border: 1px solid var(--border-bright); box-shadow: none; }
.footer-meta { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-faint); line-height: 1.8; }

/* ===== HANDBOOK PAGE ===== */
.handbook-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start;
}
@media (max-width: 860px) { .handbook-grid { grid-template-columns: 1fr; gap: 28px; } }

.hb-list { list-style: none; padding: 0; margin: 0; }
.hb-list li { font-size: 15px; line-height: 1.55; color: var(--text); padding: 12px 0 12px 26px; position: relative; border-bottom: 1px solid var(--border); }
.hb-list li:last-child { border-bottom: 0; }
.hb-list li::before { content: "✓"; position: absolute; left: 0; top: 12px; color: var(--accent); font-weight: 800; font-size: 14px; }
.hb-list b { font-weight: 700; color: var(--text); }

.hb-form {
  background: var(--bg-elev); border: 1px solid var(--border-bright);
  border-radius: 22px; padding: 28px;
  box-shadow: 0 18px 44px rgba(37,99,235,.10);
}
.hb-form-title {
  font-family: var(--serif); font-weight: 600; font-size: 22px;
  letter-spacing: -.025em; color: var(--text); margin-bottom: 18px;
}
.hb-field { margin-bottom: 14px; }
.hb-field label {
  display: block; margin-bottom: 6px;
  font-size: 12px; font-weight: 700; color: var(--text);
  letter-spacing: 0; text-transform: none;
}
.hb-input {
  display: block; width: 100%;
  padding: 12px 14px; border: 1px solid var(--border-bright); border-radius: 10px;
  font-size: 15px; font-family: var(--sans); color: var(--text);
  background: var(--bg-elev); outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  -webkit-appearance: none; appearance: none;
}
select.hb-input {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%239aa6bf'><path d='M6 8L0 0h12L6 8z'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 10px;
  padding-right: 36px;
}
.hb-input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(37,99,235,.12); }
textarea.hb-input { resize: vertical; min-height: 90px; font-family: var(--sans); }
.hb-fineprint { font-size: 11px; color: var(--text-faint); margin-top: 14px; text-align: center; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ===== SMALL SCREENS ===== */
@media (max-width: 600px) {
  .section { padding: 44px 0; }
  .hero { padding-bottom: 32px; }
  .article-body { font-size: 16px; }
  .article-body h2 { font-size: 22px; }
  .article-body h3 { font-size: 18px; }
  .article-body blockquote { font-size: 17px; }
  .article-hero { padding-top: 24px; }
  .cta-band { padding: 38px 22px; border-radius: 22px; }
  .footer-meta { font-size: 10px; }
  .hb-form { padding: 22px; }
}
