/* =========================================================================
   Buyoutly website — "Zentro" light aesthetic.
   Light canvas, blue primary w/ glow, gradient blooms, dotted hero texture,
   soft rounded cards, pastel status pills, bold headlines w/ italic accent.
   Builds on ../styles.css design tokens.
========================================================================= */

:root {
  --bl: #2563eb;          /* primary */
  --bl-strong: #1d4ed8;
  --bl-soft: #eef4ff;
  --bl-2: #4f7cff;        /* gradient light partner */
  --bloom: #7aa2ff;       /* primary bloom */
  --grad: linear-gradient(135deg, #1e4fd6 0%, #2563eb 45%, #4f7cff 100%);
  --glow: rgba(37,99,235,0.55);
  --glow-strong: rgba(37,99,235,0.65);
  --btn-soft-border: #c7d2fe;
  --ink: #14141b;
  --ink-2: #3a3a44;
  --grayline: #eceef2;
  --soft: #f6f7fb;        /* soft gray surface */
  --lav: #f4f3ff;         /* lavender wash */
  --mint: #f1fbf5;        /* soft mint */
}

body { background: #fff; color: var(--ink); font-family: var(--font-body); }

a { color: var(--bl); }
a.plain { color: inherit; text-decoration: none; }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 120px 0; }
.rel { position: relative; }

/* Bands become soft tints rather than dark fields */
.band-stone { background: var(--soft); }
.band-wash-green { background: var(--mint); }
.band-wash-blue { background: var(--bl-soft); }
.band-lav { background: var(--lav); }
.band-dark { background: #0c1020; color: #fff; }
/* band-green / band-navy repurposed as primary gradient accent bands */
.band-green, .band-navy {
  background: var(--grad);
  color: #fff; position: relative; overflow: hidden;
}

/* ===== Design-system original: deep enterprise green + coral ===== */
.theme-deep {
  --bl: #003c33;
  --bl-strong: #002a24;
  --bl-soft: #edfce9;
  --bl-2: #0a5c4e;
  --bloom: #7fcbb8;
  --grad: linear-gradient(135deg, #002a24 0%, #003c33 50%, #0a5c4e 100%);
  --glow: rgba(0,60,51,0.5);
  --glow-strong: rgba(0,60,51,0.62);
  --btn-soft-border: #bfe6cf;
}

/* ---- Gradient blooms ---- */
.blooms { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.bloom { position: absolute; border-radius: 999px; filter: blur(70px); opacity: 0.55; }
.bloom-blue { width: 520px; height: 520px; background: radial-gradient(circle, var(--bloom), transparent 70%); }
.bloom-orange { width: 460px; height: 460px; background: radial-gradient(circle, #ffb59b, transparent 70%); }
.bloom-lav { width: 460px; height: 460px; background: radial-gradient(circle, var(--color-green-deep-2), transparent 70%); }

/* ---- Dotted halftone texture ---- */
.dots { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(20,20,40,0.07) 1px, transparent 1.4px);
  background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 42%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 60% 55% at 50% 42%, #000 0%, transparent 72%); }

/* ---- Type ---- */
.eyebrow {
  font-family: var(--font-mono); font-size: 13px; line-height: 1.4;
  letter-spacing: 0.24px; text-transform: uppercase; color: var(--color-slate); margin: 0;
}
.eyebrow.on-dark { color: rgba(255,255,255,0.82); }

/* Minimal borderless badge above heroes (icon + text, no container) */
.pill-badge {
  display: inline-flex; align-items: center; gap: 8px; align-self: center;
  padding: 0; background: transparent; border: none; box-shadow: none;
  font-size: 15px; font-weight: 600; letter-spacing: -0.2px; color: var(--ink); }
.pill-badge .mk { width: 20px; height: 20px; display: inline-flex; color: var(--ink); }
.pill-badge.on-dark { background: transparent; border: none; color: #fff; }
.pill-badge.on-dark .mk { color: #fff; }

.display { font-family: var(--font-display); font-weight: 600; margin: 0;
  font-size: clamp(46px, 6.6vw, 88px); line-height: 0.98; letter-spacing: -2.6px; }
.h1 { font-family: var(--font-display); font-weight: 600; margin: 0;
  font-size: clamp(36px, 5vw, 60px); line-height: 1.04; letter-spacing: -1.4px; }
.h2 { font-family: var(--font-display); font-weight: 600; margin: 0;
  font-size: clamp(30px, 3.6vw, 46px); line-height: 1.08; letter-spacing: -1px; }
.h3 { font-family: var(--font-display); font-weight: 600; margin: 0;
  font-size: 30px; line-height: 1.18; letter-spacing: -0.6px; }
.h4 { font-family: var(--font-display); font-weight: 600; margin: 0;
  font-size: 21px; line-height: 1.3; letter-spacing: -0.3px; }
/* italic blue accent inside headlines */
.accent { font-style: italic; color: var(--bl); }
.on-dark .accent, .accent.on-dark { color: #bfe6d6; }

.lead { font-size: 17px; line-height: 1.5; color: var(--color-slate); margin: 0; }
.lead.on-dark { color: rgba(255,255,255,0.85); }
.body { font-size: 16px; line-height: 1.6; margin: 0; }
.muted { color: var(--color-slate); }
.on-dark .muted, .muted.on-dark { color: rgba(255,255,255,0.72); }

/* ---- Grids ---- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.stack { display: flex; flex-direction: column; }
.row { display: flex; align-items: center; }
.wrap { flex-wrap: wrap; }
.gap-4 { gap: 4px; } .gap-6 { gap: 6px; } .gap-8 { gap: 8px; } .gap-10 { gap: 10px; }
.gap-12 { gap: 12px; } .gap-14 { gap: 14px; } .gap-16 { gap: 16px; } .gap-18 { gap: 18px; }
.gap-20 { gap: 20px; } .gap-24 { gap: 24px; } .gap-32 { gap: 32px; } .gap-40 { gap: 40px; }

/* ---- Buttons (site-level, replaces DS near-black pill) ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px; line-height: 1;
  border-radius: 12px; padding: 13px 22px; cursor: pointer; border: 1px solid transparent;
  text-decoration: none; white-space: nowrap; transition: var(--transition-hover), var(--transition-press), box-shadow var(--motion-base) var(--ease-out); }
.btn .arw { font-size: 15px; transform: translateY(0); }
.btn-lg { font-size: 16px; padding: 16px 28px; }
.btn-sm { font-size: 14px; padding: 12px 18px; }
.btn-primary { background: var(--bl); color: #fff; box-shadow: 0 10px 24px -8px var(--glow); }
.btn-primary:hover { background: var(--bl-strong); box-shadow: 0 14px 30px -8px var(--glow-strong); transform: translateY(-1px); }
.btn:active { transform: scale(var(--press-scale)); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--grayline); box-shadow: 0 1px 2px rgba(16,24,40,0.05); }
.btn-secondary:hover { border-color: var(--btn-soft-border); color: var(--bl); }
.btn-outline { background: transparent; color: var(--ink); border-color: #d7dae1; border-radius: 999px; padding: 9px 18px; font-weight: 500; }
.btn-outline:hover { border-color: var(--bl); color: var(--bl); }
.btn-outline.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn.on-dark.btn-primary { background: #fff; color: var(--bl); box-shadow: 0 10px 24px -8px rgba(0,0,0,0.3); }
.btn.on-dark.btn-primary:hover { background: #f2f5ff; }
.btn.on-dark.btn-secondary { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.35); box-shadow: none; }
.btn.on-dark.btn-secondary:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* ---- Cards ---- */
.card { background: #fff; border: 1px solid var(--grayline); border-radius: 20px;
  padding: 28px; box-shadow: 0 4px 24px rgba(16,24,40,0.05); }
.card-plain { background: #fff; border: 1px solid var(--grayline); border-radius: 20px; padding: 28px; }
.card-stone { background: var(--soft); border: 1px solid var(--grayline); border-radius: 20px; padding: 28px; }
.card-num { position: absolute; top: 24px; right: 28px; font-family: var(--font-mono);
  font-size: 13px; letter-spacing: 0.24px; color: var(--bl); }
.lift { box-shadow: 0 18px 50px -12px rgba(16,24,40,0.18); }

/* Hoverable card lift — uses DS motion tokens */
.card-hover { transition: var(--transition-lift); }
.card-hover:hover { transform: translateY(var(--lift-translate));
  box-shadow: 0 16px 40px -14px var(--glow); border-color: var(--brand-primary); }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(22px);
  transition: opacity 560ms var(--ease-out), transform 560ms var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
/* Staggered children — grids/rows reveal their items in sequence once .in hits */
.reveal.stagger.in > * { animation: ds-fade-up 520ms var(--ease-out) both; }
.reveal.stagger.in > *:nth-child(1) { animation-delay: 0ms; }
.reveal.stagger.in > *:nth-child(2) { animation-delay: 70ms; }
.reveal.stagger.in > *:nth-child(3) { animation-delay: 140ms; }
.reveal.stagger.in > *:nth-child(4) { animation-delay: 210ms; }
.reveal.stagger.in > *:nth-child(5) { animation-delay: 280ms; }
.reveal.stagger.in > *:nth-child(6) { animation-delay: 350ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.stagger.in > * { opacity: 1; transform: none; transition: none; animation: none; }
}
@media print {
  .reveal, .reveal.stagger.in > * { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ---- Report: exec summary callout + what-you'd-do-next sidebar ---- */
.exec-callout { background: var(--bl-soft); border: 1px solid var(--grayline); border-radius: 18px;
  padding: 32px; display: flex; flex-direction: column; gap: 22px; }
.exec-callout .k { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.28px;
  text-transform: uppercase; color: var(--bl); }
.exec-take { display: grid; grid-template-columns: 1fr; gap: 14px; }
.exec-take .row-t { display: grid; grid-template-columns: 132px 1fr; gap: 16px; align-items: start;
  padding-top: 14px; border-top: 1px solid var(--grayline); }
.report-split { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: start; }
.next-sidebar { position: sticky; top: 96px; background: var(--grad); color: #fff; border-radius: 18px;
  padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.next-sidebar .k { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.28px;
  text-transform: uppercase; color: rgba(255,255,255,0.82); }
.next-move { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start;
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.2); font-size: 14px; line-height: 1.45; }
.next-move .nn { font-family: var(--font-mono); font-size: 13px; color: rgba(255,255,255,0.7); }
.next-check { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.next-check li { display: flex; gap: 9px; font-size: 13.5px; line-height: 1.4; color: rgba(255,255,255,0.92); }
.next-check li::before { content: "✓"; color: #fff; flex-shrink: 0; }
@media (max-width: 860px) { .report-split { grid-template-columns: 1fr; } .next-sidebar { position: static; } .exec-take .row-t { grid-template-columns: 1fr; gap: 8px; } }

/* ---- Metric cards ---- */
.metric { display: flex; flex-direction: column; gap: 6px; }
.metric .val { font-family: var(--font-display); font-weight: 600; font-size: 38px; line-height: 1;
  letter-spacing: -1px; color: var(--ink); }
.metric .lbl { font-size: 14px; color: var(--color-slate); }
.preview .metric .val { font-size: 26px; letter-spacing: -0.6px; }
.on-dark .metric .val { color: #fff; }
.on-dark .metric .lbl { color: rgba(255,255,255,0.72); }

/* ---- Feature icon list (Zentro-style) ---- */
.feat-list { display: flex; flex-direction: column; }
.feat-item { display: grid; grid-template-columns: 28px 1fr; gap: 16px; align-items: start;
  padding: 20px 0; border-top: 1px solid var(--grayline); }
.feat-item:first-child { border-top: none; }
.feat-item .ic { width: 24px; height: 24px; color: var(--ink); }
.feat-item.dim .ic { color: var(--color-slate); }
.feat-item .ft { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.3px; color: var(--ink); }
.feat-item.dim .ft { color: var(--color-slate); }
.feat-item .fd { font-size: 14px; color: var(--color-slate); margin-top: 4px; line-height: 1.5; }

/* ---- Logo pills ---- */
.logo-pill { display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px 10px 12px;
  background: #fff; border: 1px solid var(--grayline); border-radius: 999px;
  box-shadow: 0 2px 8px rgba(16,24,40,0.04); font-size: 15px; font-weight: 500; color: var(--ink); }
.logo-pill .lm { width: 26px; height: 26px; border-radius: 999px; display: inline-flex;
  align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: 700; flex-shrink: 0; }

/* ---- Testimonial cards ---- */
.tcard { background: #fff; border: 1px solid var(--grayline); border-radius: 22px; padding: 28px;
  box-shadow: 0 6px 28px rgba(16,24,40,0.06); display: flex; flex-direction: column; gap: 18px; min-width: 340px; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .av { width: 44px; height: 44px; border-radius: 999px; background: var(--bl-soft);
  display: flex; align-items: center; justify-content: center; color: var(--bl); font-weight: 700; }
.tcard .q { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: 20px; line-height: 1.4; letter-spacing: -0.3px; color: var(--ink); }
.tcard .q .fade { color: var(--color-slate); }

/* ---- Status / signal badges (soft pastel pills) ---- */
.badge { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; border: 1px solid transparent; }
.badge .dot { width: 6px; height: 6px; border-radius: 999px; display: inline-block; }
.badge-high { background: #fff0ea; color: #c2410c; } .badge-high .dot { background: #ff7759; }
.badge-med { background: var(--bl-soft); color: var(--bl-strong); } .badge-med .dot { background: var(--bl); }
.badge-low { background: #f3f4f6; color: #6b7280; } .badge-low .dot { background: #9ca3af; }
.badge-pos { background: #e9f9ef; color: #12805c; } .badge-pos .dot { background: #16a06a; }

/* ---- Tables ---- */
.tbl-wrap { width: 100%; overflow-x: auto; border: 1px solid var(--grayline);
  border-radius: 18px; background: #fff; box-shadow: 0 4px 24px rgba(16,24,40,0.05); }
table.data { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 640px; }
table.data th { text-align: left; font-family: var(--font-body); font-weight: 600; font-size: 12px;
  letter-spacing: 0.2px; color: var(--color-slate); padding: 15px 18px;
  border-bottom: 1px solid var(--grayline); white-space: nowrap; background: var(--soft); }
table.data td { padding: 16px 18px; border-bottom: 1px solid var(--grayline); vertical-align: top; line-height: 1.45; color: var(--ink); }
table.data tr:last-child td { border-bottom: none; }
table.data td.strong { font-weight: 600; }

/* ---- Report layout ---- */
.report-shell { border: 1px solid var(--grayline); border-radius: 24px; overflow: hidden;
  background: #fff; box-shadow: 0 20px 60px -20px rgba(16,24,40,0.18); }
.report-head { background: var(--grad); color: #fff; padding: 40px; position: relative; }
.report-body { padding: 40px; display: flex; flex-direction: column; gap: 56px; }
.report-section { display: flex; flex-direction: column; gap: 20px; }
.report-fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px 32px; }
.report-field .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24px; text-transform: uppercase; color: rgba(255,255,255,0.72); margin-bottom: 4px; }
.report-field .v { font-size: 15px; color: #fff; }

/* ---- Timing board ---- */
.timing-board { display: grid; gap: 10px; }
.timing-row { display: grid; grid-template-columns: 170px 1fr auto; align-items: center; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--grayline); }
.timing-row:last-child { border-bottom: none; }
.timing-track { position: relative; height: 8px; border-radius: 999px; background: var(--soft); overflow: hidden; }
.timing-fill { position: absolute; inset: 0 auto 0 0; border-radius: 999px; }

/* ---- Lists ---- */
ul.check { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
ul.check li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.5; }
ul.check li::before { content: "✓"; color: var(--bl); font-weight: 700; flex-shrink: 0; }
ul.check.dash li::before { content: "—"; color: var(--color-coral); }
.on-dark ul.check li::before, ul.check.on-dark li::before { color: #fff; }
ul.ranked { list-style: none; margin: 0; padding: 0; counter-reset: r; display: flex; flex-direction: column; }
ul.ranked li { counter-increment: r; display: grid; grid-template-columns: 40px 1fr; gap: 16px;
  padding: 20px 0; border-top: 1px solid var(--grayline); align-items: baseline; }
ul.ranked li::before { content: counter(r); font-family: var(--font-mono); font-size: 14px; color: var(--bl); }

/* ---- Divider ---- */
.hr { height: 1px; background: var(--grayline); border: none; margin: 0; }
.hr-dark { height: 1px; background: rgba(255,255,255,0.2); border: none; margin: 0; }

/* ---- Nav ---- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.8);
  backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid rgba(236,238,242,0.9); }
.nav-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; height: 72px; gap: 20px; }
.nav-cta .btn { padding: 10px 16px; font-size: 14px; }
.nav-inner > .brand { justify-self: start; }
.nav-inner > .nav-links { justify-self: center; }
.nav-inner > .nav-cta { justify-self: end; }
.brand { font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -0.6px;
  color: var(--ink); text-decoration: none; display: inline-flex; align-items: center; gap: 9px; }
.brand-mark { display: inline-block; height: 26px; width: auto; }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: var(--ink-2); text-decoration: none; font-size: 15px; font-weight: 500; white-space: nowrap; transition: color var(--motion-fast) var(--ease-standard); }
.nav-links a:hover, .nav-links a.active { color: var(--bl); }

/* Hamburger toggle (hidden on desktop) — morphs to X when open */
.nav-toggle { display: none; justify-self: end; background: transparent; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 11px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px;
  transition: transform var(--motion-base) var(--ease-standard), opacity var(--motion-fast) var(--ease-standard); transform-origin: center; }
.nav-toggle.open { position: fixed; top: 14px; right: 16px; z-index: 130; }
.nav-toggle.open span { background: var(--ink); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Top-sheet mobile panel — the menu stays anchored to the top bar, dropping
   down as a full-width sheet instead of sliding in from the side. */
.mobile-menu { position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  background: #fff; box-shadow: 0 24px 48px -12px rgba(16,24,40,0.22); padding: 20px 24px 28px;
  border-bottom: 1px solid var(--grayline); border-radius: 0 0 20px 20px;
  max-height: calc(100vh - 24px); overflow-y: auto;
  display: flex; flex-direction: column; transform: translateY(-100%); visibility: hidden;
  transition: transform var(--motion-base) var(--ease-standard), visibility 0s linear var(--motion-base); }
.mobile-menu.open { transform: translateY(0); visibility: visible; transition: transform var(--motion-base) var(--ease-standard); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; height: 48px; margin-bottom: 12px; }
.mobile-links { display: flex; flex-direction: column; padding: 8px 0; }
.mobile-links a { color: var(--ink); text-decoration: none; font-size: 19px; font-weight: 500;
  padding: 14px 4px; border-bottom: 1px solid var(--grayline);
  transition: color var(--motion-fast) var(--ease-standard); }
.mobile-links a:hover, .mobile-links a.active { color: var(--bl); }
.mobile-menu-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.mobile-menu-cta .btn { width: 100%; justify-content: center; }
.mobile-scrim { position: fixed; inset: 0; z-index: 110; background: rgba(12,16,32,0.42);
  animation: ds-fade-up var(--motion-fast) var(--ease-out); }

/* Floating sticky CTA (appears on scroll past hero) */
.sticky-cta { position: fixed; left: 50%; bottom: 20px; z-index: 90;
  transform: translate(-50%, 140%); opacity: 0; pointer-events: none;
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.92); backdrop-filter: saturate(180%) blur(12px);
  border: 1px solid var(--grayline); border-radius: 999px; padding: 8px 8px 8px 22px;
  box-shadow: 0 12px 34px -10px rgba(16,24,40,0.28);
  visibility: hidden;
  transition: transform var(--motion-base) var(--ease-out), opacity var(--motion-base) var(--ease-out), visibility 0s linear var(--motion-base); }
.sticky-cta.show { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; visibility: visible; transition: transform var(--motion-base) var(--ease-out), opacity var(--motion-base) var(--ease-out); }
.sticky-cta-text { font-size: 14px; font-weight: 500; color: var(--ink); white-space: nowrap; }
@media (max-width: 560px) {
  .sticky-cta { left: 12px; right: 12px; bottom: 12px; transform: translateY(140%); justify-content: space-between; gap: 12px; padding: 8px 8px 8px 18px; }
  .sticky-cta.show { transform: translateY(0); }
  .sticky-cta-text { display: none; }
  .sticky-cta .btn { width: 100%; justify-content: center; }
}

/* ---- Footer ---- */
.footer { background: #0c1020; color: #fff; padding: 80px 0 40px; }
.footer a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; padding: 5px 0; display: inline-block; transition: color var(--motion-fast) var(--ease-standard); }
.footer a:hover { color: #fff; }

/* ---- Article (resources post) ---- */
.art-body { display: flex; flex-direction: column; gap: 22px; }
.art-body p { text-wrap: pretty; }
.art-ul, .art-ol { margin: 4px 0; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.art-ul li, .art-ol li { position: relative; padding-left: 30px; font-size: 17.5px; line-height: 1.6; color: #2b3a35; }
.art-ul li::before { content: ""; position: absolute; left: 6px; top: 12px; width: 7px; height: 7px; border-radius: 999px; background: var(--bl); }
.art-ol { counter-reset: an; }
.art-ol li { counter-increment: an; }
.art-ol li::before { content: counter(an); position: absolute; left: 0; top: 0; font-family: "Space Mono", monospace; font-size: 13px; color: var(--bl); }
.art-call { margin: 12px 0; padding: 20px 26px; background: var(--bl-soft); border-left: 3px solid var(--bl);
  border-radius: 12px; font-family: "Space Grotesk", sans-serif; font-weight: 500; font-size: 20px;
  line-height: 1.4; letter-spacing: -0.01em; color: var(--color-green-deep); }
.art-quote { margin: 12px 0; padding: 0 0 0 22px; border-left: 3px solid var(--grayline);
  font-family: "Space Grotesk", sans-serif; font-size: 22px; line-height: 1.4; color: var(--ink); font-style: normal; }
.art-quote cite { display: block; margin-top: 10px; font-family: "Inter", sans-serif; font-size: 14px; font-style: normal; color: #5b6b66; }
.art-cta { margin-top: 40px; padding: 28px; border: 1px solid var(--grayline); border-radius: 18px;
  background: #fff; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* Two-column splits that must collapse on mobile — inline grid columns
   can't respond to media queries, so this class carries the behavior. */
@media (max-width: 860px) {
  .split-2 { grid-template-columns: 1fr !important; }
  .unstick-mobile { position: static !important; }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
/* Keep the top bar as long as it physically fits: tighten it through the
   mid range, and only collapse to the menu below 840px. */
@media (min-width: 841px) and (max-width: 1080px) {
  .nav-inner { gap: 12px; }
  .nav-links { gap: 13px; }
  .nav-links a { font-size: 14px; }
  .nav-cta .btn { padding: 10px 12px; font-size: 13px; }
}
@media (max-width: 840px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto; }
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; } .section-lg { padding: 80px 0; }
  .timing-row { grid-template-columns: 130px 1fr; }
  .timing-row .badge { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 520px) { .grid-4 { grid-template-columns: 1fr; } }
