/* ---------- palettes ---------- */
:root, html[data-theme="dark"] {
  --bg: #08090c;
  --band: #0b0c11;
  --surface: #101216;
  --surface-2: #0b0d11;
  --border: #1e2128;
  --border-2: #22252c;
  --text: #f5f6fa;
  --text-2: #dfe2ea;
  --text-3: #cdd1da;
  --muted: #a8acb8;
  --muted-2: #8f949f;
  --eyebrow: #6c707a;
  --accent: #8b8cf7;
  --accent-fg: #0b0c10;
  --accent-soft: #1a1c33;
  --accent-soft-fg: #c9caff;
  --accent-soft-border: #33365c;
  --plan-hi-bg: #0f1018;
  --plan-hi-border: #3b3e6b;
  --bar-dim: #4b4e78;
  --placeholder-a: #14161b;
  --placeholder-b: #1b1e25;
  --placeholder-chip: #0f1116;
  --placeholder-fg: #8a8f9c;
}
html[data-theme="light"] {
  --bg: #faf7f2;
  --band: #f0ece4;
  --surface: #ffffff;
  --surface-2: #faf7f2;
  --border: #ebe5da;
  --border-2: #ded6c9;
  --text: #15130f;
  --text-2: #3d3931;
  --text-3: #3d3931;
  --muted: #5a564e;
  --muted-2: #6b665c;
  --eyebrow: #a09889;
  --accent: #f2681c;
  --accent-fg: #ffffff;
  --accent-soft: #fdeee3;
  --accent-soft-fg: #f2681c;
  --accent-soft-border: #f9d3bb;
  --plan-hi-bg: #15130f;
  --plan-hi-border: #15130f;
  --bar-dim: #f2a06e;
  --placeholder-a: #efeae1;
  --placeholder-b: #e6dfd3;
  --placeholder-chip: #faf7f2;
  --placeholder-fg: #8b8478;
}
/* highlighted plan in light theme is dark, so its text flips */
html[data-theme="light"] .plan-hi {
  --text: #faf7f2; --text-3: #e6e0d6; --muted-2: #b5ada0; --accent: #ff8c47;
}
html[data-theme="light"] .plan-hi .btn-primary { background: var(--accent); color: var(--accent-fg); }

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font-body, Archivo, "Helvetica Neue", Helvetica, Arial, sans-serif);
  -webkit-font-smoothing: antialiased; line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
a:hover { opacity: .8; }
h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
.mono { font-family: var(--font-mono, "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace); }
h1, h2, h3, .display, .h2, .logo, .plan-price, .score-n { font-family: var(--font-heading, var(--font-body, Archivo, sans-serif)); }
.muted { color: var(--muted-2); }
.accent { color: var(--accent); }
.center { text-align: center; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding-left: 56px; padding-right: 56px; }
@media (max-width: 900px) { .container { padding-left: 22px; padding-right: 22px; } }

.eyebrow {
  font-family: var(--font-mono, "JetBrains Mono", ui-monospace, monospace); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--eyebrow);
}
.eyebrow.small { font-size: 11px; letter-spacing: .12em; }

.display { font-size: 70px; line-height: .96; font-weight: 800; letter-spacing: -.04em; }
.h2 { margin-top: 14px; font-size: 46px; line-height: 1.02; font-weight: 800; letter-spacing: -.035em; }
.sub { margin-top: 12px; font-size: 17px; color: var(--muted); max-width: 640px; }
.lede { font-size: 18px; line-height: 1.5; color: var(--muted); max-width: 480px; }
.lede.center { margin: 18px auto 0; max-width: 560px; }

@media (max-width: 900px) {
  .display { font-size: 44px; line-height: .98; letter-spacing: -.035em; }
  .h2 { margin-top: 8px; font-size: 32px; letter-spacing: -.03em; }
  .sub { font-size: 15px; margin-top: 8px; }
  .lede { font-size: 16px; }
}

/* ---------- buttons ---------- */
html[data-buttons="pill"] { --btn-radius: 999px; }
html[data-buttons="rounded"] { --btn-radius: 14px; }
html[data-buttons="square"] { --btn-radius: 3px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--btn-radius, 999px); font-weight: 700; white-space: nowrap; cursor: pointer;
  padding: 12px 22px; font-size: 14.5px; transition: transform .12s ease, opacity .12s ease;
}
.btn:hover { opacity: .92; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--accent-fg); }
.btn-soft { background: var(--accent-soft); color: var(--accent-soft-fg); }
.btn-outline { background: transparent; color: var(--text); box-shadow: inset 0 0 0 1.5px var(--text); }
.btn-outline:hover { box-shadow: inset 0 0 0 1.5px var(--accent); color: var(--accent); }
/* On the dark palette an outlined button is drawn in the accent, like the brand mockup */
html[data-theme="dark"] .btn-outline { color: var(--accent); box-shadow: inset 0 0 0 1.5px var(--accent); }
html[data-theme="dark"] .btn-outline:hover { background: var(--accent); color: var(--accent-fg); }
.btn-lg { padding: 17px 30px; font-size: 16px; }
.btn-xl { padding: 18px 34px; font-size: 17px; }
.btn-block { width: 100%; padding: 15px; font-size: 15px; }
.btn .arrow { font-weight: 500; }
.cta-note { font-size: 13.5px; color: var(--eyebrow); }
.text-link { display: inline-block; margin-top: 22px; font-size: 14px; font-weight: 700; color: var(--accent); }

/* ---------- logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 8px; font-size: 21px; font-weight: 700; letter-spacing: -.02em; }
.logo-img { height: 30px; width: auto; max-width: 200px; display: block; }
.footer .logo-img { height: 26px; }
html[data-logo="medium"] .logo-img { height: 48px; max-width: 260px; }
html[data-logo="medium"] .footer .logo-img { height: 40px; }
html[data-logo="large"] .logo-img { height: 72px; max-width: 320px; }
html[data-logo="large"] .footer .logo-img { height: 52px; }
@media (max-width: 900px) {
  .logo-img { height: 26px; }
  html[data-logo="medium"] .logo-img { height: 38px; }
  html[data-logo="large"] .logo-img { height: 52px; }
}
/* light-mode twins of images, and per-mode text colours */
html[data-theme="light"] .img-dark { display: none !important; }
html[data-theme="dark"] .img-light { display: none !important; }
html[data-theme="dark"] .mc { color: var(--c-dark); }
html[data-theme="light"] .mc { color: var(--c-light); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.logo-ring { width: var(--ring, 16px); height: var(--ring, 16px); border-radius: 50%; border: calc(var(--ring, 16px) / 4) solid var(--accent); flex: none; }
.logo-inline { display: flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 700; }

/* ---------- nav ---------- */
.nav { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; padding-bottom: 26px; position: relative; }
.nav-links { display: flex; gap: 34px; font-size: 14.5px; color: var(--muted); }
.nav-caps .nav-links a { text-transform: uppercase; font-size: 11.5px; letter-spacing: .12em; font-weight: 600; color: var(--text-2); }
.nav-caps .nav-cta, .nav-caps .nav-cta-mobile { text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }
.nav-cta-mobile { display: none; }
.nav-right { display: flex; align-items: center; gap: 18px; }
/* the lamp: dark until you click it, then it glows and the page fades to light */
.lights { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: 0; padding: 6px 8px; border-radius: 999px; color: var(--muted); font: inherit; font-size: 12.5px; cursor: pointer; transition: color .2s; }
.lights:hover { color: var(--text); }
.lights .lamp { flex: none; overflow: visible; }
.lights .lamp-glow { fill: var(--accent); opacity: 0; transition: opacity .3s; }
.lights[aria-pressed="true"] .lamp-glow { opacity: 1; filter: drop-shadow(0 0 6px var(--accent)); }
.lights[aria-pressed="true"] .lamp-line { color: var(--text); }
.lights:hover .lamp-glow { opacity: .35; }
.lights[aria-pressed="true"]:hover .lamp-glow { opacity: 1; }
.lights-label { white-space: nowrap; }
.nav-caps .lights-label { text-transform: uppercase; font-size: 11px; letter-spacing: .1em; font-weight: 600; }
html.lights-changing, html.lights-changing body, html.lights-changing * { transition: background-color .45s ease, color .45s ease, border-color .45s ease, box-shadow .45s ease !important; }
@media (prefers-reduced-motion: reduce) { html.lights-changing, html.lights-changing body, html.lights-changing * { transition: none !important; } }
.lights:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.burger { display: none; background: none; border: 0; padding: 6px; cursor: pointer; flex-direction: column; gap: 5px; }
.burger span { display: block; width: 18px; height: 2px; background: var(--text); transition: transform .2s ease; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav { padding-top: 14px; padding-bottom: 8px; }
  .logo { font-size: 19px; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-right { gap: 6px; }
  .lights { padding: 8px; }
  .lights-label { display: none; }
  .nav-links {
    display: none; position: absolute; left: 22px; right: 22px; top: 100%; z-index: 20;
    flex-direction: column; gap: 4px; padding: 10px; background: var(--surface);
    border: 1px solid var(--border); border-radius: 18px; box-shadow: 0 20px 50px rgba(0,0,0,.25);
    font-size: 16px; color: var(--text);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; border-radius: 12px; }
  .nav-links a:hover { background: var(--band); opacity: 1; }
  .nav-cta-mobile { display: inline-flex; margin-top: 6px; justify-content: center; }
}

/* ---------- hero ---------- */
.hero { padding-top: 44px; display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.cta-row.center { justify-content: center; }

/* "show the whole image": the box takes the image's own proportions instead of cropping */
.hero .hero-media.hero-fit-contain { height: auto; aspect-ratio: auto; max-height: none; background: transparent; }
.hero .hero-media.hero-fit-contain .hero-img { height: auto; object-fit: contain; }
.hero-side .hero-media.hero-fit-contain { align-self: center; }

/* wide image above the text */
.hero-stacked { grid-template-columns: 1fr; gap: 40px; align-items: start; }
.hero-stacked .hero-media { height: auto; aspect-ratio: 2.4 / 1; max-height: 480px; width: 100%; }
.hero-stacked .display { font-size: clamp(44px, 7.2vw, 96px); max-width: 16ch; }
.hero-stacked .lede { max-width: 560px; }
.hero-stacked .hero-copy { max-width: 900px; }

/* text only */
/* layout: artwork headline */
.hero-art { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 40px; align-items: center; padding-top: 48px; }
.hero-art .hero-copy { max-width: 720px; }
.hero-art .hero-art-img { display: block; width: 100%; max-width: 640px; height: auto; }
.hero-art .lede { margin-top: 26px; max-width: 480px; }
.hero-art .hero-side { justify-self: end; align-self: center; max-width: 360px; }
.hero-art .hero-side img { width: 100%; height: auto; display: block; }
.hero-side-empty { width: 300px; height: 200px; display: flex; align-items: center; justify-content: center; border: 1px dashed var(--border-2); border-radius: 18px; }
.hero-side-empty span { font-size: 11px; color: var(--placeholder-fg); }
.hero-text { grid-template-columns: 1fr; padding-top: 64px; }
.hero-text .display { font-size: clamp(44px, 7.2vw, 96px); max-width: 16ch; }
.hero-text .lede { max-width: 560px; }
.hero .display { margin-top: 18px; }
.hero .lede { margin-top: 22px; }
.cta-row { margin-top: 30px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-media { height: 400px; border-radius: 22px; overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-placeholder {
  height: 100%; display: flex; align-items: flex-end; padding: 18px; border-radius: inherit;
  background: repeating-linear-gradient(135deg, var(--placeholder-a) 0 10px, var(--placeholder-b) 10px 20px);
}
.hero-placeholder span { font-size: 11px; letter-spacing: .04em; color: var(--placeholder-fg); background: var(--placeholder-chip); padding: 7px 11px; border-radius: 7px; }

@media (max-width: 900px) {
  .hero { padding-top: 18px; grid-template-columns: 1fr; gap: 20px; }
  .hero .display { margin-top: 0; text-wrap: balance; }
  .hero .lede { margin-top: 16px; }
  .hero-media { height: 200px; border-radius: 20px; order: 2; }
  .hero-stacked { gap: 18px; }
  /* Banner layout on phones: never crop the sides. The image keeps its own shape at full width. */
  .hero-stacked .hero-media { order: -1; height: auto; aspect-ratio: auto; max-height: none; border-radius: 14px; }
  .hero-stacked .hero-media .hero-img { height: auto; }
  .hero-stacked .hero-placeholder { aspect-ratio: 16 / 9; }
  .hero-art { grid-template-columns: 1fr; padding-top: 28px; }
  .hero-art .hero-side { display: none; }
  .hero-art .hero-art-img { max-width: 100%; }
  .hero .hero-media.hero-fit-contain { height: auto; aspect-ratio: auto; }
  .hero-stacked .display, .hero-text .display { font-size: clamp(38px, 11vw, 48px); max-width: none; }
  .hero-text { padding-top: 24px; }
  .cta-row { margin-top: 20px; flex-direction: column; align-items: stretch; gap: 11px; }
  .cta-row .btn { width: 100%; }
  .cta-row .cta-note { text-align: center; font-size: 12px; }
  .hero-copy { display: contents; }
  .hero-copy .eyebrow { order: 0; }
  .hero-copy .display { order: 0; }
  .hero-copy .lede { order: 1; }
  .hero-copy .cta-row { order: 3; }
}

/* ---------- trusted ---------- */
.trusted { padding-top: 56px; }
.trusted-logos { margin-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 19px; font-weight: 700; color: var(--text-2); flex-wrap: wrap; }
.trusted-logo.mono { font-weight: 500; }
@media (max-width: 900px) {
  .trusted { padding-top: 26px; }
  .trusted-logos { margin-top: 12px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px 10px; font-size: 14px; }
}

/* ---------- services ---------- */
.services { padding-top: 80px; }
.pillars { margin-top: 34px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.pillar { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 26px; }
.pillar-n { width: 38px; height: 38px; border-radius: 11px; background: var(--accent-soft); color: var(--accent-soft-fg); font-size: 13px; display: flex; align-items: center; justify-content: center; }
.pillar-title { margin-top: 20px; font-size: 22px; font-weight: 700; letter-spacing: -.02em; }
.pillar-desc { margin-top: 8px; font-size: 14.5px; line-height: 1.45; color: var(--muted-2); }
.checks { margin-top: 18px; display: flex; flex-direction: column; gap: 9px; font-size: 14px; color: var(--text-3); }
.checks li { display: flex; gap: 9px; }
.checks .check { color: var(--accent); }
.checks.big { margin-top: 22px; gap: 12px; font-size: 16px; color: var(--text-2); }
.checks.plain { margin-top: 22px; gap: 10px; font-size: 15px; }
.checks.plain .check { color: inherit; }

@media (max-width: 1100px) { .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 900px) {
  .services { padding-top: 0; margin-top: 30px; padding-bottom: 26px; background: var(--band); }
  .services .eyebrow { padding-top: 26px; }
  .pillars { margin-top: 20px; display: block; background: var(--surface-2); border-radius: 18px; overflow: hidden; }
  .pillar { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border: 0; border-bottom: 1px solid var(--border); border-radius: 0; background: transparent; }
  .pillar:last-child { border-bottom: 0; }
  .pillar-n { width: 34px; height: 34px; border-radius: 10px; font-size: 12px; flex: none; }
  .pillar-body { flex: 1; min-width: 0; }
  .pillar-title { margin-top: 0; font-size: 16px; }
  .pillar-desc { margin-top: 3px; font-size: 13.5px; }
  .pillar .checks { margin-top: 8px; flex-direction: row; flex-wrap: wrap; gap: 4px 10px; font-size: 12.5px; color: var(--muted-2); }
  .pillar .checks li { gap: 5px; }
  .pillar .text-link { margin-top: 10px; font-size: 13.5px; }
}

/* ---------- process ---------- */
.process { padding-top: 84px; }
.steps { margin-top: 38px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.step-head { display: flex; align-items: center; gap: 14px; }
.step-n { width: 36px; height: 36px; flex: none; border-radius: 50%; background: var(--accent-soft); border: 1px solid var(--accent-soft-border); color: var(--accent-soft-fg); font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.step-rule { height: 1px; flex: 1; background: var(--border-2); }
.step-title { margin-top: 20px; font-size: 19px; font-weight: 700; }
.step-body { margin-top: 7px; font-size: 14.5px; line-height: 1.45; color: var(--muted-2); }

@media (max-width: 1100px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 900px) {
  .process { padding-top: 28px; }
  .steps { margin-top: 20px; grid-template-columns: 1fr; gap: 18px; }
  .step { display: grid; grid-template-columns: 30px 1fr; column-gap: 14px; }
  .step-head { grid-row: 1 / span 2; }
  .step-rule { display: none; }
  .step-n { width: 30px; height: 30px; font-size: 14px; background: var(--accent); color: var(--accent-fg); border: 0; }
  .step-title { margin-top: 0; font-size: 16px; }
  .step-body { margin-top: 3px; font-size: 13.5px; }
}

/* ---------- growth check ---------- */
.growth { padding-top: 84px; display: grid; grid-template-columns: 1fr .9fr; gap: 56px; align-items: center; }
.report { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.report-head { padding: 18px 22px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.report-meta { text-align: right; }
.report-title { font-size: 13px; font-weight: 700; }
.report-meta .mono { font-size: 11px; }
.report-body { padding: 24px 22px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 22px; }
.score { margin-top: 8px; display: flex; align-items: baseline; gap: 6px; }
.score-n { font-size: 52px; font-weight: 800; letter-spacing: -.04em; color: var(--accent); line-height: 1; }
.score-d { font-size: 15px; color: var(--eyebrow); }
.bar { margin-top: 14px; height: 6px; border-radius: 999px; background: var(--border); overflow: hidden; }
.bar.thin { margin: 0; height: 5px; flex: 1; }
.bar-fill { height: 100%; border-radius: 999px; background: var(--accent); }
.bar-fill.dim { background: var(--bar-dim); }
.score-rows { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.score-row { display: flex; align-items: center; gap: 10px; }
.score-label { width: 104px; font-size: 13px; color: var(--muted); flex: none; }
.score-row .mono { font-size: 12px; width: 24px; text-align: right; }
.report-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.report-card-title { font-size: 13px; font-weight: 700; color: var(--accent); }
.report-card-text { margin-top: 7px; margin-bottom: 22px; font-size: 14.5px; line-height: 1.45; color: var(--text-2); }
.recs { margin-top: 12px; display: flex; flex-direction: column; gap: 10px; }
.rec { display: flex; gap: 10px; align-items: center; font-size: 13.5px; color: var(--text-3); }
.rec-n { width: 22px; height: 22px; flex: none; border-radius: 50%; background: var(--accent-soft); color: var(--accent-soft-fg); font-size: 11px; display: flex; align-items: center; justify-content: center; }
.growth-copy .h2 { font-size: 44px; }
.growth-copy .btn { margin-top: 28px; }
.growth-copy .cta-note { margin-top: 12px; font-size: 13px; }

@media (max-width: 1000px) {
  .growth { grid-template-columns: 1fr; gap: 28px; padding-top: 44px; }
  .growth .report { order: 2; }
  .growth-copy .h2 { font-size: 32px; }
  .report-body { grid-template-columns: 1fr; }
  .growth-copy .btn { width: 100%; }
  .growth-copy .cta-note { text-align: center; }
}

/* ---------- pricing ---------- */
.pricing { padding-top: 84px; }
.plans { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.plan { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 32px; position: relative; display: flex; flex-direction: column; }
.plan-hi { background: var(--plan-hi-bg); border-color: var(--plan-hi-border); color: var(--text); }
.badge { position: absolute; top: 22px; right: 26px; background: var(--accent); color: var(--accent-fg); border-radius: var(--btn-radius, 999px); padding: 6px 13px; font-size: 12px; font-weight: 700; }
.plan-name { font-size: 20px; font-weight: 700; }
.plan-label { margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--accent); }
.plan-price { font-size: 52px; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.plan-suffix { font-size: 20px; font-weight: 500; color: var(--muted-2); letter-spacing: 0; }
.plan-body { margin-top: 10px; font-size: 15px; line-height: 1.45; color: var(--muted-2); }
.plan .checks { flex: 1; }
.plan .btn { margin-top: 28px; }

@media (max-width: 900px) {
  .pricing { padding-top: 30px; }
  .plans { margin-top: 18px; grid-template-columns: 1fr; gap: 14px; }
  .plan { padding: 20px; border-radius: 18px; }
  .plan-name { font-size: 17px; }
  .plan-price { font-size: 38px; }
  .plan-suffix { font-size: 16px; }
  .plan-body { font-size: 13.5px; }
  .checks.plain { margin-top: 14px; gap: 7px; font-size: 13.5px; }
  .plan .btn { margin-top: 18px; }
  .badge { top: 18px; right: 18px; }
}

/* ---------- faq ---------- */
.faq { padding-top: 84px; }
.faq-grid { margin-top: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.faq-item { border-top: 1px solid var(--border); padding: 20px 0; }
.faq-q { font-size: 18px; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq-q::-webkit-details-marker { display: none; }
.faq-plus { width: 20px; height: 20px; flex: none; position: relative; opacity: .6; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: currentColor; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.faq-plus::before { width: 12px; height: 2px; }
.faq-plus::after { width: 2px; height: 12px; transition: transform .15s ease; }
.faq-item[open] .faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a { margin-top: 8px; font-size: 15px; line-height: 1.5; color: var(--muted-2); }

@media (max-width: 900px) {
  .faq { padding-top: 30px; }
  .faq-grid { margin-top: 18px; grid-template-columns: 1fr; }
  .faq-item { padding: 16px 0; }
  .faq-q { font-size: 16px; }
  .faq-a { font-size: 14px; }
}

/* ---------- final cta ---------- */
.final { margin-top: 90px; padding: 88px 0; text-align: center; background: var(--band); border-top: 1px solid var(--border); }
.final .display { margin-top: 16px; font-size: 60px; line-height: 1; }
.final .btn { margin-top: 30px; }
.final .cta-note { margin-top: 12px; }

@media (max-width: 900px) {
  .final { margin-top: 32px; padding: 30px 0 0; text-align: left; border-top: 0; }
  .final .display { margin-top: 8px; font-size: 34px; }
  .final .lede.center { margin: 14px 0 0; text-align: left; font-size: 15px; }
  .final .btn { margin-top: 18px; width: 100%; }
  .final .cta-note { text-align: center; font-size: 12px; }
}

/* ---------- footer ---------- */
.footer { padding-top: 36px; padding-bottom: 44px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--border); }
.footer .logo { font-size: 18px; }
.footer-tag { display: none; }
.footer-links { display: flex; gap: 28px; font-size: 14px; color: var(--muted-2); flex-wrap: wrap; }
.footer-copy { font-size: 13px; color: var(--eyebrow); text-align: right; }
.footer-burger { display: none; }

@media (max-width: 900px) {
  /* Phone footer: big logo, a menu icon that opens the links, copyright centred underneath */
  .footer { background: var(--band); border-top: 1px solid var(--border-2); padding-top: 22px; padding-bottom: 22px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 14px 16px; }
  .footer .logo { font-size: 18px; }
  .footer .logo-img, html[data-logo="medium"] .footer .logo-img, html[data-logo="large"] .footer .logo-img { height: 64px; max-width: 70vw; }
  .footer-tag { display: none; }
  .footer-burger { display: flex; }
  .footer-links { display: none; grid-column: 1 / -1; flex-direction: column; gap: 0; font-size: 15px; color: var(--text-2); border-top: 1px solid var(--border-2); }
  .footer-links.open { display: flex; }
  .footer-links a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .footer-copy { grid-column: 1 / -1; text-align: center; font-size: 12px; padding-top: 4px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn { transition: none; } }

/* ---------- blog + articles ---------- */
.blog { padding-top: 44px; }
.tag-row { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 13px; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--border); color: var(--muted); }
.tag.active { background: var(--accent); border-color: var(--accent); color: var(--accent-fg); }
.post-grid { margin-top: 34px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.post-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.post-card:hover { opacity: 1; border-color: var(--accent-soft-border); }
.post-card-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.post-card-noimg { background: repeating-linear-gradient(135deg, var(--placeholder-a) 0 10px, var(--placeholder-b) 10px 20px); }
.post-card-body { padding: 20px 22px 24px; }
.post-meta { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--eyebrow); }
.post-meta a { color: var(--accent); }
.post-card-title { margin-top: 10px; font-size: 20px; font-weight: 700; letter-spacing: -.02em; line-height: 1.2; }
.post-card-excerpt { margin-top: 8px; font-size: 14.5px; line-height: 1.5; color: var(--muted-2); }

.article { padding-top: 44px; max-width: 760px; }
.article-title { margin-top: 12px; }
.article-lede { margin-top: 18px; max-width: none; }
.article-cover { margin-top: 28px; width: 100%; border-radius: 18px; }
.prose { margin-top: 32px; font-size: 17px; line-height: 1.65; color: var(--text-2); }
.prose h1, .prose h2, .prose h3, .prose h4 { color: var(--text); letter-spacing: -.02em; line-height: 1.2; margin: 1.6em 0 .5em; }
.prose h1 { font-size: 34px; } .prose h2 { font-size: 28px; } .prose h3 { font-size: 22px; } .prose h4 { font-size: 18px; }
.prose p, .prose ul, .prose ol, .prose blockquote, .prose pre, .prose table { margin: 0 0 1.1em; }
.prose ul, .prose ol { padding-left: 1.4em; list-style: revert; }
.prose li { margin: .3em 0; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text); }
.prose blockquote { border-left: 3px solid var(--accent); padding: .2em 0 .2em 1.1em; color: var(--muted); font-style: italic; }
.prose img { border-radius: 14px; margin: 1.4em 0; }
.prose hr { border: 0; border-top: 1px solid var(--border); margin: 2.4em 0; }
.prose code { font-family: var(--font-mono, ui-monospace, monospace); font-size: .88em; background: var(--surface); border: 1px solid var(--border); border-radius: 5px; padding: .1em .4em; }
.prose pre { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; overflow-x: auto; }
.prose pre code { border: 0; padding: 0; background: none; }
.prose table { width: 100%; border-collapse: collapse; font-size: 15px; display: block; overflow-x: auto; }
.prose th, .prose td { border: 1px solid var(--border); padding: 8px 12px; text-align: left; }
.prose th { color: var(--text); background: var(--surface); }
.article + .final { margin-top: 64px; }

@media (max-width: 900px) {
  .blog, .article { padding-top: 18px; }
  .post-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 20px; }
  .prose { font-size: 16px; margin-top: 24px; }
  .prose h1 { font-size: 28px; } .prose h2 { font-size: 24px; } .prose h3 { font-size: 20px; }
}

/* ---------- booking ---------- */
.slim-nav { display: flex; align-items: center; padding-top: 26px; padding-bottom: 10px; }
.slim-footer { padding: 30px 56px 40px; font-size: 13px; text-align: center; }
.book { padding-top: 24px; padding-bottom: 40px; min-height: calc(100vh - 220px); display: flex; align-items: flex-start; justify-content: center; }
.book-card { width: 100%; max-width: 1040px; margin-top: 16px; display: grid; grid-template-columns: 260px 1fr; background: var(--surface); border: 1px solid var(--border); border-radius: 22px; overflow: hidden; }
.book-info { padding: 30px 28px; border-right: 1px solid var(--border); background: var(--surface-2); }
.book-desc { margin-top: 10px; font-size: 14.5px; line-height: 1.5; color: var(--muted); }
.book-meeting { margin-top: 0; font-size: 26px; font-weight: 800; letter-spacing: -.03em; line-height: 1.1; }
.book-meta { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; font-size: 14.5px; color: var(--muted); }
.book-meta li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.4; }
.book-ico { color: var(--accent); flex: none; margin-top: 2px; }
.book-tz label { display: flex; flex-direction: column; gap: 6px; }
#book-tz-name { color: var(--text-2); }
.book-tz select, .book-field input, .book-field textarea { width: 100%; font: inherit; font-size: 14px; color: var(--text); background: var(--surface); border: 1px solid var(--border-2); border-radius: 10px; padding: 9px 11px; }
.book-tz select { max-width: 200px; }
.book-field input:focus, .book-field textarea:focus, .book-tz select:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.book-main { position: relative; min-height: 420px; }
.book-step { padding: 28px; }
.book-step[hidden] { display: none !important; }
#book-step-pick { display: grid; grid-template-columns: 1fr 200px; gap: 28px; }
.book-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.book-month { font-weight: 700; font-size: 16px; }
.book-nav { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border-2); background: transparent; color: var(--text); font-size: 20px; line-height: 1; cursor: pointer; }
.book-nav:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.book-nav:disabled { opacity: .3; cursor: default; }
.book-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; max-width: 440px; }
.book-wd { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--eyebrow); text-align: center; padding: 6px 0; }
.book-cell { aspect-ratio: 1; width: 100%; max-width: 52px; margin: 0 auto; border-radius: 50%; border: 0; background: transparent; color: var(--muted-2); font: inherit; font-size: 14.5px; cursor: default; }
.book-cell.is-blank { visibility: hidden; }
.book-cell.is-open { background: var(--accent-soft); color: var(--accent-soft-fg); font-weight: 700; cursor: pointer; }
.book-cell.is-open:hover { box-shadow: inset 0 0 0 2px var(--accent); }
.book-cell.is-selected, .book-cell.is-selected:hover { background: var(--accent); color: var(--accent-fg); }
.book-times { border-left: 1px solid var(--border); padding-left: 24px; display: flex; flex-direction: column; min-height: 0; }
.book-day { font-weight: 700; font-size: 15px; margin-bottom: 12px; scroll-margin-top: 16px; }
.book-slots { display: flex; flex-direction: column; gap: 8px; max-height: 380px; overflow-y: auto; padding-right: 4px; }
.book-slot { padding: 11px 12px; border-radius: var(--btn-radius, 12px); border: 1.5px solid var(--accent); background: transparent; color: var(--accent); font: inherit; font-weight: 700; font-size: 14px; cursor: pointer; transition: background .12s, color .12s; }
.book-slot:hover, .book-slot.is-selected { background: var(--accent); color: var(--accent-fg); }
.book-empty { font-size: 14px; color: var(--muted-2); }
.book-month-empty { margin-top: 14px; }
.book-form-title { font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin-top: -6px; }
.book-field-err { font-weight: 500; font-size: 13px; color: #f87171; }
.book-field .is-invalid { border-color: #f87171; }
/* keyboard focus you can actually see */
.book-cell:focus-visible, .book-slot:focus-visible, .book-nav:focus-visible, .book-back:focus-visible, .book-cancel-btn:focus-visible, .book .btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.book-tz select:focus-visible, .book-field input:focus-visible, .book-field textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
#book-loading { font-size: 15px; color: var(--muted); }
.book-form { max-width: 480px; display: flex; flex-direction: column; gap: 16px; scroll-margin-top: 12px; }
.book-back { align-self: flex-start; background: none; border: 0; color: var(--accent); font: inherit; font-weight: 700; cursor: pointer; padding: 0; }
.book-chosen { font-size: 16px; padding: 12px 14px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-soft-fg); }
.book-field { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 600; }
.book-field em { font-style: normal; font-weight: 400; color: var(--muted-2); }
.book-hp { position: absolute; left: -9999px; top: -9999px; }
.book-err { padding: 10px 14px; border-radius: 10px; background: #fee2e2; color: #991b1b; font-size: 14px; }
.book-form .btn { align-self: flex-start; }
.book-done { max-width: 560px; margin: 20px auto 0; text-align: center; }
.book-done-mark { width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%; background: var(--accent); color: var(--accent-fg); font-size: 26px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.book-done-mark.is-cancelled { background: var(--surface); color: var(--muted); border: 1px solid var(--border-2); }
.book-done .lede { margin: 16px auto 0; }
.book-summary { margin-top: 30px; text-align: left; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 6px 24px; }
.book-summary-row { display: grid; grid-template-columns: 70px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 15px; line-height: 1.45; }
.book-summary-row:last-child { border-bottom: 0; }
.book-summary-row span:first-child { color: var(--eyebrow); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; padding-top: 3px; }
.book-done .cta-row { justify-content: center; }
.book-sms { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--border); }
.book-sms-lead { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--eyebrow); margin-bottom: 12px; }
.book-sms-btn { display: inline-flex; align-items: center; gap: 10px; }
.book-sms-num { margin-top: 10px; font-size: 13px; }
.book-sms-num a { color: inherit; text-decoration: underline; }
.book-cancel { margin-top: 26px; font-size: 14px; }
.book-cancel-btn { background: none; border: 0; padding: 0; margin: 0; cursor: pointer; font: inherit; font-weight: 700; color: var(--accent); }
@media (max-width: 900px) {
  .slim-footer { padding: 24px 22px 32px; }
  .book { padding-top: 8px; padding-bottom: 32px; min-height: 0; }
  .book-card { grid-template-columns: 1fr; margin-top: 8px; border-radius: 18px; }
  .book-info { border-right: 0; border-bottom: 1px solid var(--border); padding: 18px 20px; }
  .book-desc { display: none; }
  .book-meta { margin-top: 10px; flex-direction: row; flex-wrap: wrap; gap: 8px 18px; font-size: 13.5px; }
  .book-meta li { align-items: center; }
  .book-tz { width: 100%; align-items: flex-start; }
  .book-tz .book-ico { margin-top: 3px; }
  .book-tz label { flex-direction: row; align-items: center; gap: 10px; flex-wrap: wrap; }
  #book-tz-name { font-size: 12.5px; }
  .book-tz select { max-width: 160px; padding: 6px 8px; font-size: 13px; }
  .book-meeting { font-size: 22px; }
  .book-step { padding: 20px; }
  #book-step-pick { grid-template-columns: 1fr; gap: 20px; }
  .book-times { border-left: 0; padding-left: 0; border-top: 1px solid var(--border); padding-top: 18px; }
  .book-slots { max-height: none; display: grid; grid-template-columns: repeat(2, 1fr); }
  .book-grid { gap: 4px; }
  .book-cell { font-size: 14px; }
  .book-main { min-height: 0; }
  .book-summary { padding: 4px 18px; }
  .book-summary-row { grid-template-columns: 60px 1fr; gap: 12px; }
  .book-form .btn { align-self: stretch; }
}
