/* ============================================================
   Modern Minds — Site stylesheet (v4, light theme, brand blue)
   White-first design keyed to the logo indigo #3E4795 — no
   purple. Clean light aesthetic (TimelyGrader reference) with
   the structural elements from the dark drafts: hero stat row,
   monitoring mock, pill buttons, rounded cards.
   ============================================================ */

/* Self-hosted fonts (no external requests — GDPR-safe for DACH visitors) */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/Inter-var.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../fonts/SpaceGrotesk-var.woff2") format("woff2");
}

:root {
  --brand: #3E4795;          /* logo indigo-blue */
  --brand-dark: #2F3776;
  --brand-deep: #1E2350;     /* deep navy for dark bands/footer */
  --blue: #4A7FE0;
  /* accents are flat brand indigo — one accent, no gradients */
  --grad: var(--brand);
  --grad-btn: var(--brand);

  --bg: #FCFCFE;
  --bg-soft: #F5F7FC;
  --card: #FFFFFF;
  --line: #E4E7F2;
  --line-strong: #CDD3EA;

  --heading: #171B3D;
  --body: #464D71;
  --body-strong: #2E3459;
  --muted: #5B6180;

  --amber: #B45309;
  --amber-soft: #8A5A10;
  --amber-bg: #FFF7EC;
  --amber-line: #F3D9AF;
  --green: #1B8A54;
  --green-soft: #1B8A54;
  --green-bg: #E9F7EF;
  --red: #C03434;
  --red-bg: #FBEDED;

  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 1px 2px rgba(23,27,61,.05), 0 12px 32px -14px rgba(23,27,61,.14);
  --shadow-lg: 0 2px 6px rgba(23,27,61,.06), 0 30px 60px -22px rgba(23,27,61,.22);
  --glow: 0 0 0 1px rgba(74,127,224,.22), 0 12px 40px -8px rgba(62,71,149,.35);

  --font-head: "Space Grotesk", "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }
html, body { overflow-x: clip; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--heading);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); letter-spacing: -0.02em; }
h3 { font-size: 1.3rem; letter-spacing: -0.01em; }

p + p { margin-top: 1em; }

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

img, svg { max-width: 100%; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 880px; }

section { padding: 80px 0; }
section.tight { padding: 40px 0; }

/* emphasis phrase in headings — flat brand ink, no gradient fill */
.grad-text { color: var(--brand); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  border-radius: 2px;
  background: var(--grad);
}

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { margin-top: 18px; font-size: 1.15rem; }

.bg-soft { background: var(--bg-soft); }

/* ---------- Motion system ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(53,201,127,.22); }
  50% { box-shadow: 0 0 0 8px rgba(53,201,127,.06); }
}

/* hero entrance sequence */
.hero__badge { animation: rise .65s cubic-bezier(.2,.7,.3,1) both; animation-delay: .05s; }
.hero h1 { animation: rise .65s cubic-bezier(.2,.7,.3,1) both; animation-delay: .14s; }
.hero p.lead { animation: rise .65s cubic-bezier(.2,.7,.3,1) both; animation-delay: .23s; }
.hero .btn-row { animation: rise .65s cubic-bezier(.2,.7,.3,1) both; animation-delay: .32s; }
.hero__stats { animation: rise .65s cubic-bezier(.2,.7,.3,1) both; animation-delay: .41s; }
.hero__art .mock { animation: rise .75s cubic-bezier(.2,.7,.3,1) both; animation-delay: .3s; }
.mock__float { animation: rise .75s cubic-bezier(.2,.7,.3,1) both; animation-delay: .55s; }

/* live status dots breathe — only where "live" is the meaning (the mock) */
.mock__status--ok {
  animation: pulse-dot 2.6s ease-in-out infinite;
}

/* header pill gains depth once the page scrolls */
.site-header .nav { transition: box-shadow .25s ease; }
.site-header.scrolled .nav { box-shadow: 0 14px 34px -16px rgba(23,27,61,.3); }

/* button press feedback */
.btn:active { transform: translateY(0) scale(.98); }

@media (prefers-reduced-motion: reduce) {
  .hero__badge, .hero h1, .hero p.lead, .hero .btn-row, .hero__stats,
  .hero__art .mock, .mock__float { animation: none; }
  .mock__status--ok { animation: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(62,71,149,.55);
}
.btn--primary:hover { background: var(--brand-dark); box-shadow: 0 14px 34px -10px rgba(62,71,149,.7); }

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--heading);
  background: #fff;
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }

.btn--light { background: #fff; color: var(--brand-deep); }
.btn--light:hover { background: #E8ECFA; }

.btn--outline-light { border-color: rgba(255,255,255,.4); color: #fff; background: rgba(255,255,255,.05); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.12); }

.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--sm { padding: 10px 22px; font-size: .9rem; }
/* clickable labels stay one line on small screens */
@media (max-width: 560px) {
  .btn { padding: 14px 22px; white-space: nowrap; max-width: 100%; }
  .btn--lg { padding: 16px 20px; font-size: 1rem; }
  /* Long buttons inside a row wrap and go full width instead of overflowing */
  .btn-row .btn { white-space: normal; flex: 1 1 100%; }
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1000;
  max-width: 780px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--line-strong);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  animation: rise .4s cubic-bezier(.2,.7,.3,1) both;
}
.cookie-banner__inner { display: flex; align-items: center; gap: 20px; padding: 16px 20px; flex-wrap: wrap; }
.cookie-banner__text { margin: 0; font-size: .9rem; line-height: 1.5; color: var(--body); flex: 1 1 300px; }
.cookie-banner__actions { display: flex; gap: 10px; margin-left: auto; }
.cookie-settings-link { cursor: pointer; }
@media (max-width: 560px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; }
}
@media (prefers-reduced-motion: reduce) { .cookie-banner { animation: none; } }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .btn-row {
  display: inline-grid;
  grid-template-columns: minmax(0, max-content);
  justify-items: stretch;
}
@media (max-width: 560px) { .hero .btn-row { display: grid; grid-template-columns: 1fr; width: 100%; } }

/* ---------- Header / nav — floating pill, inset from the top ---------- */
.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  padding: 0 16px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 66px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 26px -16px rgba(23,27,61,.25);
  padding: 0 12px 0 26px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.nav__brand:hover { text-decoration: none; }
.nav__brand img.nav__brand-lockup { height: 44px; width: auto; }
@media (max-width: 560px) { .nav__brand img.nav__brand-lockup { height: 38px; } }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav__brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: .04em;
  color: var(--heading);
  text-transform: uppercase;
}
.nav__brand-tag { font-size: .66rem; color: var(--muted); letter-spacing: .06em; }

.nav__links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav__links a {
  position: relative;
  font-size: .95rem;
  font-weight: 500;
  color: var(--body);
  padding-bottom: 4px;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__links a:hover { color: var(--brand); text-decoration: none; }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.active { color: var(--brand); font-weight: 600; }
.nav__links a.active::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) { .nav__links a::after { transition: none; } }

.nav__cta { white-space: nowrap; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--heading);
  margin: 5px 0;
  border-radius: 2px;
}

@media (max-width: 960px) {
  .nav { gap: 16px; }
  .nav__toggle { display: block; }
  .nav__menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: none;
    padding: 12px 24px 26px;
  }
  .nav__menu.open { display: block; }
  .nav__links { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 12px 0; font-size: 1.05rem; }
  .nav__cta { margin-top: 14px; display: inline-flex; }
}
@media (min-width: 961px) {
  .nav__menu { display: flex; align-items: center; gap: 30px; }
}

/* ---------- Hero (light, soft blue glows) ---------- */
.hero {
  position: relative;
  background: var(--bg);
  padding: 110px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(48rem 28rem at 84% -10%, rgba(74,127,224,.14), transparent 62%),
    radial-gradient(38rem 24rem at -6% 110%, rgba(62,71,149,.10), transparent 60%);
  pointer-events: none;
}
.hero::after {
  /* faint grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(62,71,149,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62,71,149,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(60rem 34rem at 60% 0%, #000 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(60rem 34rem at 60% 0%, #000 25%, transparent 72%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }

.hero h1 { color: var(--heading); }
.hero p.lead {
  margin: 26px 0 38px;
  font-size: 1.22rem;
  color: var(--body);
  max-width: 590px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero { padding: 72px 0 88px; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--body-strong);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
  transition: border-color .15s ease, box-shadow .15s ease;
}
a.hero__badge:hover {
  text-decoration: none;
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 700px) { .hero__badge { white-space: nowrap; } }
.hero__badge-arrow { color: var(--brand); font-weight: 600; }
a.hero__badge:hover .hero__badge-arrow { transform: translateX(2px); }
.hero__badge-arrow { transition: transform .15s ease; }
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(27,138,84,.15);
}

/* stats row under hero CTAs */
.hero__stats-head {
  margin-top: 44px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__stats-head + .hero__stats { margin-top: 10px; padding-top: 18px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 12px 52px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
@media (max-width: 560px) { .hero__stats { grid-template-columns: 1fr 1fr; } }
.hero__stats > div { padding: 4px 0; }
.hero__stats b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--brand);
}
.hero__stats span { font-size: .85rem; color: var(--muted); }

/* floating UI mock in hero — deep navy card for contrast */
.hero__art { position: relative; }
.mock {
  background: var(--brand-deep);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -30px rgba(23,27,61,.5);
  overflow: hidden;
}
.mock__bar {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mock__bar::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: #35C97F;
}
.mock__bar span {
  font-family: var(--font-head);
  font-size: .78rem;
  letter-spacing: .06em;
  color: #9AA3D6;
  text-transform: uppercase;
}
.mock__body { padding: 22px; display: grid; gap: 14px; }
.mock__row {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 14px 16px;
}
@media (max-width: 480px) { .mock__row { flex-wrap: wrap; } .mock__row-meta { order: 4; } }
.mock__status { width: 10px; height: 10px; border-radius: 50%; flex: 0 0 auto; }
.mock__status--ok { background: #35C97F; box-shadow: 0 0 0 4px rgba(53,201,127,.2); }
.mock__row-name { font-size: .92rem; color: #DEE3FA; font-weight: 500; flex: 1; min-width: 0; overflow-wrap: anywhere; }
.mock__row-meta { font-size: .78rem; color: #8F98CC; font-family: var(--font-head); }
.mock__tag {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 4px 12px;
  border-radius: 999px;
}
.mock__tag--ok { background: rgba(53,201,127,.16); color: #5BE0A0; }
.mock__tag--info { background: rgba(122,150,235,.2); color: #A8BCFF; }

.mock__float {
  position: absolute;
  right: -18px;
  bottom: -34px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 980px) { .mock__float { right: 8px; bottom: -26px; } }
.mock__float-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad-btn);
  display: flex; align-items: center; justify-content: center;
}
.mock__float-icon svg { width: 22px; height: 22px; }
.mock__float b { display: block; color: var(--heading); font-family: var(--font-head); font-size: .95rem; letter-spacing: -.01em; }
.mock__float small { color: var(--muted); font-size: .78rem; }

/* ---------- Urgency banner ---------- */
.urgency {
  background: linear-gradient(180deg, #FFF9F0, #FFF4E2);
  border-top: 1px solid var(--amber-line);
  border-bottom: 1px solid var(--amber-line);
  padding: 44px 0;
}
.urgency__inner {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}
.urgency__icon { flex: 0 0 auto; width: 48px; height: 48px; }
.urgency__text { flex: 1 1 420px; }
.urgency__text strong { color: var(--heading); display: block; font-size: 1.12rem; margin-bottom: 6px; font-family: var(--font-head); letter-spacing: -.01em; }
.urgency__text p { font-size: .98rem; }
.urgency .btn { flex: 0 0 auto; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; }
/* icon sits inline with the heading, not floating above it */
.card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.card__head h3 { margin-bottom: 0; }
.card__icon {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.card__icon svg { width: 20px; height: 20px; stroke: #fff; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 22px; }
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 34px;
  box-shadow: var(--shadow);
}
@media (max-width: 640px) { .step { grid-template-columns: 1fr; gap: 14px; padding: 26px 22px; } }
.step__num {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--grad-btn);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -10px rgba(62,71,149,.55);
}
.step__free .step__num { background: var(--green); box-shadow: 0 10px 24px -10px rgba(27,138,84,.5); }
.step h3 { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.step h3 .price {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--brand);
  background: #ECEFFB;
  border-radius: 999px;
  padding: 4px 14px;
  white-space: nowrap;
}
.step p { max-width: 740px; }
.step .credit-note { margin-top: 10px; font-weight: 600; color: var(--heading); font-size: .95rem; }

/* difficulty-tier price rows (implementation) */
.step-tiers {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.step-tier {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--bg-soft);
  font-size: .92rem;
}
.step-tier + .step-tier { border-top: 1px solid var(--line); }
.step-tier__lv {
  flex: 0 0 auto;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad-btn);
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
}
.step-tier__name { flex: 1 1 auto; color: var(--body); }
.step-tier__price {
  flex: 0 0 auto;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .step-tier { flex-wrap: wrap; gap: 8px 12px; }
  .step-tier__name { flex-basis: 100%; order: 3; }
}

/* ---------- Proof strip — signature client-results card ----------
   Echoes the logo: a descending circuit band crosses the card, with
   trace lines and node pads drawn into the background. */
.proof {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 60px 56px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-deep));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.proof::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(118deg, transparent 48%, rgba(122,150,235,.12) 48%, rgba(122,150,235,.12) 68%, transparent 68%),
    radial-gradient(40rem 20rem at 90% -20%, rgba(74,127,224,.28), transparent 60%);
  pointer-events: none;
}
.proof::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 460px; height: 340px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="460" height="340" fill="none"><g stroke="%23AEB9FF" stroke-opacity=".38" stroke-width="2"><path d="M40 60 H150 L180 90 H296"/><path d="M60 130 H180 L210 160 H356"/><path d="M30 210 H120 L160 250 H256"/><path d="M304 90 L344 60 H426"/><path d="M364 160 L404 200 H450"/></g><g fill="%23AEB9FF" fill-opacity=".45"><circle cx="40" cy="60" r="4"/><rect x="296" y="86" width="8" height="8"/><circle cx="60" cy="130" r="4"/><rect x="356" y="156" width="8" height="8"/><circle cx="30" cy="210" r="4"/><rect x="256" y="246" width="8" height="8"/><circle cx="430" cy="60" r="4"/><circle cx="450" cy="200" r="4"/></g></svg>') no-repeat top right;
  pointer-events: none;
}
@media (max-width: 900px) { .proof::after { display: none; } }
.proof > * { position: relative; z-index: 1; }
.proof__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: #C3CCF5;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 20px;
}
.proof__label::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #35C97F;
  box-shadow: 0 0 0 4px rgba(53,201,127,.18);
}
.proof h2 { color: #fff; margin-bottom: 36px; max-width: 680px; }
.proof__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 36px; }
@media (max-width: 720px) { .proof__stats { grid-template-columns: 1fr; } .proof { padding: 40px 28px; } }
.proof__stat {
  position: relative;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 24px 26px;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.proof__stat::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(201,214,255,.55);
}
.proof__stat .num {
  font-family: var(--font-head);
  font-size: 2.9rem; font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
  color: #C9D6FF;
}
.proof__stat .num--words { font-size: clamp(1.5rem, 2.3vw, 1.95rem); line-height: 1.2; }
.proof__stat .label { color: #B9C1E8; font-size: .95rem; margin-top: 8px; }
.proof p { color: #B9C1E8; }

/* ---------- Pricing tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
table.pricing { width: 100%; border-collapse: collapse; min-width: 640px; font-size: .96rem; }
table.pricing th, table.pricing td { padding: 17px 20px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; font-variant-numeric: tabular-nums; }
table.pricing thead th { background: var(--bg-soft); font-family: var(--font-head); font-size: .9rem; color: var(--heading); letter-spacing: -.01em; }
table.pricing tbody tr:last-child td { border-bottom: none; }
table.pricing td:first-child { font-weight: 600; color: var(--heading); white-space: nowrap; }
table.pricing .highlight { background: #EFF3FE; }
table.pricing .price-big { font-family: var(--font-head); font-weight: 700; color: var(--brand); font-size: 1.06rem; white-space: nowrap; }

.badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  background: var(--grad-btn);
  color: #fff;
  vertical-align: middle;
  margin-left: 8px;
}
.badge--green { background: var(--green); }

.ticks { list-style: none; margin-top: 26px; }
.ticks li { padding-left: 32px; position: relative; margin-bottom: 11px; }
.ticks li::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-bg) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%231B8A54" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/12px no-repeat;
}

ul.checklist { list-style: none; }
ul.checklist li { padding-left: 32px; position: relative; margin-bottom: 13px; }
ul.checklist li strong { color: var(--heading); }
ul.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 5px;
  width: 20px; height: 20px;
  border-radius: 7px;
  background: #ECEFFB url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%233E4795" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/12px no-repeat;
}

/* ---------- Offer blocks (services page) ---------- */
.offer {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  margin-bottom: 34px;
  overflow: hidden;
}
.offer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
}
@media (max-width: 640px) { .offer { padding: 30px 22px; } }
.offer__meta {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 20px;
}
.pill {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  background: #ECEFFB;
  color: var(--brand);
}
.pill--green { background: var(--green-bg); color: var(--green); }
.pill--amber { background: var(--amber-bg); color: var(--amber); }
.offer h2 { margin-bottom: 16px; }
.offer .btn-row { margin-top: 28px; }
.offer .fine { font-size: .875rem; color: var(--muted); margin-top: 20px; }
.offer strong { color: var(--heading); }

/* ---------- FAQ ---------- */
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: rgba(62,71,149,.35); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 56px 22px 26px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -.01em;
  color: var(--heading);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brand);
}
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 26px 24px; }

/* ---------- CTA band (deep navy) ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 76px 48px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-deep));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(38rem 20rem at 50% -30%, rgba(74,127,224,.4), transparent 65%),
    radial-gradient(26rem 14rem at 15% 130%, rgba(255,255,255,.06), transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
@media (max-width: 640px) { .cta-band { padding: 52px 24px; } }
.cta-band h2 { color: #fff; }
.cta-band .grad-text { color: #C9D6FF; }
.cta-band p { color: #B9C1E8; max-width: 580px; margin: 18px auto 34px; }
.cta-band .btn-row { justify-content: center; }
.cta-band .alt { margin-top: 24px; font-size: .95rem; color: #8F98CC; }
.cta-band .alt a { color: #fff; text-decoration: underline; }

/* ---------- About (text + logo art) ---------- */
.about {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) { .about { grid-template-columns: 1fr; gap: 44px; } }
.about__text p { max-width: 620px; }

.about__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.about__art::before {
  /* soft brand disc */
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, #EDF1FC, #E0E7F9 65%, #D5DEF6);
  box-shadow: inset 0 2px 18px rgba(62,71,149,.08), 0 30px 60px -30px rgba(62,71,149,.35);
}
.about__art::after {
  /* orbit ring */
  content: "";
  position: absolute;
  width: 470px; height: 470px;
  border-radius: 50%;
  border: 1.5px dashed rgba(62,71,149,.28);
  animation: about-orbit 60s linear infinite;
}
@keyframes about-orbit { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .about__art::after { animation: none; } }
.about__art img {
  position: relative;
  z-index: 1;
  width: 250px;
  filter: drop-shadow(0 24px 32px rgba(30,35,80,.3));
}
@media (max-width: 560px) {
  .about__art { min-height: 300px; }
  .about__art::before { width: 280px; height: 280px; }
  .about__art::after { width: 345px; height: 345px; }
  .about__art img { width: 185px; }
}

/* ---------- AI Executive as a Service ---------- */
.aieaas {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) { .aieaas { grid-template-columns: 1fr; gap: 40px; } }
.aieaas__text p { max-width: 560px; }

.exec-card {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.exec-card__head {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 16px 28px;
}
.exec-role {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 28px;
}
.exec-role + .exec-role { border-top: 1px dashed var(--line); }
.exec-role__icon {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad-btn);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -8px rgba(62,71,149,.5);
}
.exec-role__icon svg { width: 21px; height: 21px; }
.exec-role b {
  display: block;
  font-family: var(--font-head);
  color: var(--heading);
  letter-spacing: -.01em;
  margin-bottom: 2px;
}
.exec-role p { font-size: .92rem; }
.exec-card__foot {
  padding: 18px 28px;
  background: linear-gradient(120deg, #F0F3FC, #F5F7FE);
  border-top: 1px solid var(--line);
  font-size: .95rem;
  color: var(--body-strong);
}
.exec-card__foot strong { color: var(--brand); font-family: var(--font-head); }

/* ---------- Meet band (light two-column contact card) ---------- */
.meet-band {
  position: relative;
  display: flex;
  align-items: center;
  gap: 56px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 64px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.meet-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(32rem 16rem at 100% 0%, rgba(74,127,224,.1), transparent 60%);
  pointer-events: none;
}
.meet-band > * { position: relative; }
.meet-band__text { flex: 1 1 auto; }
.meet-band__text h2 { margin-bottom: 16px; }
.meet-band__text p { max-width: 560px; }
.meet-band__action {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
@media (max-width: 860px) {
  .meet-band { flex-direction: column; align-items: flex-start; gap: 28px; padding: 40px 28px; }
}

/* ---------- Footer (deep navy) ---------- */
.site-footer {
  background: var(--brand-deep);
  color: #B9C1E8;
  padding: 72px 0 40px;
  font-size: .95rem;
}
.site-footer a { color: #DEE3FA; }
.site-footer a:hover { color: #fff; }
.site-footer a.btn--light { color: var(--brand-deep); }
.site-footer a.btn--light:hover { color: var(--brand-deep); }
/* statement footer: one big close, one action, one inline link row */
.footer__statement {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px 56px;
  align-items: center;
  padding-bottom: 52px;
}
@media (max-width: 820px) { .footer__statement { grid-template-columns: 1fr; } }
.footer__statement img.footer__brand-lockup { height: 120px; width: auto; }
.footer__statement h2 { color: #fff; max-width: 620px; margin-bottom: 20px; }
.footer__statement p { color: #B9C1E8; max-width: 560px; margin-bottom: 26px; }
.footer__links {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 28px;
  list-style: none;
  font-size: .95rem;
}
.footer__legal {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: .85rem; color: #8F98CC;
}

/* ---------- Assessment ---------- */
.assess-wrap { max-width: 780px; margin: 0 auto; }
.assess-progress {
  height: 8px;
  background: #E4E7F2;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 38px;
}
.assess-progress__bar {
  height: 100%;
  width: 0;
  background: var(--grad);
  border-radius: 99px;
  transition: width .3s ease;
}
.assess-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 640px) { .assess-card { padding: 30px 22px; } }
.assess-card .q-count {
  font-family: var(--font-head);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 16px;
}
.assess-card h2 { font-size: 1.5rem; margin-bottom: 12px; }
.assess-card .q-why { font-size: .95rem; color: var(--muted); margin-bottom: 30px; }
.assess-options { display: grid; gap: 12px; }
.assess-options button {
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: left;
  padding: 17px 22px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  color: var(--heading);
  font-weight: 500;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.assess-options button:hover {
  border-color: var(--brand);
  background: #F3F5FD;
  transform: translateX(3px);
}
.assess-options button.selected {
  border-color: var(--brand);
  background: #EFF3FE;
  box-shadow: inset 0 0 0 1px var(--brand);
}
.assess-back {
  margin-top: 24px;
  background: none; border: none;
  color: var(--muted);
  font-size: .9rem;
  cursor: pointer;
  padding: 4px;
}
.assess-back:hover { color: var(--brand); }

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 24px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.result-badge .dot { width: 13px; height: 13px; border-radius: 50%; }
.result--red   { background: var(--red-bg);   color: var(--red); }
.result--red .dot { background: var(--red); box-shadow: 0 0 0 4px rgba(192,52,52,.15); }
.result--amber { background: var(--amber-bg); color: var(--amber); }
.result--amber .dot { background: #D97706; box-shadow: 0 0 0 4px rgba(217,119,6,.15); }
.result--green { background: var(--green-bg); color: var(--green); }
.result--green .dot { background: var(--green); box-shadow: 0 0 0 4px rgba(27,138,84,.15); }

.result-fixes { margin: 30px 0; }
.result-fixes h3 { margin-bottom: 16px; }
.result-fixes ol { padding-left: 0; list-style: none; counter-reset: fix; }
.result-fixes li {
  counter-increment: fix;
  position: relative;
  padding: 16px 18px 16px 60px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  font-size: .98rem;
}
.result-fixes li::before {
  content: counter(fix);
  position: absolute; left: 16px; top: 16px;
  width: 30px; height: 30px;
  border-radius: 10px;
  background: var(--grad-btn);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
}

.email-capture {
  margin-top: 32px;
  padding: 26px;
  border: 1px solid #D5DBF3;
  border-radius: var(--radius);
  background: #F0F3FC;
}
.email-capture p { font-size: .95rem; margin-bottom: 16px; color: var(--body-strong); }
.email-capture strong { color: var(--heading); }

/* ---------- Articles / hub ---------- */
.article-card { display: flex; flex-direction: column; }
.article-card .tag {
  font-family: var(--font-head);
  font-size: .74rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.article-card h3 { margin-bottom: 10px; }
.article-card h3 a { color: var(--heading); }
.article-card h3 a:hover { color: var(--brand); text-decoration: none; }
.article-card .meta { margin-top: auto; padding-top: 20px; font-size: .85rem; color: var(--muted); }

.prose { max-width: 780px; margin: 0 auto; }
.prose h1 { margin-bottom: 20px; font-size: clamp(2rem, 4vw, 2.9rem); }
.prose .article-meta { color: var(--muted); font-size: .95rem; margin-bottom: 44px; }
.prose h2 { margin: 48px 0 18px; font-size: 1.55rem; }
.prose h3 { margin: 34px 0 12px; }
.prose ul, .prose ol { margin: 16px 0 16px 24px; }
.prose li { margin-bottom: 9px; }
.prose strong { color: var(--heading); }
.prose blockquote {
  margin: 28px 0;
  padding: 20px 26px;
  border-left: 3px solid var(--brand);
  background: var(--bg-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--body-strong);
}
.prose .callout {
  margin: 36px 0;
  padding: 28px;
  border-radius: var(--radius);
  background: #F0F3FC;
  border: 1px solid #D5DBF3;
}
.prose .callout strong { color: var(--heading); }
.prose table { width: 100%; border-collapse: collapse; margin: 26px 0; font-size: .95rem; display: block; overflow-x: auto; }
.prose th, .prose td { border: 1px solid var(--line); padding: 13px 15px; text-align: left; }
.prose th { background: var(--bg-soft); font-family: var(--font-head); font-size: .88rem; color: var(--heading); }

/* ---------- Page hero (inner pages, light) ---------- */
.page-hero {
  position: relative;
  background: var(--bg-soft);
  padding: 92px 0 84px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(44rem 24rem at 80% -30%, rgba(74,127,224,.14), transparent 62%),
    radial-gradient(30rem 18rem at 5% 130%, rgba(62,71,149,.08), transparent 60%);
  pointer-events: none;
}
.page-hero > .container { position: relative; }
.page-hero h1 { max-width: 820px; }
.page-hero p.lead { margin-top: 22px; font-size: 1.18rem; max-width: 660px; }
.page-hero .eyebrow { color: var(--brand); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.urgency--boxed {
  border-radius: 14px;
  border: 1px solid var(--amber-line);
}
.urgency--boxed .urgency__inner { padding: 0 24px; }

/* ---------- Misc ---------- */
.note-muted { font-size: .875rem; color: var(--muted); }
.center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 36px; }
.mb-4 { margin-bottom: 36px; }

::selection { background: var(--brand); color: #fff; }

/* ============================================================
   Design-pass additions (hallmark audit): structural breaks
   ============================================================ */

/* full-bleed proof band — the one edge-to-edge moment on the home page */
.proof--bleed {
  border-radius: 0;
  border-left: none;
  border-right: none;
  box-shadow: none;
  padding: 76px 0 84px;
}
.proof--bleed > .container { position: relative; z-index: 1; }
@media (max-width: 720px) { .proof--bleed { padding: 56px 0; } }

/* FAQ as a split: sticky heading left, questions right */
.faq-wrap {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 24px 64px;
  align-items: start;
}
.faq-wrap .section-head { position: sticky; top: 110px; margin-bottom: 0; }
@media (max-width: 860px) {
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-wrap .section-head { position: static; margin-bottom: 8px; }
}

/* section rhythm — not every seam is 80px */
section.roomy { padding: 108px 0; }

/* ============================================================
   Blog — index grid + article typography
   ============================================================ */
.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 760px) { .post-grid { grid-template-columns: 1fr; } }
.post-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  transition: transform .18s var(--ease-out, ease), box-shadow .18s ease, border-color .18s ease;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); text-decoration: none; }
.post-card__cat, .post__cat {
  align-self: flex-start;
  font-family: var(--font-head);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand);
  background: #ECEFFB;
  border-radius: 999px;
  padding: 4px 12px;
}
.post-card h2 { font-size: 1.25rem; line-height: 1.25; color: var(--heading); }
.post-card p { font-size: .96rem; color: var(--body); margin: 0; }
.post-card__meta { margin-top: auto; font-family: var(--font-head); font-size: .8rem; color: var(--muted); }

/* article */
.post { padding: 64px 0 80px; }
.post__head { margin-bottom: 40px; }
.post__back { font-family: var(--font-head); font-size: .9rem; font-weight: 600; color: var(--muted); }
.post__back:hover { color: var(--brand); text-decoration: none; }
.post__head .post__cat { display: inline-block; margin: 18px 0 16px; }
.post__head h1 { font-size: clamp(2rem, 4vw, 3rem); }
.post__meta { margin-top: 16px; font-family: var(--font-head); font-size: .9rem; color: var(--muted); }
.post__body > p { font-size: 1.08rem; margin-bottom: 1.1em; }
.post__body h2 { font-size: 1.55rem; margin: 1.8em 0 .5em; }
.post__body .post__list { margin: 0 0 1.3em; padding-left: 1.3em; display: grid; gap: 8px; }
.post__body .post__list li { font-size: 1.04rem; }
.post__body a { color: var(--brand); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.post__body strong { color: var(--heading); }

.post__takeaways {
  margin: 40px 0;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 26px 30px;
}
.post__takeaways h2 { font-size: 1.15rem; margin: 0 0 14px; letter-spacing: .01em; }
.post__takeaways ul { margin: 0; padding-left: 1.2em; display: grid; gap: 9px; }
.post__takeaways li { font-size: 1rem; color: var(--body-strong); }

.post__faq { margin-top: 48px; }
.post__faq h2 { font-size: 1.55rem; margin-bottom: 14px; }

.post__cta {
  margin-top: 56px;
  text-align: center;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-deep));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.post__cta h2 { color: #fff; margin-bottom: 12px; }
.post__cta p { color: #B9C1E8; max-width: 520px; margin: 0 auto 26px; }
.post__cta .btn-row { justify-content: center; }
@media (max-width: 560px) { .post__cta { padding: 40px 22px; } }

/* Booking (Cal.com intro call) */
.booking {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 44px;
  align-items: start;
}
.booking__intro h2 { font-size: 1.6rem; margin: 10px 0 14px; }
.booking__intro p { color: var(--body); max-width: 42ch; }
.booking__alt { margin-top: 18px; font-size: 0.95rem; color: var(--muted); }
.cal-embed {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 40px 32px;
  text-align: center;
}
.cal-embed__lead { font-weight: 600; color: var(--body-strong); margin-bottom: 20px; }
.cal-embed__note { margin-top: 16px; font-size: 0.85rem; color: var(--muted); }
#my-cal-inline { width: 100%; min-height: 630px; overflow: auto; }
.cal-embed:has(#my-cal-inline) { padding: 10px; }
@media (max-width: 860px) {
  .booking { grid-template-columns: 1fr; gap: 26px; }
  .cal-embed { padding: 32px 20px; }
}
