/* ==========================================================================
   ClaudeWork refinement layer (September 2026)
   Loaded after styles.css. Tightens the design system (tokens, type, buttons,
   cards, nav, footer) and adds the landing, audience, calculator, brief
   builder, blog reading, and sticky CTA components. Both themes supported.
   ========================================================================== */

:root {
  --bg: #f7f6f2;
  --bg-elev: #fbfaf7;
  --surface: #ffffff;
  --ink: #16161a;
  --ink-soft: #2f2f36;
  --muted: #6b6b75;
  --line: #e8e4db;
  --line-strong: #d6d0c3;
  --accent: #d4751c;
  --accent-ink: #b25f12;
  --accent-soft: #fdf1e0;
  --accent-glow: rgba(212, 117, 28, 0.16);
  --radius: 14px;
  --radius-lg: 20px;
  --font-display: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}
body.dark-mode {
  --bg: #09090b;
  --bg-elev: #0e0f12;
  --surface: #141518;
  --ink: #f4f4f5;
  --ink-soft: #d4d4d8;
  --muted: #a1a1aa;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --accent: #f5c451;
  --accent-ink: #ffd97a;
  --accent-soft: rgba(245, 196, 81, 0.10);
  --accent-glow: rgba(245, 196, 81, 0.22);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 2px 4px rgba(0, 0, 0, 0.5), 0 24px 60px rgba(0, 0, 0, 0.55);
  background: var(--bg) !important;
  color: var(--ink) !important;
}
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, body.dark-mode h4,
body.dark-mode p, body.dark-mode li, body.dark-mode div, body.dark-mode span,
body.dark-mode strong, body.dark-mode label, body.dark-mode td, body.dark-mode th,
body.dark-mode summary, body.dark-mode dt, body.dark-mode dd { color: var(--ink); }
body.dark-mode .muted, body.dark-mode .small.muted { color: var(--muted) !important; }
body.dark-mode .nav { background: rgba(9, 9, 11, 0.72) !important; backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); }

/* ---------- type ---------- */
body { font-size: 15.5px; line-height: 1.6; letter-spacing: -0.005em; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.028em; }
h1 { font-weight: 800; }
h2 { font-weight: 750; font-size: clamp(26px, 3.2vw, 36px); line-height: 1.12; margin: 6px 0 10px; }
h3 { font-weight: 650; letter-spacing: -0.015em; }
.section-head p.muted { font-size: 16px; line-height: 1.6; }
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  padding: 5px 11px; border: 1px solid var(--line);
  background: var(--accent-soft); color: var(--accent-ink);
}
body.dark-mode .eyebrow { color: var(--accent) !important; border-color: rgba(245, 196, 81, 0.25); }

/* ---------- nav ---------- */
.nav {
  padding: 12px 28px;
  background: rgba(247, 246, 242, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-links a:not(.btn) { font-weight: 500; font-size: 14px; letter-spacing: -0.005em; }
.brand-text { letter-spacing: -0.03em; }
@media (max-width: 1180px) { .nav-search { display: none; } }

/* ---------- buttons ---------- */
.btn {
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn-lg { padding: 14px 26px; font-size: 15.5px; border-radius: 999px; }
.btn-primary {
  background: linear-gradient(180deg, var(--accent-ink), var(--accent));
  border-color: transparent;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 8px 22px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 12px 28px var(--accent-glow); }
body.dark-mode .btn-primary { background: linear-gradient(180deg, #ffd97a, #f0b83a); color: #1a1200 !important; }
body.dark-mode .btn-primary:hover { background: linear-gradient(180deg, #ffe08c, #f5c451); }
.btn-outline { background: transparent; border-color: var(--line-strong); }
.btn-outline:hover { background: var(--surface); border-color: var(--ink-soft); transform: translateY(-1px); }
body.dark-mode .btn-outline { background: rgba(255, 255, 255, 0.03); }
body.dark-mode .btn-outline:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.3); }

/* ---------- cards ---------- */
.card, .cat, .dev-card, .blog-card, .pricing-card, .flow-step, .faq-item, .trust-strip, .stat {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: none;
}
.card:hover, .cat:hover, .dev-card:hover, .blog-card:hover {
  border-color: rgba(212, 117, 28, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
body.dark-mode .card:hover, body.dark-mode .cat:hover, body.dark-mode .dev-card:hover, body.dark-mode .blog-card:hover { border-color: rgba(245, 196, 81, 0.45); }
.cat-icon {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 12px; background: var(--accent-soft); font-size: 22px; margin-bottom: 14px;
}
.tag { border-radius: 999px; }

/* ---------- footer ---------- */
.footer { background: var(--bg-elev); border-top: 1px solid var(--line); padding: 48px 32px 32px; }
.footer-grid {
  max-width: 1120px; margin: 0 auto 28px;
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 28px;
}
.footer-col h4 { margin: 0 0 12px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.footer-col a { display: block; color: var(--ink-soft); font-size: 14px; padding: 4px 0; text-decoration: none; }
.footer-col a:hover { color: var(--accent-ink); }
body.dark-mode .footer-col a { color: var(--ink-soft) !important; text-decoration: none; }
body.dark-mode .footer-col a:hover { color: var(--accent) !important; }
.footer-blurb { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 10px 0 0; max-width: 320px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Landing page (.home)
   ========================================================================== */
.home section { margin: 0 0 88px; }
.home .section-head.center { max-width: 760px; }

.home-hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center;
  padding: 44px 0 28px; margin-bottom: 40px; text-align: left; position: relative;
}
.home-hero .hero-glow { left: 20%; top: -180px; width: 900px; height: 520px; opacity: .9; }
.home-hero h1 { font-size: clamp(38px, 5.4vw, 66px); line-height: 1.02; margin: 14px 0 18px; max-width: none; letter-spacing: -0.035em; }
.home-hero .lede { margin: 0 0 26px; font-size: 18px; max-width: 560px; }
.home-hero .cta { justify-content: flex-start; margin-bottom: 14px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 6px 0 0; padding: 0; list-style: none; }
.hero-proof li { display: flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--muted); }
.hero-proof svg { width: 16px; height: 16px; color: var(--accent); flex: 0 0 auto; }
.home-hero .hero-video { margin: 0; width: 100%; border-radius: 18px; box-shadow: 0 30px 80px rgba(0, 0, 0, .45), 0 0 0 1px var(--line); }
.hero-stats { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.hero-stat { padding: 10px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); min-width: 120px; }
.hero-stat strong { display: block; font-size: 20px; letter-spacing: -0.03em; }
.hero-stat span { font-size: 12px; color: var(--muted); }
.hero-legal { margin-top: 18px; font-size: 12px; opacity: .7; }
@media (max-width: 960px) {
  .home-hero { grid-template-columns: 1fr; gap: 26px; text-align: center; padding-top: 24px; }
  .home-hero .lede { margin-left: auto; margin-right: auto; }
  .home-hero .cta { justify-content: center; }
  .hero-proof, .hero-stats { justify-content: center; }
}

/* live activity strip */
.activity { margin: 0 0 72px; }
.activity-strip {
  position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 999px;
  background: var(--surface); padding: 10px 0; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.activity-track { display: flex; gap: 34px; width: max-content; animation: activity-scroll 48s linear infinite; padding: 0 20px; }
.activity-strip:hover .activity-track { animation-play-state: paused; }
.activity-item { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; font-size: 13.5px; color: var(--ink-soft); text-decoration: none; }
body.dark-mode .activity-item { color: var(--ink-soft) !important; text-decoration: none; }
.activity-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.activity-dot.done { background: #22c55e; box-shadow: 0 0 0 4px rgba(34, 197, 94, .18); }
.activity-dot.member { background: #60a5fa; box-shadow: 0 0 0 4px rgba(96, 165, 250, .18); }
.activity-item strong { font-weight: 600; }
.activity-item .muted { font-size: 12.5px; }
@keyframes activity-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .activity-track { animation: none; flex-wrap: wrap; width: auto; } }

/* audience cards */
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.audience {
  display: flex; flex-direction: column; gap: 10px; padding: 22px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--surface); color: var(--ink); text-decoration: none;
  transition: transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.audience:hover { transform: translateY(-3px); border-color: rgba(212, 117, 28, .45); box-shadow: var(--shadow); text-decoration: none; }
body.dark-mode .audience:hover { border-color: rgba(245, 196, 81, .45); }
.audience-icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-ink); }
body.dark-mode .audience-icon { color: var(--accent) !important; }
.audience-icon svg { width: 22px; height: 22px; }
.audience h3 { margin: 4px 0 0; font-size: 17px; }
.audience p { margin: 0; font-size: 14px; color: var(--muted); flex: 1; }
.audience-cta { font-size: 13.5px; font-weight: 600; color: var(--accent-ink); }
body.dark-mode .audience-cta { color: var(--accent) !important; }
@media (max-width: 960px) { .audience-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .audience-grid { grid-template-columns: 1fr; } }

/* fee calculator */
.calc { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); padding: 28px; }
.calc-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.calc-amount { font-size: 40px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.calc-amount small { font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: 0; margin-left: 8px; }
.calc input[type=range] { width: 100%; accent-color: var(--accent); margin: 6px 0 20px; }
.calc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.calc-card { padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-elev); }
.calc-card.us { border-color: rgba(212, 117, 28, .5); background: var(--accent-soft); }
body.dark-mode .calc-card.us { border-color: rgba(245, 196, 81, .5); }
.calc-card h4 { margin: 0 0 12px; font-size: 14px; display: flex; justify-content: space-between; align-items: center; }
.calc-card h4 span { font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--muted); }
.calc-row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 5px 0; border-top: 1px dashed var(--line); }
.calc-row:first-of-type { border-top: 0; }
.calc-row strong { font-variant-numeric: tabular-nums; }
.calc-row.take { font-size: 15px; padding-top: 10px; margin-top: 4px; border-top: 1px solid var(--line-strong); }
.calc-good { color: #16a34a; }
body.dark-mode .calc-good { color: #4ade80 !important; }
.calc-bad { color: #dc2626; }
body.dark-mode .calc-bad { color: #f87171 !important; }
.calc-foot { margin-top: 14px; font-size: 12.5px; }
@media (max-width: 760px) { .calc-grid { grid-template-columns: 1fr; } .calc-amount { font-size: 32px; } }

/* brief builder */
.brief { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); padding: 28px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; }
.brief h3 { margin: 0 0 6px; font-size: 15px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 18px; }
.chip {
  border: 1px solid var(--line-strong); background: transparent; color: var(--ink); border-radius: 999px;
  padding: 8px 14px; font-size: 13.5px; font-weight: 500; cursor: pointer; font-family: inherit;
  transition: all .15s var(--ease);
}
.chip:hover { border-color: var(--accent); }
.chip.on { background: var(--accent-soft); border-color: var(--accent); color: var(--accent-ink); }
body.dark-mode .chip { color: var(--ink) !important; }
body.dark-mode .chip.on { color: var(--accent) !important; }
.brief-out { border: 1px solid var(--line); border-radius: 14px; padding: 20px; background: var(--bg-elev); display: flex; flex-direction: column; gap: 10px; }
.brief-range { font-size: 30px; font-weight: 800; letter-spacing: -0.04em; }
.brief-out .muted { font-size: 13.5px; }
.brief-out .btn { align-self: flex-start; margin-top: 6px; }
@media (max-width: 860px) { .brief { grid-template-columns: 1fr; } }

/* flow polish */
.home .flow-step { position: relative; }
.home .flow-num { background: var(--accent-soft); color: var(--accent-ink); border: 1px solid var(--line); }
body.dark-mode .home .flow-num { color: var(--accent) !important; }

/* compact arcade promo */
.home .arcade-promo-card { border-radius: var(--radius-lg); }

/* two path cards (setup) */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.path { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.path h3 { margin: 0 0 8px; font-size: 20px; }
.path ul { margin: 0 0 16px; padding-left: 18px; color: var(--muted); font-size: 14.5px; }
.path li { margin: 4px 0; }
@media (max-width: 760px) { .paths { grid-template-columns: 1fr; } }

/* ==========================================================================
   Audience landing pages (/for/*)
   ========================================================================== */
.for-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding: 30px 0 40px; }
.for-hero h1 { font-size: clamp(34px, 4.6vw, 56px); line-height: 1.05; margin: 12px 0 14px; }
.for-hero .lede { margin: 0 0 22px; }
.for-visual { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; background: var(--surface); }
.for-visual h4 { margin: 0 0 12px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.for-visual ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.for-visual li { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg-elev); }
.for-visual li strong { white-space: nowrap; color: var(--accent-ink); }
body.dark-mode .for-visual li strong { color: var(--accent) !important; }
.for-section { margin: 0 0 72px; }
.for-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.for-card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.for-card h3 { margin: 0 0 6px; font-size: 16.5px; }
.for-card p { margin: 0; font-size: 14px; color: var(--muted); }
.for-card .price { display: inline-block; margin-top: 12px; font-size: 12.5px; font-weight: 700; color: var(--accent-ink); background: var(--accent-soft); padding: 4px 10px; border-radius: 999px; }
body.dark-mode .for-card .price { color: var(--accent) !important; }
.for-steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.for-step { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.for-step::before { counter-increment: step; content: counter(step); display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-ink); font-weight: 800; font-size: 13px; margin-bottom: 10px; }
.for-step h3 { margin: 0 0 4px; font-size: 15.5px; }
.for-step p { margin: 0; font-size: 13.5px; color: var(--muted); }
@media (max-width: 900px) { .for-hero { grid-template-columns: 1fr; } .for-grid, .for-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .for-grid, .for-steps { grid-template-columns: 1fr; } }

/* ==========================================================================
   Blog reading experience
   ========================================================================== */
.post-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-ink)); z-index: 60; transition: width .08s linear; }
.blog-article { max-width: 760px; margin: 0 auto; }
.blog-article-body { font-size: 17px; line-height: 1.75; }
.blog-article-body h2 { font-size: 26px; margin: 40px 0 12px; scroll-margin-top: 90px; }
.blog-article-body h3 { font-size: 20px; margin: 30px 0 10px; }
.blog-article-body p { margin: 0 0 18px; }
.blog-article-body li { margin: 6px 0; }
.blog-article-meta { display: flex; flex-wrap: wrap; gap: 6px 10px; align-items: center; font-size: 14px; }
.post-toc { border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; background: var(--surface); margin: 22px 0 28px; }
.post-toc summary { cursor: pointer; font-weight: 600; font-size: 14px; }
.post-toc ol { margin: 10px 0 0; padding-left: 20px; font-size: 14px; }
.post-toc li { margin: 4px 0; }
.post-cta { border: 1px solid rgba(212, 117, 28, .4); border-radius: 14px; padding: 20px 22px; background: var(--accent-soft); margin: 32px 0; display: flex; gap: 18px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
body.dark-mode .post-cta { border-color: rgba(245, 196, 81, .4); }
.post-cta strong { display: block; font-size: 16px; margin-bottom: 2px; }
.post-cta span { font-size: 14px; color: var(--muted); }
.blog-related { max-width: 760px; margin: 48px auto 0; padding-top: 24px; border-top: 1px solid var(--line); }
.blog-related h2 { font-size: 18px; margin: 0 0 14px; }
.blog-related a { display: block; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; text-decoration: none; color: var(--ink); }
.blog-related a:hover { border-color: var(--accent); text-decoration: none; }
.blog-related ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.blog-featured { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: center; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); margin: 0 0 28px; text-decoration: none; color: var(--ink); }
.blog-featured:hover { border-color: var(--accent); text-decoration: none; }
.blog-featured h2 { font-size: clamp(22px, 2.8vw, 30px); margin: 8px 0 10px; }
.blog-featured p { color: var(--muted); margin: 0 0 12px; }
.blog-featured-side { border: 1px solid var(--line); border-radius: 14px; padding: 18px; background: var(--bg-elev); font-size: 14px; }
.blog-featured-side h4 { margin: 0 0 10px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.blog-featured-side a { display: block; padding: 6px 0; color: var(--ink-soft); text-decoration: none; }
.blog-featured-side a:hover { color: var(--accent-ink); }
.blog-topics { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 22px; }
.blog-topics a { font-size: 13px; padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); text-decoration: none; background: var(--surface); }
.blog-topics a:hover, .blog-topics a.on { border-color: var(--accent); color: var(--accent-ink); text-decoration: none; }
.read-time { font-size: 12.5px; color: var(--muted); }
@media (max-width: 800px) { .blog-featured { grid-template-columns: 1fr; } }

/* ==========================================================================
   Sticky CTA (logged-out visitors, after they scroll)
   ========================================================================== */
.sticky-cta {
  position: fixed; left: 50%; bottom: 18px; transform: translate(-50%, 140%); z-index: 55;
  display: flex; align-items: center; gap: 14px; padding: 10px 10px 10px 18px;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: 999px;
  box-shadow: var(--shadow-lg); max-width: calc(100vw - 32px); transition: transform .35s var(--ease);
}
.sticky-cta.show { transform: translate(-50%, 0); }
.sticky-cta strong { font-size: 14px; white-space: nowrap; }
.sticky-cta span { font-size: 13px; color: var(--muted); white-space: nowrap; }
.sticky-cta .btn { padding: 9px 16px; font-size: 13.5px; }
.sticky-cta-close { border: 0; background: transparent; color: var(--muted); font-size: 18px; cursor: pointer; padding: 4px 8px; line-height: 1; }
@media (max-width: 640px) { .sticky-cta span { display: none; } .sticky-cta { bottom: 12px; } }

/* ---------- misc polish ---------- */
.stat-num { letter-spacing: -0.04em; }
.faq-item summary { font-weight: 600; }
.final-cta { border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(180deg, var(--accent-soft), transparent); padding: 56px 24px; }
.final-cta h2 { font-size: clamp(28px, 3.6vw, 40px); }
.row-between { align-items: end; margin-bottom: 18px; }
.row-between > a.muted { font-size: 14px; }

/* ---------- layout fixes from the first visual pass ---------- */
.home-hero h1 { font-size: clamp(36px, 4.6vw, 58px); }
.hero-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.hero-stat { min-width: 0; padding: 10px 12px; }
.hero-stat strong { font-size: 19px; }
@media (max-width: 960px) { .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.home .flow { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin: 28px 0 0; }
.home .flow-arrow { display: none; }
.home .flow-step { flex: none; }
@media (max-width: 960px) { .home .flow { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .home .flow { grid-template-columns: 1fr; } }
.blog-header { display: block; margin: 8px 0 24px; }
.blog-header h1 { margin: 8px 0 10px; font-size: clamp(28px, 3.6vw, 40px); }
.blog-header > p { margin: 0 0 6px; max-width: 720px; }
.blog-header .btn { margin-top: 12px; }
.blog-featured { display: grid !important; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr) !important; }
.blog-featured > div { min-width: 0; }
.blog-featured-side h4 { border: 0; background: none; padding: 0; }
@media (max-width: 800px) { .blog-featured { grid-template-columns: 1fr !important; } }
.blog-featured-link { display: block; color: inherit; text-decoration: none; }
.blog-featured-link:hover { text-decoration: none; }
.blog-featured-link:hover h2 { color: var(--accent-ink); }
body.dark-mode .blog-featured-link:hover h2 { color: var(--accent) !important; }
.home { overflow-x: clip; }
.home-hero { overflow: hidden; }
.home-hero .hero-glow { left: 10%; width: min(900px, 120vw); }
