/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Selector bar (chrome) ---------- */
.chrome {
  position: sticky; top: 0; z-index: 60;
  background: #0b0b0c;
  color: #f4f4f5;
  border-bottom: 1px solid #1f1f22;
  font-family: ui-monospace, 'JetBrains Mono', SF Mono, Menlo, monospace;
  font-size: 12px;
}
.chrome-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 12px 24px;
  display: flex; align-items: center; gap: 18px; flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.chrome-inner::-webkit-scrollbar { display: none; }
.chrome-label { opacity: .45; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.chrome-group { display: flex; align-items: center; gap: 4px; padding: 3px; background: #18181b; border-radius: 999px; flex: none; }
.chrome-btn {
  appearance: none; background: transparent; color: #a1a1aa;
  border: 0; padding: 7px 14px; border-radius: 999px;
  font-family: inherit; font-size: 12px;
  white-space: nowrap;
  transition: all .15s ease;
}
.chrome-btn:hover { color: #f4f4f5; }
.chrome-btn[aria-pressed="true"] { background: #f4f4f5; color: #0b0b0c; }
.chrome-meta { margin-left: auto; opacity: .45; white-space: nowrap; flex: none; }

/* ---------- Page container ---------- */
.page { display: none; }
.page.active { display: block; }

/* ---------- Three-doors layout (shared scaffold; theme tweaks below) ---------- */
.doors-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: stretch;
  padding-top: 18px; /* room for the chip on the middle door */
}
/* Temporary two-door layout — applied while Door 2 (Setup Pack) is hidden pending pack composition. Remove this rule + the doors-2-active class on the wrapper when restoring. */
.doors-3.doors-2-active {
  grid-template-columns: repeat(2, 1fr);
  padding-top: 0;
}
.doors-3 .door { display: flex; flex-direction: column; gap: 16px; min-height: 100%; position: relative; }
.doors-3 .door ul { flex: 1; }
.doors-3 .door .door-kind {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  opacity: 0.7;
}
.doors-3 .door-feature .door-chip {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  white-space: nowrap;
  font-size: 11.5px; letter-spacing: 0.04em; font-weight: 600;
  padding: 6px 14px; border-radius: 999px;
}
@media (max-width: 1024px) {
  .doors-3 { grid-template-columns: 1fr !important; }
  .doors-3 .door-feature { order: -1; } /* middle door first on mobile/tablet */
}

/* ---------- Shared nav logo hover (clickability cue, theme-agnostic) ---------- */
.logo { transition: transform 0.2s ease; }
.logo:hover { transform: scale(1.05); cursor: pointer; }

/* ---------- Shared utilities scoped per theme ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.confidence { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; }
.confidence span:not(:last-child)::after { content: '·'; margin-left: 10px; opacity: .55; }

/* Dropdown hover-bridge — invisible 14px buffer spanning the gap between the
   Product trigger and the dropdown panel, so the menu doesn't close mid-cursor
   as the user moves toward it. Applies across all three themes. */
.has-menu::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
  pointer-events: auto;
}

/* Nav logo — direct <img> tag (replaces the older CSS-mask treatment which
   could fail to render when the page is served via file:// in some browsers).
   Overrides the legacy .logo-img mask CSS in the theme blocks below. */
.logo .nav-logo {
  display: block;
  width: 116px;
  height: auto;
  /* Belt-and-braces: explicitly clear any mask that might leak from .logo-img */
  -webkit-mask: none !important;
  mask: none !important;
  background-color: transparent !important;
}

/* Footer link hover — small Privacy / Terms / Affiliate / Sources links
   turn brand cyan on hover, signalling they're clickable. Applies across themes. */
.footer-links a {
  cursor: pointer;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--accent);
}

/* Related-category links at the bottom of each category page — they're already
   cyan via the theme block; add underline-on-hover so they feel clickable
   (matches the linkish pattern used elsewhere). */
.related a {
  transition: color 0.2s ease;
}
.related a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Scroll-driven fade-up — sections fade in from 24px below as they enter the
   viewport. Driven by IntersectionObserver in app.js. The `.has-scroll-anim`
   class is added to <body> by JS so this is a progressive enhancement: if JS
   never runs, sections render normally with no hiding. The hero (.no-line) is
   skipped — it's above the fold and shouldn't animate. */
@media (prefers-reduced-motion: no-preference) {
  /* --- Section-level fade-up (the outer block) --- */
  body.has-scroll-anim .section:not(.no-line) {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }
  body.has-scroll-anim .section.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* --- Staggered child animation (the cards inside each section) ---
     Children of grid containers start slightly below + transparent. When the
     parent section gains .is-visible, children animate in. JS sets per-child
     transition-delay inline so each one cascades after the previous. */
  body.has-scroll-anim .section .grid-cards > *,
  body.has-scroll-anim .section .doors-3 > *,
  body.has-scroll-anim .section .steps > *,
  body.has-scroll-anim .section .closer-cards > *,
  body.has-scroll-anim .section .stat-strip > *,
  body.has-scroll-anim .section .solution-row,
  body.has-scroll-anim .section .problem-stat,
  body.has-scroll-anim .section .honesty > * {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 500ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  body.has-scroll-anim .section.is-visible .grid-cards > *,
  body.has-scroll-anim .section.is-visible .doors-3 > *,
  body.has-scroll-anim .section.is-visible .steps > *,
  body.has-scroll-anim .section.is-visible .closer-cards > *,
  body.has-scroll-anim .section.is-visible .stat-strip > *,
  body.has-scroll-anim .section.is-visible .solution-row,
  body.has-scroll-anim .section.is-visible .problem-stat,
  body.has-scroll-anim .section.is-visible .honesty > * {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   DIRECTION 1 — Refined Dark (navy + cyan, Inter)
   ========================================================= */
[data-theme="dark"] {
  --bg: #0a1628;
  --bg-2: #0d1b30;
  --bg-3: #0f2138;
  --line: rgba(255,255,255,0.08);
  --ink: #f5f8fb;
  --ink-2: rgba(245,248,251,0.72);
  --ink-3: rgba(245,248,251,0.48);
  --accent: #00d4ff;
  --accent-ink: #001017;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-feature-settings: 'ss01','cv11';
}
[data-theme="dark"] .container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
[data-theme="dark"] .nav .container { padding: 0 48px; }
[data-theme="dark"] .h1 { font-size: clamp(40px, 5.6vw, 80px); line-height: 1.02; letter-spacing: -0.025em; font-weight: 600; text-wrap: balance; }
[data-theme="dark"] .h2 { font-size: clamp(28px, 3.4vw, 48px); line-height: 1.08; letter-spacing: -0.02em; font-weight: 600; text-wrap: balance; }
[data-theme="dark"] .h3 { font-size: 20px; line-height: 1.3; letter-spacing: -0.01em; font-weight: 600; }
[data-theme="dark"] .lead { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.55; color: var(--ink-2); max-width: 64ch; }
[data-theme="dark"] .body { font-size: 16px; line-height: 1.6; color: var(--ink-2); }
[data-theme="dark"] .small { font-size: 13px; color: var(--ink-3); }
[data-theme="dark"] .eyebrow {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
}
[data-theme="dark"] .eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--accent); }

[data-theme="dark"] .btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--accent-ink);
  border: 0; padding: 14px 22px; border-radius: 4px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.005em;
  transition: transform .15s ease, box-shadow .15s ease;
}
[data-theme="dark"] .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,212,255,0.25); }
[data-theme="dark"] .btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); padding: 14px 22px;
  border: 1px solid var(--line); border-radius: 4px;
  font-weight: 500; font-size: 15px;
}
[data-theme="dark"] .btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
[data-theme="dark"] .linkish { color: var(--accent); font-size: 14px; font-weight: 500; }
[data-theme="dark"] .linkish:hover { text-decoration: underline; text-underline-offset: 4px; }

[data-theme="dark"] .nav { border-bottom: 1px solid var(--line); }
[data-theme="dark"] .nav-row { display: flex; align-items: center; gap: 36px; padding: 22px 0; }
[data-theme="dark"] .logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.02em; font-size: 18px; color: var(--accent); }
[data-theme="dark"] .logo-img {
  display: block; width: 116px; aspect-ratio: 750 / 225;
  background-color: currentColor;
  -webkit-mask: url('logo.svg') no-repeat center / contain;
          mask: url('logo.svg') no-repeat center / contain;
}
[data-theme="dark"] .nav-links { display: flex; gap: 28px; }
[data-theme="dark"] .nav-link { color: var(--ink-2); font-size: 14px; display: inline-flex; align-items: center; gap: 4px; padding: 6px 0; cursor: pointer; }
[data-theme="dark"] .nav-link:hover { color: var(--ink); }
[data-theme="dark"] .nav-right { margin-left: auto; display: flex; align-items: center; gap: 22px; }
[data-theme="dark"] .nav .btn-primary { padding: 10px 16px; font-size: 14px; }

[data-theme="dark"] .product-menu {
  position: absolute; top: 100%; left: 0;
  margin-top: 12px; width: 720px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px;
  padding: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none; transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 50;
}
[data-theme="dark"] .has-menu:hover .product-menu,
[data-theme="dark"] .has-menu:focus-within .product-menu { opacity: 1; pointer-events: auto; transform: none; }
[data-theme="dark"] .menu-item { display: flex; gap: 12px; padding: 12px; border-radius: 6px; cursor: pointer; }
[data-theme="dark"] .menu-item:hover { background: var(--bg-3); }
[data-theme="dark"] .menu-icon { width: 32px; height: 32px; flex: none; display: grid; place-items: center; color: var(--accent); background: rgba(0,212,255,0.08); border-radius: 6px; }
[data-theme="dark"] .menu-icon svg { width: 16px; height: 16px; }
[data-theme="dark"] .menu-name { color: var(--ink); font-size: 14px; font-weight: 500; }
[data-theme="dark"] .menu-def { color: var(--ink-3); font-size: 12.5px; margin-top: 2px; line-height: 1.45; }

[data-theme="dark"] .section { padding: 96px 0; border-top: 1px solid var(--line); }
[data-theme="dark"] .section.no-line { border-top: 0; }
[data-theme="dark"] .grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
[data-theme="dark"] .card { background: var(--bg); padding: 32px; display: flex; flex-direction: column; gap: 18px; min-height: 220px; }
[data-theme="dark"] .card:hover { background: var(--bg-2); }
[data-theme="dark"] .card-icon { width: 38px; height: 38px; display: grid; place-items: center; color: var(--accent); border: 1px solid var(--line); border-radius: 6px; }
[data-theme="dark"] .card-icon svg { width: 20px; height: 20px; }

[data-theme="dark"] .stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
[data-theme="dark"] .stat { background: var(--bg); padding: 28px; }
[data-theme="dark"] .stat-fig { font-size: 32px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink-3); font-feature-settings: 'tnum'; }
[data-theme="dark"] .stat-fig.real { color: var(--accent); }
[data-theme="dark"] .stat-label { font-size: 13px; color: var(--ink-3); margin-top: 8px; line-height: 1.45; }

[data-theme="dark"] .solution-row { display: grid; grid-template-columns: 220px 1fr; gap: 32px; padding: 24px 0; border-top: 1px solid var(--line); align-items: baseline; }
[data-theme="dark"] .solution-row:last-child { border-bottom: 1px solid var(--line); }
[data-theme="dark"] .solution-key { color: var(--accent); font-size: 14px; font-weight: 500; letter-spacing: -0.005em; }
[data-theme="dark"] .solution-val { font-size: clamp(18px, 1.8vw, 24px); line-height: 1.35; letter-spacing: -0.01em; color: var(--ink); }

[data-theme="dark"] .doors { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
[data-theme="dark"] .door { background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 36px; display: flex; flex-direction: column; gap: 20px; }
[data-theme="dark"] .door .btn-primary { align-self: flex-start; }
[data-theme="dark"] .doors-3 .door .btn-primary { align-self: center; }
[data-theme="dark"] .door ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
[data-theme="dark"] .door li { color: var(--ink-2); font-size: 15px; line-height: 1.5; padding-left: 22px; position: relative; }
[data-theme="dark"] .door li::before { content: ''; position: absolute; left: 0; top: 9px; width: 12px; height: 1px; background: var(--accent); }

/* doors-3 — dark */
[data-theme="dark"] .doors-3 .door { padding: 32px; }
[data-theme="dark"] .doors-3 .door-kind { color: var(--ink-3); }
[data-theme="dark"] .doors-3 .door-feature {
  background: var(--bg-3);
  border-color: rgba(0,212,255,0.35);
  box-shadow: 0 0 0 1px rgba(0,212,255,0.25), 0 24px 60px -20px rgba(0,212,255,0.25);
}
[data-theme="dark"] .doors-3 .door-feature .door-kind { color: var(--accent); }
[data-theme="dark"] .doors-3 .door-feature .door-chip { background: var(--accent); color: var(--accent-ink); }
[data-theme="dark"] .doors-3 .door-side .door-sub { color: var(--ink-3); font-size: 14px; }
[data-theme="dark"] .door-sub { font-size: 14.5px; color: var(--ink-3); margin-top: -8px; line-height: 1.45; }

/* doors-3 — light */
[data-theme="light"] .doors-3 .door { padding: 32px; }
[data-theme="light"] .doors-3 .door-kind { color: var(--ink-3); }
[data-theme="light"] .doors-3 .door-feature {
  border-color: rgba(56,182,255,0.35);
  box-shadow: 0 24px 60px -24px rgba(20,17,15,0.18), 0 0 0 4px rgba(56,182,255,0.06);
  transform: translateY(-4px);
}
[data-theme="light"] .doors-3 .door-feature .door-kind { color: var(--accent); }
[data-theme="light"] .doors-3 .door-feature .door-chip { background: var(--ink); color: var(--bg); }
[data-theme="light"] .doors-3 .door-side .door-sub { color: var(--ink-3); font-size: 14.5px; }
[data-theme="light"] .doors-3 .door li::before { color: var(--accent); }

/* doors-3 — editorial */
[data-theme="editorial"] .doors-3 .door {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 36px;
  border-radius: 2px;
}
[data-theme="editorial"] .doors-3 .door-kind {
  color: var(--ink-3); font-family: 'Inter', sans-serif;
  letter-spacing: 0.22em;
}
[data-theme="editorial"] .doors-3 .door-feature {
  background: var(--bg);
  border-color: var(--accent);
  box-shadow: 6px 6px 0 var(--ink);
  transform: translateY(-4px);
}
[data-theme="editorial"] .doors-3 .door-feature .door-kind { color: var(--accent); }
[data-theme="editorial"] .doors-3 .door-feature .door-chip {
  background: var(--accent); color: var(--bg);
  border-radius: 2px; font-family: 'Inter', sans-serif;
  letter-spacing: 0.04em;
}
[data-theme="editorial"] .doors-3 .door-side .door-sub { font-size: 16px; }

[data-theme="dark"] .closing-cta { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-3) 100%); }
[data-theme="dark"] .footer { padding: 32px 0; border-top: 1px solid var(--line); }
[data-theme="dark"] .footer-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; font-size: 13px; color: var(--ink-3); }
[data-theme="dark"] .footer-links { display: flex; gap: 18px; }

/* steps */
[data-theme="dark"] .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
[data-theme="dark"] .step { background: var(--bg); padding: 36px 32px; display: flex; flex-direction: column; gap: 14px; }
[data-theme="dark"] .step-num { font-size: 13px; color: var(--accent); font-weight: 500; letter-spacing: 0.05em; }
[data-theme="dark"] .step-title { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; }

/* problem */
[data-theme="dark"] .problem { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
[data-theme="dark"] .problem-stat { padding: 24px 0; border-top: 1px solid var(--line); }
[data-theme="dark"] .problem-stat:last-child { border-bottom: 1px solid var(--line); }
[data-theme="dark"] .problem-fig { font-size: 44px; font-weight: 600; letter-spacing: -0.02em; color: var(--accent); }
[data-theme="dark"] .problem-label { color: var(--ink-2); font-size: 15px; line-height: 1.5; margin-top: 4px; max-width: 32ch; }
[data-theme="dark"] .problem-src { color: var(--ink-3); font-size: 11px; margin-top: 8px; font-family: ui-monospace, monospace; }

/* closer cards */
[data-theme="dark"] .closer-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
[data-theme="dark"] .closer-card { background: var(--bg); padding: 32px; }
[data-theme="dark"] .closer-card h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; margin: 0 0 12px; }

/* breadcrumb */
[data-theme="dark"] .crumb { font-size: 13px; color: var(--ink-3); display: inline-flex; gap: 8px; align-items: center; }
[data-theme="dark"] .crumb b { font-weight: 500; color: var(--ink-2); }

[data-theme="dark"] .related { padding: 24px 0; font-size: 13px; color: var(--ink-3); border-top: 1px solid var(--line); }
[data-theme="dark"] .related b { color: var(--ink); font-weight: 500; }
[data-theme="dark"] .related a { color: var(--accent); margin: 0 4px; }

/* honesty pulled-quote treatment */
[data-theme="dark"] .honesty { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
[data-theme="dark"] .honesty-mark { width: 64px; height: 64px; border-radius: 8px; background: rgba(0,212,255,0.06); display: grid; place-items: center; color: var(--accent); border: 1px solid rgba(0,212,255,0.18); }
[data-theme="dark"] .honesty-mark svg { width: 28px; height: 28px; }

/* =========================================================
   DIRECTION 2 — Light, copper accent, edge-to-edge
   ========================================================= */
[data-theme="light"] {
  --bg: #ffffff;
  --bg-2: #f6f5f3;
  --bg-3: #ece9e4;
  --bg-dark: #14110f;
  --line: #e6e3de;
  --ink: #14110f;
  --ink-2: #4a443e;
  --ink-3: #8a847d;
  --accent: #38b6ff;     /* EyesFwd logo cyan — taken from the EYES letters in logo.svg */
  --accent-2: #1ea1f2;   /* slightly darker cyan for hover states */
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-feature-settings: 'ss01';
}
[data-theme="light"] .container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
[data-theme="light"] .nav .container { padding: 0 56px; }
[data-theme="light"] .h1 { font-size: clamp(44px, 6.4vw, 92px); line-height: 0.98; letter-spacing: -0.035em; font-weight: 700; text-wrap: balance; }
[data-theme="light"] .h2 { font-size: clamp(32px, 4.2vw, 60px); line-height: 1.02; letter-spacing: -0.03em; font-weight: 700; text-wrap: balance; }
[data-theme="light"] .h3 { font-size: 22px; line-height: 1.25; letter-spacing: -0.015em; font-weight: 600; }
[data-theme="light"] .lead { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.5; color: var(--ink-2); max-width: 60ch; font-weight: 400; }
[data-theme="light"] .body { font-size: 16px; line-height: 1.6; color: var(--ink-2); }
[data-theme="light"] .small { font-size: 13px; color: var(--ink-3); }
[data-theme="light"] .eyebrow {
  font-size: 13px; font-weight: 500; color: var(--accent);
  letter-spacing: -0.005em;
}
[data-theme="light"] .eyebrow::before { content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 999px; }

[data-theme="light"] .btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--ink);
  border: 0; padding: 16px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.005em;
}
[data-theme="light"] .btn-primary:hover { background: var(--accent-2); }

/* btn-ink — black filled with white text. Used for Door 3 (Bespoke) and the
   secondary "Book a discovery call" CTA on category pages. Distinguishes the
   "considered / premium" path visually from the cyan trial + Setup Pack buttons. */
[data-theme="light"] .btn-ink {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--bg);
  border: 0; padding: 16px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.005em;
  transition: background 0.15s ease;
}
[data-theme="light"] .btn-ink:hover { background: #2a2622; }
[data-theme="light"] .btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); padding: 16px 26px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--bg);
  font-weight: 500; font-size: 15px;
}
[data-theme="light"] .btn-secondary:hover { border-color: var(--ink); }
[data-theme="light"] .linkish { color: var(--accent); font-size: 15px; font-weight: 500; }
[data-theme="light"] .linkish:hover { text-decoration: underline; text-underline-offset: 4px; }

[data-theme="light"] .nav { border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); position: sticky; top: 41px; z-index: 40; }
[data-theme="light"] .nav-row { display: flex; align-items: center; gap: 36px; padding: 18px 0; }
[data-theme="light"] .logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.025em; font-size: 19px; color: var(--ink); }
[data-theme="light"] .logo-img {
  display: block; width: 116px; aspect-ratio: 750 / 225;
  background-color: currentColor;
  -webkit-mask: url('logo.svg') no-repeat center / contain;
          mask: url('logo.svg') no-repeat center / contain;
}
[data-theme="light"] .nav-links { display: flex; gap: 28px; }
[data-theme="light"] .nav-link { color: var(--ink-2); font-size: 14.5px; display: inline-flex; align-items: center; gap: 4px; padding: 6px 0; cursor: pointer; }
[data-theme="light"] .nav-link:hover { color: var(--ink); }
[data-theme="light"] .nav-right { margin-left: auto; display: flex; align-items: center; gap: 24px; }
[data-theme="light"] .nav .btn-primary { padding: 11px 18px; font-size: 14px; }

[data-theme="light"] .product-menu {
  position: absolute; top: 100%; left: 0;
  margin-top: 14px; width: 760px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 16px;
  padding: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  box-shadow: 0 24px 60px rgba(20,17,15,0.10);
  opacity: 0; pointer-events: none; transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 50;
}
[data-theme="light"] .has-menu:hover .product-menu,
[data-theme="light"] .has-menu:focus-within .product-menu { opacity: 1; pointer-events: auto; transform: none; }
[data-theme="light"] .menu-item { display: flex; gap: 14px; padding: 14px; border-radius: 10px; cursor: pointer; }
[data-theme="light"] .menu-item:hover { background: var(--bg-2); }
[data-theme="light"] .menu-icon { width: 36px; height: 36px; flex: none; display: grid; place-items: center; color: var(--accent); background: rgba(56,182,255,0.08); border-radius: 8px; }
[data-theme="light"] .menu-icon svg { width: 18px; height: 18px; }
[data-theme="light"] .menu-name { color: var(--ink); font-size: 14.5px; font-weight: 600; }
[data-theme="light"] .menu-def { color: var(--ink-3); font-size: 13px; margin-top: 3px; line-height: 1.45; }

[data-theme="light"] .section { padding: 120px 0; }
[data-theme="light"] .section.alt { background: var(--bg-2); }
[data-theme="light"] .section.dark { background: var(--bg-dark); color: #f6f4f1; }
[data-theme="light"] .section.dark .lead, [data-theme="light"] .section.dark .body { color: rgba(246,244,241,0.7); }
[data-theme="light"] .section.dark .h2 { color: #fbfaf8; }
[data-theme="light"] .section.dark .btn-primary { background: var(--accent); color: var(--ink); font-weight: 600; }
[data-theme="light"] .section.dark .btn-primary:hover { background: var(--accent-2); }
[data-theme="light"] .section.dark .btn-secondary { background: transparent; color: #f6f4f1; border-color: rgba(246,244,241,0.32); }
[data-theme="light"] .section.dark .btn-secondary:hover { border-color: #f6f4f1; }
[data-theme="light"] .section.dark .small { color: rgba(246,244,241,0.55); }
[data-theme="light"] .section.dark .confidence span:not(:last-child)::after { color: rgba(246,244,241,0.5); }

[data-theme="light"] .grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
[data-theme="light"] .card { background: var(--bg); padding: 28px; border: 1px solid var(--line); border-radius: 14px; display: flex; flex-direction: column; gap: 16px; min-height: 220px; transition: border-color .15s ease, transform .15s ease; }
[data-theme="light"] .card:hover { border-color: var(--ink); }
[data-theme="light"] .section.alt .card { background: var(--bg); }
[data-theme="light"] .card-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--accent); background: rgba(56,182,255,0.08); border-radius: 10px; }
[data-theme="light"] .card-icon svg { width: 20px; height: 20px; }

[data-theme="light"] .stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
[data-theme="light"] .stat { padding: 28px 28px; border-right: 1px solid var(--line); }
[data-theme="light"] .stat:last-child { border-right: 0; }
[data-theme="light"] .stat-fig { font-size: 32px; font-weight: 700; letter-spacing: -0.025em; color: var(--ink-3); font-feature-settings: 'tnum'; }
[data-theme="light"] .stat-fig.real { color: var(--accent); }
[data-theme="light"] .stat-label { font-size: 13.5px; color: var(--ink-3); margin-top: 8px; line-height: 1.45; }

[data-theme="light"] .solution-row { display: grid; grid-template-columns: 240px 1fr; gap: 32px; padding: 28px 0; border-top: 1px solid var(--line); align-items: baseline; }
[data-theme="light"] .solution-row:last-child { border-bottom: 1px solid var(--line); }
[data-theme="light"] .solution-key { color: var(--accent); font-size: 14px; font-weight: 600; letter-spacing: -0.005em; }
[data-theme="light"] .solution-val { font-size: clamp(20px, 2vw, 28px); line-height: 1.3; letter-spacing: -0.018em; color: var(--ink); font-weight: 500; }

[data-theme="light"] .doors { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
[data-theme="light"] .door { background: var(--bg); border: 1px solid var(--line); border-radius: 20px; padding: 40px; display: flex; flex-direction: column; gap: 22px; }
[data-theme="light"] .door.dfy { background: var(--bg-dark); color: #f6f4f1; border-color: var(--bg-dark); }
[data-theme="light"] .door.dfy .door-sub, [data-theme="light"] .door.dfy li { color: rgba(246,244,241,0.7); }
[data-theme="light"] .door.dfy .door-sub { color: rgba(246,244,241,0.5); }
[data-theme="light"] .door.dfy .h3 { color: #fbfaf8; }
[data-theme="light"] .door.dfy .btn-primary { background: var(--accent); color: var(--ink); font-weight: 600; }
[data-theme="light"] .door.dfy .btn-primary:hover { background: var(--accent-2); }
[data-theme="light"] .door .btn-primary { align-self: flex-start; }
[data-theme="light"] .doors-3 .door .btn-primary { align-self: center; }
[data-theme="light"] .door-sub { font-size: 14px; color: var(--ink-3); margin-top: -10px; }
[data-theme="light"] .door ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
[data-theme="light"] .door li { color: var(--ink-2); font-size: 15px; line-height: 1.5; padding-left: 26px; position: relative; }
[data-theme="light"] .door li::before { content: '+'; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 500; }

[data-theme="light"] .footer { padding: 48px 0; background: var(--bg-2); }
[data-theme="light"] .footer-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; font-size: 13px; color: var(--ink-3); }
[data-theme="light"] .footer-links { display: flex; gap: 20px; }

[data-theme="light"] .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
[data-theme="light"] .step { background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 36px 32px; display: flex; flex-direction: column; gap: 14px; }
[data-theme="light"] .section.alt .step { background: var(--bg); }
[data-theme="light"] .step-num { font-size: 13px; color: var(--accent); font-weight: 600; letter-spacing: 0.05em; }
[data-theme="light"] .step-title { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }

[data-theme="light"] .problem { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
[data-theme="light"] .problem-stat { padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.12); }
[data-theme="light"] .problem-stat:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
[data-theme="light"] .problem-fig { font-size: 56px; font-weight: 700; letter-spacing: -0.03em; color: var(--accent); line-height: 1; font-feature-settings: 'tnum'; }
[data-theme="light"] .problem-label { color: rgba(246,244,241,0.78); font-size: 16px; line-height: 1.5; margin-top: 10px; max-width: 32ch; }
[data-theme="light"] .problem-src { color: rgba(246,244,241,0.45); font-size: 11.5px; margin-top: 10px; font-family: ui-monospace, monospace; }

[data-theme="light"] .closer-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
[data-theme="light"] .closer-card { background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: 36px; }
[data-theme="light"] .closer-card h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 12px; }
[data-theme="light"] .section.alt .closer-card { background: var(--bg); }

[data-theme="light"] .crumb { font-size: 13.5px; color: var(--ink-3); display: inline-flex; gap: 6px; align-items: center; }
[data-theme="light"] .crumb b { font-weight: 500; color: var(--ink); }

[data-theme="light"] .related { padding: 24px 0; font-size: 14px; color: var(--ink-3); border-top: 1px solid var(--line); }
[data-theme="light"] .related b { color: var(--ink); font-weight: 600; }
[data-theme="light"] .related a { color: var(--accent); margin: 0 4px; }

[data-theme="light"] .honesty { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
[data-theme="light"] .honesty-mark { width: 64px; height: 64px; border-radius: 50%; background: rgba(56,182,255,0.08); display: grid; place-items: center; color: var(--accent); }
[data-theme="light"] .honesty-mark svg { width: 28px; height: 28px; }

/* =========================================================
   DIRECTION 3 — Editorial warm off-white + terracotta + serif
   ========================================================= */
[data-theme="editorial"] {
  --bg: #faf7f2;
  --bg-2: #f3eee4;
  --bg-3: #ecd9b9;
  --ink: #1a1410;
  --ink-2: #4a3f37;
  --ink-3: #8a7d72;
  --line: #e4dcce;
  --accent: #9a3a1e;
  --accent-soft: #b8542e;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-feature-settings: 'ss01','cv11';
}
[data-theme="editorial"] .container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
[data-theme="editorial"] .nav .container { padding: 0 56px; }
[data-theme="editorial"] .h1 { font-family: 'Inter Tight', 'Inter', sans-serif; font-size: clamp(44px, 6vw, 84px); line-height: 1.0; letter-spacing: -0.035em; font-weight: 600; text-wrap: balance; }
[data-theme="editorial"] .h2 { font-family: 'Inter Tight', 'Inter', sans-serif; font-size: clamp(32px, 4vw, 56px); line-height: 1.04; letter-spacing: -0.028em; font-weight: 600; text-wrap: balance; }
[data-theme="editorial"] .h3 { font-family: 'Inter Tight', 'Inter', sans-serif; font-size: 22px; line-height: 1.25; letter-spacing: -0.015em; font-weight: 600; }
[data-theme="editorial"] .lead { font-family: 'Source Serif 4', 'Iowan Old Style', 'Georgia', serif; font-size: clamp(18px, 1.5vw, 22px); line-height: 1.5; color: var(--ink-2); max-width: 60ch; }
[data-theme="editorial"] .body { font-family: 'Source Serif 4', 'Iowan Old Style', 'Georgia', serif; font-size: 17px; line-height: 1.62; color: var(--ink-2); }
[data-theme="editorial"] .small { font-size: 13px; color: var(--ink-3); }
[data-theme="editorial"] .eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
  font-feature-settings: 'tnum','cv11';
}
[data-theme="editorial"] .eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--accent); }

[data-theme="editorial"] .btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--bg);
  border: 0; padding: 15px 24px; border-radius: 2px;
  font-weight: 500; font-size: 15px; letter-spacing: -0.005em;
}
[data-theme="editorial"] .btn-primary:hover { background: var(--accent); }
[data-theme="editorial"] .btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); padding: 15px 24px;
  border: 1px solid var(--ink); border-radius: 2px;
  font-weight: 500; font-size: 15px; background: transparent;
}
[data-theme="editorial"] .btn-secondary:hover { background: var(--ink); color: var(--bg); }
[data-theme="editorial"] .linkish { color: var(--accent); font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
[data-theme="editorial"] .linkish:hover { color: var(--ink); border-color: var(--ink); }

[data-theme="editorial"] .nav { border-bottom: 1px solid var(--line); background: rgba(250,247,242,0.92); backdrop-filter: blur(8px); position: sticky; top: 41px; z-index: 40; }
[data-theme="editorial"] .nav-row { display: flex; align-items: center; gap: 36px; padding: 22px 0; }
[data-theme="editorial"] .logo { display: inline-flex; align-items: center; gap: 10px; font-family: 'Inter Tight','Inter',sans-serif; font-weight: 600; letter-spacing: -0.025em; font-size: 20px; color: var(--ink); }
[data-theme="editorial"] .logo-img {
  display: block; width: 116px; aspect-ratio: 750 / 225;
  background-color: currentColor;
  -webkit-mask: url('logo.svg') no-repeat center / contain;
          mask: url('logo.svg') no-repeat center / contain;
}
[data-theme="editorial"] .nav-links { display: flex; gap: 30px; }
[data-theme="editorial"] .nav-link { color: var(--ink-2); font-size: 14.5px; display: inline-flex; align-items: center; gap: 4px; padding: 6px 0; cursor: pointer; }
[data-theme="editorial"] .nav-link:hover { color: var(--ink); }
[data-theme="editorial"] .nav-right { margin-left: auto; display: flex; align-items: center; gap: 24px; }
[data-theme="editorial"] .nav .btn-primary { padding: 11px 18px; font-size: 14px; }

[data-theme="editorial"] .product-menu {
  position: absolute; top: 100%; left: 0;
  margin-top: 14px; width: 720px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 4px;
  padding: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  box-shadow: 0 24px 60px rgba(26,20,16,0.10);
  opacity: 0; pointer-events: none; transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 50;
}
[data-theme="editorial"] .has-menu:hover .product-menu,
[data-theme="editorial"] .has-menu:focus-within .product-menu { opacity: 1; pointer-events: auto; transform: none; }
[data-theme="editorial"] .menu-item { display: flex; gap: 12px; padding: 14px; border-radius: 2px; cursor: pointer; }
[data-theme="editorial"] .menu-item:hover { background: var(--bg-2); }
[data-theme="editorial"] .menu-icon { width: 30px; height: 30px; flex: none; display: grid; place-items: center; color: var(--accent); border: 1px solid var(--line); border-radius: 2px; }
[data-theme="editorial"] .menu-icon svg { width: 16px; height: 16px; }
[data-theme="editorial"] .menu-name { color: var(--ink); font-size: 14.5px; font-weight: 600; font-family: 'Inter Tight','Inter',sans-serif; letter-spacing: -0.01em; }
[data-theme="editorial"] .menu-def { color: var(--ink-3); font-size: 13px; margin-top: 3px; line-height: 1.45; font-family: 'Source Serif 4', Georgia, serif; }

[data-theme="editorial"] .section { padding: 120px 0; border-top: 1px solid var(--line); }
[data-theme="editorial"] .section.no-line { border-top: 0; }
[data-theme="editorial"] .section.cream { background: var(--bg-2); }
[data-theme="editorial"] .section.ink { background: var(--ink); color: var(--bg); }
[data-theme="editorial"] .section.ink .h2 { color: var(--bg); }
[data-theme="editorial"] .section.ink .lead, [data-theme="editorial"] .section.ink .body { color: rgba(250,247,242,0.78); }
[data-theme="editorial"] .section.ink .btn-primary { background: var(--accent); color: var(--bg); }
[data-theme="editorial"] .section.ink .btn-primary:hover { background: var(--accent-soft); }
[data-theme="editorial"] .section.ink .btn-secondary { color: var(--bg); border-color: rgba(250,247,242,0.4); background: transparent; }
[data-theme="editorial"] .section.ink .btn-secondary:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }
[data-theme="editorial"] .section.ink .small { color: rgba(250,247,242,0.55); }
[data-theme="editorial"] .section.ink .confidence span:not(:last-child)::after { color: rgba(250,247,242,0.45); }

[data-theme="editorial"] .grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
[data-theme="editorial"] .card { background: transparent; padding: 32px; display: flex; flex-direction: column; gap: 18px; min-height: 230px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
[data-theme="editorial"] .card:hover { background: var(--bg-2); }
[data-theme="editorial"] .card-icon { width: 36px; height: 36px; display: grid; place-items: center; color: var(--accent); }
[data-theme="editorial"] .card-icon svg { width: 22px; height: 22px; }
[data-theme="editorial"] .card .h3 { font-family: 'Inter Tight','Inter',sans-serif; }

[data-theme="editorial"] .stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
[data-theme="editorial"] .stat { padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
[data-theme="editorial"] .stat-fig { font-family: 'Inter Tight','Inter',sans-serif; font-size: 36px; font-weight: 600; letter-spacing: -0.03em; color: var(--ink-3); font-feature-settings: 'tnum'; }
[data-theme="editorial"] .stat-fig.real { color: var(--accent); }
[data-theme="editorial"] .stat-label { font-size: 13.5px; color: var(--ink-3); margin-top: 8px; line-height: 1.45; font-family: 'Inter','sans-serif'; }

[data-theme="editorial"] .solution-row { display: grid; grid-template-columns: 220px 1fr; gap: 40px; padding: 28px 0; border-top: 1px solid var(--line); align-items: baseline; }
[data-theme="editorial"] .solution-row:last-child { border-bottom: 1px solid var(--line); }
[data-theme="editorial"] .solution-key { color: var(--accent); font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
[data-theme="editorial"] .solution-val { font-family: 'Source Serif 4', Georgia, serif; font-size: clamp(20px, 2vw, 28px); line-height: 1.3; letter-spacing: -0.01em; color: var(--ink); font-weight: 400; }
[data-theme="editorial"] .solution-val em { font-style: italic; color: var(--accent); }

[data-theme="editorial"] .doors { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); }
[data-theme="editorial"] .door { padding: 44px; display: flex; flex-direction: column; gap: 22px; }
[data-theme="editorial"] .doors > .door + .door { border-left: 1px solid var(--line); }
[data-theme="editorial"] .door .btn-primary { align-self: flex-start; }
[data-theme="editorial"] .doors-3 .door .btn-primary { align-self: center; }
[data-theme="editorial"] .door-sub { font-family: 'Source Serif 4', Georgia, serif; font-style: italic; font-size: 17px; color: var(--ink-2); margin-top: -10px; }
[data-theme="editorial"] .door ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
[data-theme="editorial"] .door li { color: var(--ink); font-family: 'Source Serif 4', Georgia, serif; font-size: 16px; line-height: 1.55; padding-left: 22px; position: relative; }
[data-theme="editorial"] .door li::before { content: '—'; position: absolute; left: 0; top: 0; color: var(--accent); font-family: 'Inter', sans-serif; }

[data-theme="editorial"] .footer { padding: 40px 0; border-top: 1px solid var(--line); }
[data-theme="editorial"] .footer-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; font-size: 13.5px; color: var(--ink-3); }
[data-theme="editorial"] .footer-links { display: flex; gap: 20px; }

[data-theme="editorial"] .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
[data-theme="editorial"] .step { padding: 40px 36px; display: flex; flex-direction: column; gap: 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
[data-theme="editorial"] .step-num { font-family: 'Inter Tight','Inter',sans-serif; font-size: 48px; font-weight: 600; letter-spacing: -0.04em; color: var(--accent); line-height: 1; }
[data-theme="editorial"] .step-title { font-family: 'Inter Tight','Inter',sans-serif; font-size: 22px; font-weight: 600; letter-spacing: -0.018em; }

[data-theme="editorial"] .problem { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: start; }
[data-theme="editorial"] .problem-story { font-family: 'Source Serif 4', Georgia, serif; font-size: clamp(20px, 1.8vw, 26px); line-height: 1.45; color: var(--ink); letter-spacing: -0.005em; text-wrap: pretty; }
[data-theme="editorial"] .problem-story em { font-style: italic; color: var(--accent); }
[data-theme="editorial"] .problem-stat { padding: 24px 0; border-top: 1px solid var(--line); }
[data-theme="editorial"] .problem-stat:last-child { border-bottom: 1px solid var(--line); }
[data-theme="editorial"] .problem-fig { font-family: 'Inter Tight','Inter',sans-serif; font-size: 64px; font-weight: 600; letter-spacing: -0.035em; color: var(--accent); line-height: 1; font-feature-settings: 'tnum'; }
[data-theme="editorial"] .problem-label { color: var(--ink-2); font-family: 'Source Serif 4', Georgia, serif; font-size: 17px; line-height: 1.5; margin-top: 10px; max-width: 32ch; }
[data-theme="editorial"] .problem-src { color: var(--ink-3); font-size: 11.5px; margin-top: 10px; font-family: ui-monospace, monospace; }

[data-theme="editorial"] .closer-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
[data-theme="editorial"] .closer-card { padding: 40px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
[data-theme="editorial"] .closer-card h3 { font-family: 'Inter Tight','Inter',sans-serif; font-size: 26px; font-weight: 600; letter-spacing: -0.022em; margin: 0 0 14px; color: var(--ink); }

[data-theme="editorial"] .crumb { font-size: 13px; color: var(--ink-3); display: inline-flex; gap: 8px; align-items: center; letter-spacing: 0.01em; }
[data-theme="editorial"] .crumb b { font-weight: 600; color: var(--ink); }

[data-theme="editorial"] .related { padding: 28px 0; font-size: 13.5px; color: var(--ink-3); border-top: 1px solid var(--line); }
[data-theme="editorial"] .related b { color: var(--ink); font-weight: 600; }
[data-theme="editorial"] .related a { color: var(--accent); margin: 0 4px; font-style: italic; font-family: 'Source Serif 4', Georgia, serif; }

[data-theme="editorial"] .honesty { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
[data-theme="editorial"] .honesty-body { font-family: 'Source Serif 4', Georgia, serif; font-size: clamp(20px, 1.7vw, 24px); line-height: 1.5; color: var(--ink); letter-spacing: -0.005em; }
[data-theme="editorial"] .honesty-body em { font-style: italic; color: var(--accent); }
[data-theme="editorial"] .honesty-mark { width: 80px; height: 80px; border: 1px solid var(--accent); display: grid; place-items: center; color: var(--accent); transform: rotate(45deg); }
[data-theme="editorial"] .honesty-mark > svg { width: 28px; height: 28px; transform: rotate(-45deg); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  [data-theme] .grid-cards,
  [data-theme] .stat-strip,
  [data-theme] .steps,
  [data-theme] .closer-cards,
  [data-theme] .doors { grid-template-columns: 1fr 1fr !important; }
  [data-theme] .problem,
  [data-theme] .honesty { grid-template-columns: 1fr !important; gap: 40px !important; }
  [data-theme] .product-menu { width: 560px !important; }
}
@media (max-width: 720px) {
  [data-theme] .section { padding: 64px 0 !important; }
  [data-theme] .nav-links { display: none !important; }
  [data-theme] .nav-row { padding: 16px 0 !important; }
  [data-theme] .grid-cards,
  [data-theme] .stat-strip,
  [data-theme] .steps,
  [data-theme] .closer-cards,
  [data-theme] .doors { grid-template-columns: 1fr !important; }
  [data-theme] .solution-row { grid-template-columns: 1fr !important; gap: 6px !important; padding: 18px 0 !important; }
  [data-theme] .container { padding: 0 20px !important; }
}
