/* ── Nactore design system (shared across all pages) ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #FDFBF7;
  --cream-2: #F6F3EC;
  --ink: #262219;
  --ink-2: #3A3426;
  --olive: #2B2A26;
  --olive-2: #3A382F;
  --lime: #F7C948;
  --lime-hover: #ECC13B;
  --lime-soft: #FDF3D0;
  --lime-deep: #8A6A00;
  --gold: #F5A623;
  --text: #2E2A20;
  --muted: #6E6857;
  --faint: #A09884;
  --line: #E7E3D9;
  --line-2: #DAD5C8;
  --card: #FFFFFF;
  --on-olive: #EDEBE2;
  --on-olive-muted: #ADA894;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 2px 4px rgba(33,43,20,0.03), 0 14px 34px -16px rgba(33,43,20,0.16);
  --shadow-sm: 0 1px 2px rgba(33,43,20,0.04), 0 8px 20px -12px rgba(33,43,20,0.14);
  --font: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--cream); color: var(--text); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-size: 16px; line-height: 1.5; }
body.is-locked { overflow: hidden; }
::selection { background: var(--lime); color: var(--ink); }
a { color: inherit; }
img { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 860px; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 0.2px; color: var(--lime-deep); background: var(--lime-soft); padding: 6px 13px; border-radius: 999px; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime-deep); }

/* ── Buttons ────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--font); font-weight: 700; text-decoration: none; border: 1.5px solid transparent; border-radius: 11px; cursor: pointer; transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s, box-shadow 0.15s; }
.btn svg { width: 17px; height: 17px; }
.btn--lg { font-size: 15.5px; padding: 14px 26px; }
.btn--md { font-size: 14.5px; padding: 11px 20px; }
.btn--sm { font-size: 14px; padding: 9px 18px; }
.btn--lime { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.btn--lime:hover { background: var(--lime-hover); border-color: var(--lime-hover); transform: translateY(-1px); }
.btn--ink { background: var(--ink); color: var(--cream); border-color: var(--ink); box-shadow: 0 12px 30px -16px rgba(33,43,20,0.5); }
.btn--ink:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); background: #fff; }
.btn--on-olive { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn--on-olive:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ── Nav ────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(253,251,247,0.85); backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.logo__mark { width: 30px; height: 30px; display: block; }
.logo__text { font-weight: 800; font-size: 20px; letter-spacing: -0.5px; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__link { font-size: 15px; font-weight: 600; color: var(--text); text-decoration: none; transition: color 0.15s; }
.nav__link:hover, .nav__link.is-active { color: var(--ink); }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__login { font-size: 15px; font-weight: 600; color: var(--ink); text-decoration: none; }
.nav__login:hover { color: var(--lime-deep); }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--ink); }
.mobile-menu { display: none; border-bottom: 1px solid var(--line); background: var(--cream); }
.mobile-menu.is-open { display: block; }
.mobile-menu a, .mobile-menu button { display: block; width: 100%; text-align: left; padding: 14px 28px; font-size: 15px; font-weight: 600; color: var(--text); text-decoration: none; border: none; border-top: 1px solid var(--line); background: none; cursor: pointer; font-family: var(--font); }
.mobile-menu a:first-child { border-top: none; }

/* ── Washed hero backdrop (home + interior) ──── */
.has-wash { position: relative; overflow: hidden; }
.has-wash::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(60% 70% at 88% 8%, rgba(247,201,72,0.28), transparent 60%), radial-gradient(55% 60% at 6% 12%, rgba(180,205,235,0.30), transparent 55%); pointer-events: none; }
.has-wash > .container { position: relative; z-index: 1; }

/* ── Home hero ──────────────────────────────── */
.hero { padding: 66px 0 84px; }
.hero__grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: 56px; align-items: center; }
.hero__heading { font-size: clamp(44px, 6vw, 76px); font-weight: 800; line-height: 0.98; letter-spacing: -0.03em; color: var(--ink); margin: 22px 0 22px; }
.hero__sub { font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 500px; margin-bottom: 30px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero__reassure { margin-top: 20px; font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero__reassure svg { width: 16px; height: 16px; color: var(--lime-deep); }

/* ── Interior page hero ─────────────────────── */
.page-hero { padding: 58px 0 44px; }
.page-hero__inner { max-width: 720px; }
.page-hero h1 { font-size: clamp(38px, 5.2vw, 62px); font-weight: 800; line-height: 1.0; letter-spacing: -0.03em; color: var(--ink); margin: 18px 0 18px; }
.page-hero .lead { font-size: 18.5px; line-height: 1.6; color: var(--muted); max-width: 620px; margin-bottom: 26px; }
.page-hero .lead b { color: var(--ink); font-weight: 700; }
.page-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Console + mock cards ───────────────────── */
.console { background: var(--olive); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.06); }
.console__bar { display: flex; align-items: center; gap: 10px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.09); margin-bottom: 16px; }
.console__leaf { width: 22px; height: 22px; display: grid; place-items: center; }
.console__title { font-family: var(--mono); font-size: 12px; color: var(--on-olive-muted); flex: 1; }
.console__live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 11px; color: var(--lime); }
.console__live .d { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(247,201,72,0.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(247,201,72,0.5);} 70%{ box-shadow: 0 0 0 8px rgba(247,201,72,0);} 100%{ box-shadow:0 0 0 0 rgba(247,201,72,0);} }
.wk { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 12px; background: rgba(255,255,255,0.04); margin-bottom: 8px; }
.wk__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); flex-shrink: 0; }
.wk__dot--soft { background: rgba(247,201,72,0.35); }
.wk__name { font-size: 14px; font-weight: 600; color: var(--on-olive); flex: 1; }
.wk__tag { font-family: var(--mono); font-size: 11px; color: var(--on-olive-muted); }
.console__chart { margin-top: 12px; background: rgba(255,255,255,0.04); border-radius: 12px; padding: 14px 14px 6px; }
.console__chart-h { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; color: var(--on-olive-muted); margin-bottom: 8px; }
.console__foot { margin-top: 14px; font-family: var(--mono); font-size: 11.5px; color: var(--on-olive-muted); display: flex; align-items: center; gap: 7px; }
.console__foot .d { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }

.mock { background: var(--olive); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.06); min-height: 300px; display: flex; flex-direction: column; }
.mock__bar { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; }
.mock__bar .leaf { width: 20px; height: 20px; display: grid; place-items: center; }
.mock__bar .t { font-family: var(--mono); font-size: 12px; color: var(--on-olive-muted); flex: 1; }
.mrow { display: flex; align-items: center; gap: 11px; padding: 11px 13px; border-radius: 11px; background: rgba(255,255,255,0.045); margin-bottom: 9px; }
.mrow .mdot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); flex-shrink: 0; }
.mrow .mdot--soft { background: rgba(247,201,72,0.4); }
.mrow .mname { font-size: 13.5px; font-weight: 600; color: var(--on-olive); flex: 1; }
.mrow .mtag { font-family: var(--mono); font-size: 11px; color: var(--on-olive-muted); }
.mrow .mtag--ok { color: var(--lime); }
.mpill { align-self: flex-start; margin-top: auto; font-family: var(--mono); font-size: 11.5px; color: var(--ink); background: var(--lime); padding: 6px 12px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
.mpill .d { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }
.mchip { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 12px; color: var(--on-olive-muted); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); padding: 9px 13px; border-radius: 10px; }
.mchip svg { width: 14px; height: 14px; color: var(--on-olive-muted); }
.mans { background: rgba(255,255,255,0.045); border-radius: 12px; padding: 14px; margin-top: 10px; }
.mans__h { font-family: var(--mono); font-size: 11px; color: var(--on-olive-muted); margin-bottom: 8px; }
.mans__t { font-size: 13.5px; color: var(--on-olive); line-height: 1.5; }
.mans__t .cite { color: var(--lime); font-weight: 600; }
.mterm { font-family: var(--mono); font-size: 12.5px; color: var(--on-olive); background: rgba(0,0,0,0.18); border-radius: 12px; padding: 15px; line-height: 1.9; }
.mterm .ok { color: var(--lime); }
.mterm .mut { color: var(--on-olive-muted); }

/* ── Stats ──────────────────────────────────── */
.stats { padding: 26px 0 8px; }
.stats__title { text-align: center; font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 34px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px 24px; text-align: center; box-shadow: var(--shadow-sm); }
.stat__num { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 1; margin-bottom: 8px; }
.stat__num .u { font-size: 20px; font-weight: 700; color: var(--lime-deep); }
.stat__label { font-size: 13.5px; color: var(--muted); line-height: 1.4; }
.stats__cities { text-align: center; margin-top: 30px; font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.5px; color: var(--faint); }
.stats__cities b { color: var(--muted); font-weight: 500; }

/* ── Generic section + heads ────────────────── */
.section { padding: 68px 0; }
.section--alt { background: var(--cream-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-title { font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 1.05; margin: 16px 0 14px; }
.section-title.sm { font-size: clamp(26px, 3.2vw, 36px); }
.section-sub { font-size: 17px; line-height: 1.65; color: var(--muted); }
.section-sub b { color: var(--ink); font-weight: 700; }

/* ── Why intro (centered) ───────────────────── */
.why { padding: 84px 0 20px; position: relative; }
.why__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.why__title { font-size: clamp(34px, 4.4vw, 52px); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 20px; }
.why__text { font-size: 17.5px; line-height: 1.65; color: var(--muted); }
.why__text b { color: var(--ink); font-weight: 700; }
.why__squiggle { position: absolute; right: 8%; top: 62%; width: 90px; color: var(--ink); display: none; }
@media (min-width: 1080px) { .why__squiggle { display: block; } }

/* ── Feature rows ───────────────────────────── */
.features { padding: 40px 0 30px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 40px 0; }
.frow__num { font-family: var(--mono); font-size: 13px; color: var(--lime-deep); font-weight: 500; margin-bottom: 14px; }
.frow__title { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 16px; }
.frow__desc { font-size: 16.5px; line-height: 1.65; color: var(--muted); margin-bottom: 22px; }
.frow__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.frow__tags span { font-size: 13px; font-weight: 600; color: var(--lime-deep); background: var(--lime-soft); padding: 5px 12px; border-radius: 999px; }
.frow__link { display: inline-flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 700; color: var(--ink); text-decoration: none; background: none; border: none; cursor: pointer; font-family: var(--font); padding: 0; transition: gap 0.15s; }
.frow__link:hover { gap: 11px; color: var(--lime-deep); }
.frow__link svg { width: 16px; height: 16px; }

/* ── Cards / grids ──────────────────────────── */
.grid { display: grid; gap: 18px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); }
.card__ic { width: 44px; height: 44px; border-radius: 12px; background: var(--lime-soft); color: var(--lime-deep); display: grid; place-items: center; margin-bottom: 18px; }
.card__ic svg { width: 22px; height: 22px; }
.card__k { font-family: var(--mono); font-size: 12px; color: var(--lime-deep); margin-bottom: 10px; }
.card__title { font-size: 20px; font-weight: 700; letter-spacing: -0.3px; color: var(--ink); margin-bottom: 10px; }
.card__desc { font-size: 15px; line-height: 1.6; color: var(--muted); margin-bottom: 16px; }
.card__list { list-style: none; display: grid; gap: 9px; }
.card__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--text); line-height: 1.45; }
.card__list .tick { flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--lime-soft); color: var(--lime-deep); display: grid; place-items: center; margin-top: 1px; }
.card__list .tick svg { width: 11px; height: 11px; }
.card__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.card__tags span { font-size: 12px; font-weight: 600; color: var(--muted); border: 1px solid var(--line); padding: 4px 10px; border-radius: 999px; }

/* ── Process steps (build, ship, rank, grow) ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); position: relative; }
.step__n { font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--lime-deep); margin-bottom: 14px; }
.step__title { font-size: 21px; font-weight: 800; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.3px; }
.step__desc { font-size: 14.5px; line-height: 1.55; color: var(--muted); }

/* ── Compare / alternatives ─────────────────── */
.cmp { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cmp__col { border-radius: var(--radius); padding: 30px 30px 34px; }
.cmp__col--them { background: var(--card); border: 1px solid var(--line); }
.cmp__col--us { background: var(--olive); box-shadow: var(--shadow); }
.cmp__tag { font-size: 13px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; margin-bottom: 22px; display: flex; align-items: center; gap: 9px; }
.cmp__col--them .cmp__tag { color: var(--faint); }
.cmp__col--us .cmp__tag { color: var(--lime); }
.cmp__list { list-style: none; display: grid; gap: 15px; }
.cmp__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.5; }
.cmp__col--them li { color: var(--muted); }
.cmp__col--us li { color: var(--on-olive); }
.cmp__ic { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; margin-top: 1px; }
.cmp__col--them .cmp__ic { background: var(--cream-2); color: var(--faint); }
.cmp__col--us .cmp__ic { background: var(--lime); color: var(--ink); }
.cmp__ic svg { width: 12px; height: 12px; }

/* alternatives table (approach) */
.alts { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card); }
.alt-row { display: grid; grid-template-columns: 1.2fr 2fr; gap: 16px; padding: 22px 26px; border-top: 1px solid var(--line); align-items: start; }
.alt-row:first-child { border-top: none; }
.alt-row--us { background: var(--lime-soft); }
.alt-row__k { font-weight: 700; color: var(--ink); font-size: 16px; display: flex; align-items: center; gap: 9px; }
.alt-row__k .badge { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; background: var(--ink); color: var(--cream); padding: 3px 8px; border-radius: 999px; }
.alt-row__v { font-size: 15px; color: var(--muted); line-height: 1.55; }
.alt-row--us .alt-row__v { color: var(--text); }

/* ── FAQ (native details) ───────────────────── */
.faq { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; padding: 22px 4px; font-size: 18px; font-weight: 700; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 24px; font-weight: 500; color: var(--lime-deep); transition: transform 0.2s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 4px 24px; font-size: 15.5px; line-height: 1.65; color: var(--muted); max-width: 720px; }

/* ── Presence (map) ─────────────────────────── */
.presence__card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 44px 40px; box-shadow: var(--shadow-sm); }
.presence__header { text-align: center; margin-bottom: 30px; }
.presence__header p { font-size: 16px; color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.6; }
.map-wrap { position: relative; max-width: 780px; margin: 0 auto 34px; }
.map-svg { width: 100%; height: auto; display: block; }
.map-land { fill: #E4E7DA; }
.map-line { stroke: #BFC7AF; stroke-width: 1; stroke-dasharray: 4 3; fill: none; }
.map-marker__dot { fill: var(--ink); }
.map-marker__dot--hq { fill: var(--lime-deep); }
.map-marker__label { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500; fill: var(--ink); paint-order: stroke; stroke: var(--card); stroke-width: 3.5px; stroke-linejoin: round; }
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.loc-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 18px 20px; }
.loc-card__city { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.loc-card__country { font-family: var(--mono); font-size: 11px; letter-spacing: 0.4px; text-transform: uppercase; color: var(--lime-deep); margin-bottom: 10px; }
.loc-card__desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── Big CTA ────────────────────────────────── */
.cta { padding: 40px 0 84px; }
.cta__card { position: relative; overflow: hidden; background: var(--olive); border-radius: var(--radius); padding: 60px 56px; text-align: center; box-shadow: var(--shadow); }
.cta__card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 82% 0%, rgba(247,201,72,0.22), transparent 60%); pointer-events: none; }
.cta__inner { position: relative; z-index: 1; }
.cta__title { font-size: clamp(30px, 4vw, 48px); font-weight: 800; letter-spacing: -0.03em; color: #fff; line-height: 1.05; margin-bottom: 14px; }
.cta__sub { font-size: 16.5px; color: var(--on-olive-muted); margin-bottom: 30px; }
.cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────── */
.footer { border-top: 1px solid var(--line); padding: 48px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.footer__brand .logo { margin-bottom: 12px; }
.footer__tag { font-size: 14px; color: var(--muted); line-height: 1.55; max-width: 280px; }
.footer__col h4 { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--faint); margin-bottom: 14px; font-weight: 500; }
.footer__col a, .footer__col button { display: block; font-size: 14.5px; color: var(--text); text-decoration: none; margin-bottom: 10px; background: none; border: none; padding: 0; cursor: pointer; font-family: var(--font); text-align: left; font-weight: 500; }
.footer__col a:hover, .footer__col button:hover { color: var(--lime-deep); }
.footer__address { font-size: 12.5px; color: var(--muted); line-height: 1.6; font-style: normal; margin-top: 4px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); }
.footer__copy { font-size: 12.5px; color: var(--faint); }

/* ── FAB + drawer (injected on every page) ──── */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: inline-flex; align-items: center; gap: 9px; background: var(--lime); color: var(--ink); font-size: 15px; font-weight: 700; padding: 14px 22px; border: none; cursor: pointer; font-family: var(--font); border-radius: 999px; box-shadow: 0 16px 40px -12px rgba(33,43,20,0.4); opacity: 0; visibility: hidden; transform: translateY(16px); transition: opacity 0.25s, transform 0.25s, visibility 0.25s, background 0.15s; }
.fab.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.fab:hover { background: var(--lime-hover); }
.fab svg { width: 18px; height: 18px; }

.drawer-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(33,43,20,0.42); opacity: 0; visibility: hidden; transition: opacity 0.28s, visibility 0.28s; }
.drawer-overlay.is-open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 201; width: 100%; max-width: 456px; background: var(--cream); box-shadow: -30px 0 80px -30px rgba(33,43,20,0.4); transform: translateX(100%); transition: transform 0.34s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; overflow-y: auto; }
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; align-items: flex-start; justify-content: space-between; padding: 26px 30px 0; }
.drawer__title { font-size: 23px; font-weight: 800; letter-spacing: -0.3px; color: var(--ink); }
.drawer__sub { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.drawer__close { background: none; border: 1px solid var(--line-2); width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; cursor: pointer; color: var(--muted); transition: border-color 0.15s, color 0.15s; }
.drawer__close:hover { border-color: var(--ink); color: var(--ink); }
.drawer__close svg { width: 16px; height: 16px; }
.form { padding: 22px 30px 34px; }
.field { margin-bottom: 15px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.label .req { color: var(--lime-deep); margin-left: 2px; }
.input, .textarea { width: 100%; font-family: var(--font); font-size: 15px; color: var(--text); background: var(--card); border: 1.5px solid var(--line-2); border-radius: 10px; padding: 11px 13px; transition: border-color 0.15s, box-shadow 0.15s; }
.textarea { resize: vertical; min-height: 96px; line-height: 1.55; }
.input:focus, .textarea:focus { outline: none; border-color: var(--lime-deep); box-shadow: 0 0 0 3px rgba(138,106,0,0.12); }
.pills { display: flex; flex-wrap: wrap; gap: 7px; }
.pill { cursor: pointer; font-size: 13.5px; font-weight: 600; color: var(--muted); background: var(--card); border: 1.5px solid var(--line-2); padding: 8px 14px; border-radius: 999px; transition: all 0.15s; user-select: none; }
.pill:hover { color: var(--ink); border-color: var(--muted); }
.pill input { display: none; }
.pill.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.form__submit { width: 100%; margin-top: 6px; }
.form__note { font-size: 12px; color: var(--faint); margin-top: 12px; text-align: center; }
.alert { display: none; padding: 12px 14px; font-size: 14px; line-height: 1.5; margin-bottom: 16px; border-radius: 10px; }
.alert.is-visible { display: block; }
.alert--success { background: #E9F6E9; color: #1E6B2E; }
.alert--error { background: #FDECEC; color: #9B2C2C; }

/* ── Reveal ─────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .console__live .d { animation: none; } html { scroll-behavior: auto; } .drawer { transition: none; } }

/* ── Blog listing ───────────────────────────── */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); text-decoration: none; color: inherit; transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }
.post-card__cat { font-family: var(--mono); font-size: 11.5px; color: var(--lime-deep); margin-bottom: 12px; }
.post-card__title { font-size: 21px; font-weight: 800; letter-spacing: -0.3px; color: var(--ink); line-height: 1.15; margin-bottom: 10px; }
.post-card__excerpt { font-size: 14.5px; color: var(--muted); line-height: 1.6; flex-grow: 1; margin-bottom: 16px; }
.post-card__meta { font-family: var(--mono); font-size: 11.5px; color: var(--faint); display: flex; gap: 10px; align-items: center; }
.post-card--feat { grid-column: 1 / -1; background: var(--olive); border-color: rgba(255,255,255,0.06); }
.post-card--feat .post-card__cat { color: var(--lime); }
.post-card--feat .post-card__title { color: #fff; font-size: clamp(24px, 3vw, 34px); max-width: 22ch; }
.post-card--feat .post-card__excerpt { color: var(--on-olive-muted); font-size: 16px; max-width: 60ch; }
.post-card--feat .post-card__meta { color: var(--on-olive-muted); }

/* ── Article ────────────────────────────────── */
.article { padding: 12px 0 20px; }
.article__head { max-width: 760px; margin: 0 auto 8px; }
.article__crumb { font-family: var(--mono); font-size: 12px; color: var(--faint); margin-bottom: 18px; }
.article__crumb a { color: var(--lime-deep); text-decoration: none; }
.article__crumb a:hover { text-decoration: underline; }
.article__title { font-size: clamp(32px, 4.6vw, 52px); font-weight: 800; line-height: 1.04; letter-spacing: -0.03em; color: var(--ink); margin: 12px 0 18px; }
.article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-family: var(--mono); font-size: 13px; color: var(--muted); }
.article__meta .sep { color: var(--line-2); }
.prose { max-width: 720px; margin: 0 auto; font-size: 17.5px; line-height: 1.75; color: var(--text); }
.prose > p { margin: 0 0 22px; }
.prose h2 { font-size: clamp(24px, 3vw, 30px); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin: 44px 0 16px; line-height: 1.15; }
.prose h3 { font-size: 20px; font-weight: 700; color: var(--ink); margin: 32px 0 12px; }
.prose ul, .prose ol { margin: 0 0 22px; padding-left: 22px; }
.prose li { margin-bottom: 9px; }
.prose li::marker { color: var(--lime-deep); }
.prose a { color: var(--lime-deep); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose blockquote { margin: 26px 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--lime); font-size: 20px; line-height: 1.5; color: var(--ink); font-weight: 600; }
.prose .lead-p { font-size: 20px; line-height: 1.55; color: var(--muted); margin-bottom: 28px; }
.prose h2, .prose h3 { scroll-margin-top: 88px; }
.prose code { font-family: var(--mono); font-size: 0.88em; background: var(--cream-2); border: 1px solid var(--line); border-radius: 5px; padding: 1px 6px; }
.prose .table-wrap { overflow-x: auto; margin: 24px 0; }
.prose table { width: 100%; border-collapse: collapse; font-size: 15px; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; vertical-align: top; line-height: 1.5; }
.prose thead th { background: var(--cream-2); font-weight: 700; color: var(--ink); }
.prose tbody tr:nth-child(even) { background: rgba(33,43,20,0.02); }

/* Table of contents */
.toc { max-width: 720px; margin: 4px auto 34px; background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px 26px; }
.toc__h { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.6px; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }
.toc ol { list-style: none; counter-reset: toc; padding: 0; margin: 0; display: grid; gap: 9px; }
.toc li { counter-increment: toc; }
.toc > ol > li > a::before { content: counter(toc, decimal-leading-zero); font-family: var(--mono); color: var(--lime-deep); font-weight: 500; margin-right: 11px; }
.toc a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 15px; transition: color 0.15s; }
.toc a:hover { color: var(--lime-deep); }
.toc .toc-sub { list-style: none; padding: 8px 0 0 30px; display: grid; gap: 7px; }
.toc .toc-sub a { font-weight: 500; font-size: 14px; color: var(--muted); }
.toc .toc-sub a::before { content: "\2013"; color: var(--faint); margin-right: 9px; }

/* Pro-tip callout */
.callout { display: flex; gap: 15px; align-items: flex-start; max-width: 720px; margin: 30px auto; background: var(--lime-soft); border: 1px solid #F3E4B0; border-radius: var(--radius-sm); padding: 20px 22px; }
.callout__ic { flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px; background: var(--lime); color: var(--ink); display: grid; place-items: center; }
.callout__ic svg { width: 18px; height: 18px; }
.callout__k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.6px; text-transform: uppercase; color: var(--lime-deep); margin-bottom: 5px; }
.callout__body p { font-size: 15.5px; line-height: 1.6; color: var(--ink); margin: 0; }

/* Key takeaways */
.takeaways { max-width: 720px; margin: 40px auto; background: var(--olive); border-radius: var(--radius); padding: 30px 32px; }
.takeaways__h { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.3px; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.takeaways__h .d { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
.takeaways ul { list-style: none; display: grid; gap: 13px; padding: 0; margin: 0; }
.takeaways li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; line-height: 1.55; color: var(--on-olive); }
.takeaways li .tk { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--lime); color: var(--ink); display: grid; place-items: center; margin-top: 1px; }
.takeaways li .tk svg { width: 12px; height: 12px; }
.article__end { max-width: 720px; margin: 44px auto 0; padding-top: 28px; border-top: 1px solid var(--line); }
.article__end-card { background: var(--olive); border-radius: var(--radius); padding: 34px 32px; text-align: center; }
.article__end-card h3 { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -0.3px; margin-bottom: 8px; }
.article__end-card p { font-size: 15px; color: var(--on-olive-muted); margin-bottom: 22px; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 980px) {
  .post-grid { grid-template-columns: 1fr 1fr; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .frow { grid-template-columns: 1fr; gap: 30px; padding: 30px 0; }
  .frow__media { order: -1; }
  .cmp, .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .nav__links, .nav__login { display: none; }
  .nav__toggle { display: block; }
  .alt-row { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero { padding: 44px 0 56px; }
  .page-hero { padding: 40px 0 32px; }
  .why { padding: 60px 0 10px; }
  .section { padding: 52px 0; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .cta__card { padding: 44px 26px; }
  .presence__card { padding: 30px 20px; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions, .page-hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn, .page-hero__actions .btn { width: 100%; }
  .field--row { grid-template-columns: 1fr; gap: 0; }
  .fab { right: 14px; bottom: 14px; }
}
