/* FinanzBee — site styles
   Palette: ink / paper / wax / honey / hive. One signature: the hexagon. */

:root {
  --ink: #1a1915;
  --ink-2: #3b3932;
  --muted: #5f5c53;      /* AA on paper and wax */
  --paper: #f7f5ef;
  --wax: #efeadc;
  --honey: #ffd83d;
  --honey-deep: #e8b800;
  --hive: #151511;
  --hive-2: #1f1e19;
  --on-hive: #f3f1ea;
  --on-hive-muted: #aeaba0;
  --line: rgba(26, 25, 21, .14);
  --line-strong: rgba(26, 25, 21, .28);
  --line-hive: rgba(255, 255, 255, .12);

  --font-display: 'Bricolage Grotesque Variable', 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Hanken Grotesk Variable', 'Hanken Grotesk', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

  --gutter: clamp(20px, 4vw, 56px);
  --max: 1320px;
  --section: clamp(88px, 11vw, 150px);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --hex: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; background: var(--paper); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
h1, h2, h3, p, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--honey); color: var(--ink); }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.shift :focus-visible { outline-color: var(--honey); }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--ink); color: var(--paper); padding: 10px 14px; font-weight: 600; }
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: calc(var(--max) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Type ---------- */
h1, h2, h3, .brand { font-family: var(--font-display); font-optical-sizing: auto; }
h1 {
  font-size: clamp(46px, 6.2vw, 92px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 700;
  max-width: 12ch;
  text-wrap: balance;
}
h2 {
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 650;
  text-wrap: balance;
}
h3 { font-size: 22px; line-height: 1.2; letter-spacing: -.015em; font-weight: 600; }
.body-lg { font-size: 18px; line-height: 1.65; color: var(--muted); max-width: 58ch; text-wrap: pretty; }
.lede { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.6; color: var(--ink-2); max-width: 52ch; margin-top: 28px; }
.eyebrow { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--ink-2); margin-bottom: 28px; }
.hex-dot { width: 14px; height: 12px; background: var(--honey); clip-path: var(--hex); flex: none; }
.kicker { font-size: 15px; font-weight: 600; color: var(--honey); margin-bottom: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 22px; min-height: 52px;
  font: 600 15px/1 var(--font-body);
  transition: background-color .2s, color .2s, transform .2s var(--ease);
}
.btn::after {
  content: ""; width: 12px; height: 12px; flex: none;
  background: currentColor;
  clip-path: polygon(0 40%, 60% 40%, 60% 10%, 100% 50%, 60% 90%, 60% 60%, 0 60%);
  transition: transform .2s var(--ease);
}
.btn:hover::after { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: #000; }
.btn-ink::after { background: var(--honey); }
.btn-honey { background: var(--honey); color: var(--ink); }
.btn-honey:hover { background: #ffe36b; }
.btn-lg { padding: 20px 28px; font-size: 16px; min-height: 60px; }
.text-link { font-weight: 600; font-size: 15px; padding-block: 6px; background: linear-gradient(var(--ink), var(--ink)) 0 100% / 100% 1px no-repeat; transition: background-size .25s var(--ease); }
.text-link:hover { background-size: 0 1px; background-position: 100% 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 76px; padding-inline: var(--gutter);
  background: rgba(247, 245, 239, .82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, height .2s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 21px; letter-spacing: -.02em; width: max-content; }
.brand-mark { width: 30px; height: 28px; position: relative; flex: none; }
.brand-mark i { position: absolute; width: 16px; height: 14px; background: var(--ink); clip-path: var(--hex); }
.brand-mark i:nth-child(1) { left: 0; top: 7px; }
.brand-mark i:nth-child(2) { left: 13px; top: 0; background: var(--honey); }
.brand-mark i:nth-child(3) { left: 13px; top: 14px; background: var(--honey); }
.nav-links { display: flex; gap: 32px; font-size: 15px; font-weight: 500; }
.nav-links a { color: var(--ink-2); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta-mobile, .menu-btn { display: none; }
.header-cta {
  justify-self: end; font-size: 15px; font-weight: 600;
  padding: 11px 18px; border: 1px solid var(--ink);
  transition: background-color .2s;
}
.header-cta:hover { background: var(--honey); border-color: var(--honey); }

/* ---------- Hero ---------- */
.hero {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 80px); align-items: center;
  padding-block: clamp(48px, 7vw, 96px) clamp(64px, 8vw, 112px);
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; margin-top: 40px; }
.hero-proof {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px;
  margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); max-width: 640px;
}
.hero-proof dt { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.hero-proof dd { font-size: 14px; line-height: 1.45; color: var(--muted); margin-top: 4px; }

.hero-visual { position: relative; --mx: 0px; --my: 0px; padding-top: 34px; }
.halo {
  position: absolute; inset: 10% 5% 0 10%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 216, 61, .45), rgba(255, 216, 61, 0));
  filter: blur(30px); pointer-events: none;
}
.panel {
  position: relative; background: var(--hive-2); color: var(--on-hive);
  border: 1px solid var(--line-hive);
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 30px 60px -20px rgba(26, 25, 21, .35);
}
.panel small { display: block; font-size: 12px; font-weight: 500; color: var(--on-hive-muted); }
.main-card { padding: 28px 28px 64px; transform: translate(var(--mx), var(--my)); transition: transform .25s ease-out; z-index: 2; }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--line-hive); }
.card-top h3 { font-size: 22px; margin-top: 4px; color: #fff; }
.chip { font-size: 12px; font-weight: 600; color: var(--honey); border: 1px solid rgba(255, 216, 61, .4); padding: 6px 10px; white-space: nowrap; }
.metrics { display: grid; grid-template-columns: 1fr 1fr; margin: 22px 0 18px; }
.metric { display: flex; flex-direction: column; gap: 2px; }
.metric + .metric { border-left: 1px solid var(--line-hive); padding-left: 22px; }
.metric strong { font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 30px); font-weight: 600; letter-spacing: -.02em; font-variant-numeric: tabular-nums; color: #fff; }
.metric span { font-size: 13px; color: var(--on-hive-muted); }
.metric .up { color: var(--honey); }
.chart { position: relative; height: 150px; }
.chart svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.chart-grid { position: absolute; inset: 0; display: grid; grid-template-rows: repeat(4, 1fr); }
.chart-grid i { border-top: 1px solid rgba(255, 255, 255, .07); }
.months { display: flex; justify-content: space-between; font-size: 12px; color: var(--on-hive-muted); margin-top: 8px; }

.status-pill {
  position: absolute; right: 0; top: 0; z-index: 3;
  display: flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink); padding: 10px 14px;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 12px 30px -10px rgba(26, 25, 21, .25);
  transform: translate(calc(var(--mx) * -.4), calc(var(--my) * -.4)); transition: transform .25s ease-out;
}
.status-pill b { font-weight: 500; color: var(--muted); margin-left: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #2f9e5b; box-shadow: 0 0 0 4px rgba(47, 158, 91, .15); }

.float-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin: -44px 0 0 -6%; width: 96%; position: relative; z-index: 3;
  transform: translate(calc(var(--mx) * -1), calc(var(--my) * -1)); transition: transform .25s ease-out;
}
.report-card, .recon-card { padding: 20px; }
.report-card strong, .recon-card strong { display: block; font-family: var(--font-display); font-size: 18px; font-weight: 600; margin: 6px 0 14px; }
.report-card strong { color: #fff; }
.progress { height: 4px; background: #3a3930; margin-bottom: 14px; }
.progress span { display: block; height: 100%; width: 88%; background: var(--honey); }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags li { font-size: 12px; color: var(--on-hive-muted); border: 1px solid var(--line-hive); padding: 2px 8px; }
.recon-card { background: #fffdf6; color: var(--ink); border-color: var(--line); }
.recon-card small { color: var(--muted); }
.recon-head { display: flex; justify-content: space-between; align-items: baseline; }
.recon-head span { font-size: 13px; font-weight: 700; color: #2f8a52; }
.recon-list { display: flex; gap: 6px; }
.recon-list i { flex: 1; height: 8px; background: #bfe3c9; }
.recon-list i:last-child { background: var(--honey); }

/* One orchestrated entrance: hero only */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { animation: rise .8s var(--ease) both; }
  .hero-copy > :nth-child(2) { animation-delay: .06s; }
  .hero-copy > :nth-child(3) { animation-delay: .12s; }
  .hero-copy > :nth-child(4) { animation-delay: .18s; }
  .hero-copy > :nth-child(5) { animation-delay: .24s; }
  .main-card { animation: rise .9s .15s var(--ease) both; }
  .status-pill { animation: rise .7s .7s var(--ease) both; }
  .float-row { animation: rise .8s .55s var(--ease) both; }
  .chart-line { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 1.6s .5s var(--ease) forwards; }
  .chart-area { opacity: 0; animation: fade 1s 1.2s ease forwards; }
}
@keyframes rise { from { opacity: 0; translate: 0 18px; } to { opacity: 1; translate: 0 0; } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fade { to { opacity: 1; } }

/* ---------- Service strip ---------- */
.service-strip { background: var(--honey); }
.service-strip ul { display: flex; justify-content: space-between; gap: 24px; padding-block: 22px; font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -.01em; }
.service-strip li { display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.service-strip li::before { content: ""; width: 12px; height: 10px; background: var(--ink); clip-path: var(--hex); flex: none; }

/* ---------- Shared split heading ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(24px, 5vw, 80px); align-items: end; margin-bottom: clamp(48px, 6vw, 80px); }
.split .body-lg { padding-bottom: 6px; }

/* ---------- Problem ---------- */
.problem { padding-block: var(--section); }
.friction-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.friction-card { background: #fffdf8; border: 1px solid var(--line); padding: 28px; display: flex; flex-direction: column; }
.friction-card h3 { margin-bottom: 10px; }
.friction-card p { font-size: 16px; line-height: 1.6; color: var(--muted); }
.fv { height: 180px; margin: -28px -28px 28px; position: relative; overflow: hidden; background: var(--wax); display: grid; place-items: center; }
.fv-late .ghost { position: absolute; left: 12%; top: 64px; width: 62%; height: 16px; background: #ddd6c4; }
.fv-late .ghost.short { top: 94px; width: 40%; }
.fv-late b { position: absolute; right: 12%; top: 50px; background: var(--ink); color: var(--honey); padding: 14px 16px; font: 700 26px/1 var(--font-display); letter-spacing: -.02em; transform: rotate(3deg); }
.fv-trust span { width: 88px; height: 76px; background: var(--honey); clip-path: var(--hex); display: grid; place-items: center; font: 700 44px/1 var(--font-display); position: relative; z-index: 2; }
.fv-trust i { position: absolute; width: 120px; height: 1px; background: #b0aa98; }
.fv-trust i:nth-of-type(1) { transform: rotate(45deg); }
.fv-trust i:nth-of-type(2) { transform: rotate(-45deg); }
.fv-trust i:nth-of-type(3) { width: 200px; }
.fv-founder span { border: 1px solid var(--ink); background: #fffdf8; padding: 10px 16px; font-size: 14px; font-weight: 600; position: relative; z-index: 2; }
.fv-founder i { position: absolute; width: 22px; height: 19px; background: #d6cfbb; clip-path: var(--hex); }
.fv-founder i:nth-of-type(1) { left: 16%; top: 26%; }
.fv-founder i:nth-of-type(2) { right: 18%; top: 20%; }
.fv-founder i:nth-of-type(3) { left: 24%; bottom: 22%; }
.fv-founder i:nth-of-type(4) { right: 22%; bottom: 26%; }
.fv-founder i:nth-of-type(5) { left: 48%; top: 12%; background: var(--honey); }

/* ---------- Shift (dark) ---------- */
.shift { background: var(--hive); color: var(--on-hive); padding-block: var(--section); position: relative; overflow: hidden; }
.shift-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.shift h2 { color: #fff; margin-bottom: 28px; max-width: 14ch; }
.shift .body-lg { color: var(--on-hive-muted); margin-bottom: 36px; }
.comb { width: 100%; max-width: 560px; margin-inline: auto; overflow: visible; }
.comb .c-ghost { fill: none; stroke: rgba(255, 255, 255, .09); stroke-width: 1; }
.comb .c-node polygon { fill: var(--hive-2); stroke: rgba(255, 255, 255, .16); stroke-width: 1; transition: fill .25s, stroke .25s; }
.comb .c-node:hover polygon { fill: #2a2922; stroke: var(--honey); }
.comb .c-label { fill: #fff; font: 600 19px var(--font-display); text-anchor: middle; dominant-baseline: middle; }
.comb .c-core polygon { fill: var(--honey); }
.comb .c-core-t { fill: var(--ink); font: 700 24px var(--font-display); letter-spacing: -.02em; text-anchor: middle; dominant-baseline: middle; }

/* ---------- Services ---------- */
.services { padding-block: var(--section); }
.service-list { border-top: 1px solid var(--line-strong); }
.service-row {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) 40px; gap: 24px; align-items: center;
  padding: 36px 0; border-bottom: 1px solid var(--line-strong);
  position: relative; isolation: isolate;
}
.service-row::before {
  content: ""; position: absolute; inset: 0 calc(var(--gutter) * -1); z-index: -1;
  background: var(--honey); transform: scaleY(0); transform-origin: bottom;
  transition: transform .35s var(--ease);
}
.service-row:hover::before, .service-row:focus-visible::before { transform: scaleY(1); }
.service-title h3 { font-size: clamp(24px, 2.4vw, 34px); letter-spacing: -.025em; margin-bottom: 10px; }
.tag { display: inline-block; font-size: 13px; font-weight: 500; color: var(--ink-2); border: 1px solid var(--line-strong); padding: 3px 10px; }
.service-row p { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 46ch; }
.service-row:hover p { color: var(--ink-2); }
.service-arrow { width: 28px; height: 28px; justify-self: end; transition: transform .3s var(--ease); }
.service-row:hover .service-arrow { transform: translate(3px, -3px); }

/* ---------- Outcomes ---------- */
.outcomes { background: var(--wax); padding-block: var(--section); }
.outcomes-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: stretch; }
.outcome-statement { display: flex; flex-direction: column; justify-content: space-between; gap: 48px; }
.statement { font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 30px); line-height: 1.3; font-weight: 500; letter-spacing: -.015em; max-width: 26ch; padding-left: 20px; border-left: 4px solid var(--honey); }
.outcome-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-strong); }
.outcome-grid > div { padding: 32px 24px 32px 0; border-bottom: 1px solid var(--line-strong); }
.outcome-grid > div:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line-strong); }
.outcome-grid dt { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -.015em; margin-bottom: 8px; }
.outcome-grid dt::before { content: ""; display: block; width: 18px; height: 16px; background: var(--honey); clip-path: var(--hex); margin-bottom: 40px; }
.outcome-grid dd { font-size: 16px; color: var(--muted); }

/* ---------- Process ---------- */
.process { background: var(--honey); padding-block: var(--section); }
.process .body-lg { color: #4f4829; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(26, 25, 21, .3); counter-reset: s; }
.steps li { padding: 32px 40px 8px 0; }
.steps li + li { padding-left: 40px; border-left: 1px solid rgba(26, 25, 21, .3); }
.step-n { display: grid; place-items: center; width: 44px; height: 38px; background: var(--ink); color: var(--honey); clip-path: var(--hex); font: 700 17px/1 var(--font-display); margin-bottom: 56px; }
.steps h3 { font-size: clamp(22px, 2vw, 28px); letter-spacing: -.02em; margin-bottom: 12px; }
.steps p { font-size: 16px; color: #4f4829; max-width: 38ch; }

/* ---------- Contact ---------- */
.contact { padding-block: var(--section); position: relative; overflow: hidden; isolation: isolate; }
.contact-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 48px; align-items: end; }
.contact::before {
  content: ""; position: absolute; right: -8vw; top: -10%; width: 60vw; max-width: 720px; aspect-ratio: 1; z-index: -1;
  background: radial-gradient(closest-side, rgba(255, 216, 61, .35), rgba(255, 216, 61, 0));
}
.contact h2 { font-size: clamp(44px, 7vw, 104px); line-height: .96; letter-spacing: -.04em; font-weight: 700; max-width: 14ch; margin-bottom: 28px; }
.contact .body-lg { margin-bottom: 36px; }
.contact-note { display: grid; gap: 12px; font-size: 15px; font-weight: 500; color: var(--ink-2); padding-bottom: 12px; }
.contact-note li { display: flex; align-items: center; gap: 10px; }
.contact-note li::before { content: ""; width: 12px; height: 10px; background: var(--honey-deep); clip-path: var(--hex); flex: none; }



/* ---------- Nav dropdowns ---------- */
.nav-group { position: relative; }
.nav-trigger { font: inherit; color: var(--ink-2); background: none; border: 0; padding: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
.nav-trigger::after { content: ""; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); }
.nav-group:hover .nav-trigger, .nav-group:focus-within .nav-trigger { color: var(--ink); }
.nav-panel {
  position: absolute; top: calc(100% + 18px); left: -20px; width: 360px; z-index: 60;
  background: #fffdf8; border: 1px solid var(--line); box-shadow: 0 24px 50px -24px rgba(26, 25, 21, .35);
  padding: 8px; display: grid; opacity: 0; visibility: hidden; translate: 0 6px; transition: opacity .15s, translate .15s, visibility .15s;
}
.nav-panel::before { content: ""; position: absolute; left: 0; right: 0; top: -20px; height: 20px; }
.nav-panel-sm { width: 260px; }
.nav-group:hover .nav-panel, .nav-group:focus-within .nav-panel { opacity: 1; visibility: visible; translate: 0 0; }
.nav-panel a { display: grid; gap: 2px; padding: 12px 14px; color: var(--ink); }
.nav-panel a:hover { background: var(--wax); }
.nav-panel strong { font-weight: 600; font-size: 15px; }
.nav-panel span { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr)); gap: 32px; padding-block: 64px 40px; }
.footer-brand p { font-size: 15px; color: var(--muted); margin: 14px 0 10px; max-width: 26ch; }
.footer-head { display: block; font-family: var(--font-display); font-weight: 600; font-size: 16px; margin-bottom: 14px; }
a.footer-head:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-col ul { display: grid; gap: 8px; }
.footer-col li a { font-size: 14px; color: var(--muted); }
.footer-col li a:hover { color: var(--ink); }
.footer-base { padding-block: 20px 32px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }

/* ---------- Home additions ---------- */
.service-strip a:hover { text-decoration: underline; text-underline-offset: 4px; }
.card-link { background: linear-gradient(var(--ink), var(--ink)) 0 100% / 0 1.5px no-repeat; transition: background-size .25s var(--ease); }
.card-link::after { content: ""; position: absolute; inset: 0; }
.friction-card { position: relative; transition: border-color .2s; }
.friction-card:hover { border-color: var(--ink); }
.friction-card:hover .card-link { background-size: 100% 1.5px; }
.problems-index { padding-block: var(--section); background: var(--wax); }
.problem-columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; margin-bottom: 40px; }
.problem-col-head { display: block; font-family: var(--font-display); font-weight: 600; font-size: 20px; padding-bottom: 14px; margin-bottom: 8px; border-bottom: 1px solid var(--line-strong); }
.problem-columns li a { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 16px; font-weight: 500; }
.problem-columns li a::before { content: ""; width: 10px; height: 9px; background: var(--honey-deep); clip-path: var(--hex); flex: none; }
.problem-columns li a:hover { color: #000; background: linear-gradient(90deg, rgba(255,216,61,.35), transparent 70%); }
.who { padding-block: var(--section); }
.who .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); gap: 16px; }
.page-card, .angle { display: flex; flex-direction: column; gap: 10px; background: #fffdf8; border: 1px solid var(--line); padding: 26px; transition: border-color .2s, transform .2s var(--ease); }
.page-card:hover, .angle:hover { border-color: var(--ink); transform: translateY(-2px); }
.page-card h3, .angle h3 { font-size: 21px; }
.page-card p, .angle p { font-size: 15px; color: var(--muted); line-height: 1.55; flex: 1; }
.page-card-go { font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.page-card-go::after { content: ""; width: 10px; height: 10px; background: var(--honey-deep); clip-path: polygon(0 40%, 60% 40%, 60% 10%, 100% 50%, 60% 90%, 60% 60%, 0 60%); transition: transform .2s var(--ease); }
.page-card:hover .page-card-go::after, .angle:hover .page-card-go::after { transform: translateX(3px); }

/* ---------- Inner pages ---------- */
.page-hero { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(32px, 6vw, 96px); align-items: end; padding-block: clamp(32px, 5vw, 64px) clamp(56px, 7vw, 96px); }
.page-h1 { font-size: clamp(40px, 5vw, 72px); max-width: 18ch; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--line-strong); }
.crumbs a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.toc { border-left: 3px solid var(--honey); padding: 4px 0 4px 20px; }
.toc-title { font-size: 14px; font-weight: 600; color: var(--muted); margin-bottom: 10px; }
.toc ol { display: grid; gap: 8px; counter-reset: t; }
.toc a { font-size: 15px; font-weight: 500; color: var(--ink-2); }
.toc a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.block { padding-block: clamp(72px, 9vw, 120px); }
.block h2, .faq h2, .cta-band h2, .problems-index h2, .who h2 { font-size: clamp(30px, 3.4vw, 50px); }
.block-wax { background: var(--wax); }
.block-hive { background: var(--hive); color: var(--on-hive); }
.block-hive h2 { color: #fff; margin-bottom: clamp(36px, 5vw, 56px); max-width: 20ch; }
.split-top { align-items: start; margin-bottom: 0; }
.split-top .body-lg { margin-top: 20px; }
.h2-sm { font-size: clamp(28px, 3vw, 40px); margin-bottom: 32px; }

.signs { display: grid; gap: 10px; }
.signs li { display: flex; gap: 14px; align-items: center; background: #fffdf8; border: 1px solid var(--line); padding: 18px 20px; font-weight: 500; }
.signs li::before { content: ""; width: 16px; height: 14px; background: var(--honey); clip-path: var(--hex); flex: none; }

.fix-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.fix-steps li { background: #fffdf8; border: 1px solid var(--line); padding: 26px; }
.fix-steps .step-n { margin-bottom: 36px; }
.fix-steps h3 { font-size: 20px; margin-bottom: 8px; }
.fix-steps p { font-size: 15px; color: var(--muted); line-height: 1.55; }

.seg-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.seg-card { background: var(--hive-2); border: 1px solid var(--line-hive); padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.seg-hex { width: 30px; height: 26px; background: var(--honey); clip-path: var(--hex); margin-bottom: 8px; }
.seg-card h3 { color: #fff; font-size: 22px; }
.seg-card p { color: var(--on-hive-muted); font-size: 16px; line-height: 1.6; flex: 1; }
.seg-link { color: var(--honey); font-weight: 600; font-size: 15px; }
.seg-link:hover { text-decoration: underline; text-underline-offset: 3px; }

.faq { padding-block: clamp(72px, 9vw, 120px); }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq details { border-bottom: 1px solid var(--line-strong); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 24px; align-items: center; padding: 22px 0; font-family: var(--font-display); font-weight: 600; font-size: 19px; line-height: 1.3; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { position: relative; width: 16px; height: 16px; flex: none; }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 2px; background: var(--ink); transition: transform .2s var(--ease); }
.faq summary i::after { transform: rotate(90deg); }
.faq details[open] summary i::after { transform: rotate(0); }
.faq details p { padding: 0 40px 24px 0; color: var(--muted); max-width: 64ch; }
.related { padding-top: 0; }

.include-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); gap: 16px; margin-top: 40px; }
.include { border-top: 3px solid var(--honey); padding-top: 22px; }
.include h3 { font-size: 21px; margin-bottom: 8px; }
.include p { color: var(--muted); font-size: 16px; }

.tools-label { font-size: 14px; font-weight: 600; color: var(--muted); margin: 28px 0 12px; }
.tools { display: flex; flex-wrap: wrap; gap: 8px; }
.tools li { border: 1px solid var(--line-strong); padding: 6px 12px; font-size: 14px; font-weight: 500; background: #fffdf8; }
.angle-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 40px; }

.table-scroll { overflow-x: auto; border: 1px solid var(--line-strong); }
.compare { width: 100%; min-width: 820px; border-collapse: collapse; font-size: 15px; }
.compare th, .compare td { text-align: left; vertical-align: top; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.compare thead th { font-family: var(--font-display); font-size: 17px; font-weight: 600; background: var(--wax); }
.compare tbody th { font-weight: 600; width: 20%; }
.compare td { color: var(--ink-2); }
.compare .is-us { background: rgba(255, 216, 61, .28); }
.compare thead .is-us { background: var(--honey); }

.cta-band { background: var(--honey); padding-block: clamp(64px, 8vw, 104px); }
.cta-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: end; }
.cta-band h2 { max-width: 18ch; margin-bottom: 16px; }
.cta-band .body-lg { color: #4f4829; }

/* ---------- Tablet ---------- */
@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .header-cta { display: none; }
  .menu-btn {
    display: grid; place-items: center; gap: 6px; align-content: center;
    width: 44px; height: 44px; border: 1px solid var(--ink); background: transparent; cursor: pointer; justify-self: end;
  }
  .menu-btn i { display: block; width: 18px; height: 1.5px; background: var(--ink); transition: transform .2s var(--ease); }
  .is-open .menu-btn i:first-of-type { transform: translateY(3.75px) rotate(45deg); }
  .is-open .menu-btn i:last-of-type { transform: translateY(-3.75px) rotate(-45deg); }
  .is-open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 24px;
  }
  .is-open .nav-links a { padding: 16px 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--ink); }
  .is-open .nav-cta-mobile { display: block; border-bottom: 0 !important; margin-top: 12px; background: var(--ink); color: var(--paper) !important; text-align: center; font-family: var(--font-body) !important; font-size: 16px !important; }

  .hero { grid-template-columns: 1fr; }
  .hero-visual { max-width: 640px; }
  .split { grid-template-columns: 1fr; align-items: start; }
  .shift-inner { grid-template-columns: 1fr; }
  .comb { max-width: 480px; }
  .outcomes-layout { grid-template-columns: 1fr; }
  .service-strip ul { display: grid; grid-template-columns: 1fr; gap: 12px 24px; }
  .is-open .nav-group { border-bottom: 1px solid var(--line); padding: 12px 0; }
  .is-open .nav-trigger { font-size: 13px; font-weight: 600; color: var(--muted); pointer-events: none; }
  .is-open .nav-trigger::after { display: none; }
  .is-open .nav-panel { position: static; opacity: 1; visibility: visible; translate: none; width: auto; box-shadow: none; border: 0; background: none; padding: 0; }
  .is-open .nav-panel::before { display: none; }
  .is-open .nav-panel a { padding: 10px 0; border: 0 !important; }
  .is-open .nav-panel a strong { font-family: var(--font-display); font-size: 20px; }
  .is-open .nav-panel span { display: none; }
  .is-open .nav-links { max-height: calc(100dvh - 64px); overflow-y: auto; }
  .page-hero { grid-template-columns: 1fr; }
  .toc { display: none; }
  .fix-steps { grid-template-columns: 1fr 1fr; }
  .seg-grid { grid-template-columns: 1fr; }
  .problem-columns { grid-template-columns: 1fr; gap: 32px; }
  .who .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---------- Phone ---------- */
@media (max-width: 720px) {
  body { font-size: 16px; }
  .site-header { height: 64px; }
  html { scroll-padding-top: 72px; }
  .brand { font-size: 19px; }
  .hero-proof { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .hero-proof > div { display: grid; grid-template-columns: 90px 1fr; gap: 12px; align-items: baseline; }
  .hero-proof dd { margin: 0; }
  .hero-actions .btn { width: 100%; justify-content: space-between; }
  .main-card { padding: 20px; }
  .service-strip li { white-space: normal; }
  .metric + .metric { padding-left: 16px; }
  .chart { height: 110px; }
  .float-row { grid-template-columns: 1fr; margin: 12px 0 0; width: 100%; gap: 12px; }
  .status-pill { position: relative; justify-self: start; margin-bottom: 12px; width: max-content; }
  .hero-visual { display: grid; padding-top: 0; }
  .service-strip ul { font-size: 16px; }
  .friction-grid { grid-template-columns: 1fr; }
  .fv { height: 150px; }
  .fv-late .ghost { top: 50px; } .fv-late .ghost.short { top: 80px; } .fv-late b { top: 40px; }
  .service-row { grid-template-columns: 1fr 28px; gap: 12px; padding: 28px 0; }
  .service-title { grid-column: 1; }
  .service-arrow { grid-column: 2; grid-row: 1; align-self: start; }
  .service-row p { grid-column: 1 / -1; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-grid > div, .outcome-grid > div:nth-child(even) { padding: 24px 0; border-left: 0; }
  .outcome-grid dt::before { margin-bottom: 20px; }
  .steps { grid-template-columns: 1fr; }
  .steps li, .steps li + li { padding: 28px 0; border-left: 0; }
  .steps li + li { border-top: 1px solid rgba(26, 25, 21, .3); }
  .step-n { margin-bottom: 24px; }
  .comb .c-label { font-size: 23px; }
  .comb .c-core-t { font-size: 27px; }
  .contact-inner { grid-template-columns: 1fr; }
  .fix-steps { grid-template-columns: 1fr; }
  .angle-list { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-band .btn { width: 100%; justify-content: space-between; }
  .faq summary { font-size: 17px; }
  .faq details p { padding-right: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact .btn { width: 100%; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation: none !important; }
  .main-card, .status-pill, .float-row { transform: none !important; }
}
