/* Influencer Advisory Consulting — light editorial theme (serif display, emerald-green accents) */

:root {
  --bg: #e9f0ec;
  --bg-2: #eef4f0;
  --surface: #ffffff;
  --surface-2: #f2f8f4;
  --line: rgba(18, 40, 30, 0.12);
  --line-strong: rgba(18, 40, 30, 0.22);

  --green: #0d6b45;         /* primary action — deep emerald */
  --green-bright: #12915e;
  --accent: #0f7c4f;        /* headline highlight + underline (emerald) */
  --accent-soft: #4faa84;
  --glow: rgba(15, 124, 79, 0.30);

  --text: #14241c;          /* near-black green-ink */
  --muted: #54675b;
  --muted-2: #8a9b8f;

  --maxw: 1320px;
  --gut: clamp(20px, 5vw, 70px);
  --radius: 18px;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); position: relative; z-index: 2; }

/* ---------- Soft animated background ---------- */
.bg-fx { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.bg-fx .blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; will-change: transform; }
.b1 { width: 50vw; height: 50vw; left: -10vw; top: -14vw; background: radial-gradient(circle at 40% 40%, rgba(72,180,128,0.50), transparent 62%); animation: drift1 24s ease-in-out infinite; }
.b2 { width: 44vw; height: 44vw; right: -8vw; top: -6vw; background: radial-gradient(circle at 60% 40%, rgba(110,200,160,0.42), transparent 62%); animation: drift2 29s ease-in-out infinite; }
.b3 { width: 40vw; height: 40vw; left: 22vw; top: 6vw; background: radial-gradient(circle at 50% 50%, rgba(150,205,175,0.32), transparent 62%); opacity: 0.4; animation: drift3 33s ease-in-out infinite; }
.bg-fx::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, transparent 30%, var(--bg) 72%); }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(7vw, 5vh) scale(1.12); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1.05); } 50% { transform: translate(-6vw, 4vh) scale(0.95); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(0.9); } 50% { transform: translate(5vw, -4vh) scale(1.1); } }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: -0.015em; color: var(--text); }
.display { font-family: var(--serif); font-weight: 500; font-size: clamp(2.1rem, 4.4vw, 3.4rem); line-height: 1.1; letter-spacing: -0.015em; }
.display em, .accent { font-style: normal; color: var(--accent); box-shadow: inset 0 -0.08em 0 rgba(15,124,79,0.30); }
.h-sec { font-size: clamp(2.1rem, 5vw, 4.2rem); font-weight: 500; }
.eyebrow { font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); display: inline-block; }
.eyebrow .hl { color: var(--accent); box-shadow: inset 0 -2px 0 rgba(15,124,79,0.45); }
.lead { font-size: clamp(1.02rem, 1.5vw, 1.28rem); color: var(--muted); max-width: 58ch; line-height: 1.55; }
.grad { color: var(--accent); }
.muted { color: var(--muted); }

/* ---------- Pills ---------- */
.pill { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 18px; border-radius: 50px; background: rgba(15, 124, 79, 0.08); border: 1px solid var(--line); font-family: var(--sans); font-size: 0.95rem; color: var(--text); transition: background 0.3s, border-color 0.3s, transform 0.4s var(--ease), color 0.3s; }
.pill:hover { background: rgba(15, 124, 79, 0.16); border-color: var(--accent); transform: translateY(-2px); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 26px; font-family: var(--sans); font-weight: 500; font-size: 0.98rem; border-radius: 100px; border: 1px solid transparent; cursor: pointer; transition: transform 0.4s var(--ease), background 0.3s, box-shadow 0.4s, border-color 0.3s; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 12px 30px -12px var(--glow); }
.btn-primary:hover { background: var(--green-bright); transform: translateY(-2px); box-shadow: 0 18px 44px -12px var(--glow); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn .arr { transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translate(4px, -4px); }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 60; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 20px var(--gut); transition: padding 0.4s, background 0.4s, backdrop-filter 0.4s, border-color 0.4s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(236, 238, 244, 0.78); backdrop-filter: blur(14px) saturate(140%); border-bottom: 1px solid var(--line); padding-top: 13px; padding-bottom: 13px; }
.nav-left { justify-self: start; min-width: 0; }
.nav-center { justify-self: center; min-width: 0; }
.nav-right { justify-self: end; display: flex; align-items: center; gap: 16px; min-width: 0; }
.menu-btn { height: 40px; padding: 0 20px; }
.wordmark { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-weight: 600; font-size: clamp(0.98rem, 1.4vw, 1.15rem); letter-spacing: -0.01em; color: var(--text); white-space: nowrap; }
.wordmark svg, .wordmark img { height: 30px; width: auto; filter: hue-rotate(-74deg) saturate(1.05); }
.wordmark span { color: var(--accent); font-style: italic; }
.clock { font-family: var(--sans); font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.mail { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--text); transition: border-color 0.3s, background 0.3s, transform 0.4s var(--ease); }
.mail:hover { border-color: var(--green); background: rgba(15,124,79,0.10); transform: translateY(-2px); }

/* ---------- Overlay menu ---------- */
.overlay { position: fixed; inset: 0; z-index: 70; background: rgba(236, 238, 244, 0.97); backdrop-filter: blur(20px); display: flex; flex-direction: column; padding: 28px var(--gut) 40px; opacity: 0; visibility: hidden; overflow-y: auto; transition: opacity 0.5s var(--ease), visibility 0.5s; }
.overlay.open { opacity: 1; visibility: visible; }
.overlay-top { display: flex; justify-content: space-between; align-items: center; }
.overlay-close { height: 40px; padding: 0 20px; }
.overlay-nav { margin: auto 0; display: flex; flex-direction: column; gap: clamp(4px, 1vh, 12px); }
.overlay-nav a { font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem, 5vw, 3.4rem); line-height: 1.06; letter-spacing: -0.02em; color: var(--text); width: max-content; max-width: 100%; transition: color 0.3s, transform 0.5s var(--ease); }
.overlay-nav a:hover { color: var(--accent); transform: translateX(18px); font-style: italic; }
.overlay-foot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: 0.92rem; border-top: 1px solid var(--line); padding-top: 24px; }
.overlay-foot a { color: var(--accent); }

/* ---------- Masked line reveal ---------- */
.line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.line > span { display: block; will-change: transform; }
html.no-js .line > span { transform: none; }

/* ---------- Hero (home) — centered ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 150px 0 9vh; }
.hero .eyebrow-wrap { margin-bottom: 30px; max-width: 46ch; }
.hero .eyebrow { display: inline; font-size: 0.8rem; line-height: 2; }
.hero .eyebrow::before { display: none; }
.hero .display { max-width: none; }
.hero-sub { margin-top: 30px; max-width: 60ch; margin-left: auto; margin-right: auto; }
.hero-cta { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-stats { margin-top: 8vh; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; border-top: 1px solid var(--line); padding-top: 30px; width: 100%; max-width: 980px; }
.stat .n { font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 3.2rem); font-weight: 500; letter-spacing: -0.02em; }
.stat .l { color: var(--muted); font-size: 0.9rem; margin-top: 4px; font-family: var(--sans); }

/* page hero (inner pages) — centered too, lighter */
.hero-page { position: relative; text-align: center; padding: clamp(150px, 23vh, 250px) 0 clamp(50px, 9vh, 100px); }
.hero-page .display { max-width: 18ch; margin: 0 auto; }
.hero-page .lead { margin: 26px auto 0; }
.hero-page .eyebrow { justify-content: center; }
.hero-page .hero-cta { margin-top: 36px; justify-content: center; }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; overflow: hidden; white-space: nowrap; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: inline-flex; gap: 56px; animation: scrollx 30s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 2vw, 1.9rem); color: var(--muted-2); display: inline-flex; align-items: center; gap: 56px; }
.marquee-track span::after { content: "✦"; color: var(--accent); font-size: 0.55em; font-style: normal; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
section { position: relative; padding: clamp(80px, 13vh, 150px) 0; }
.sec-head { max-width: 64ch; margin-bottom: 56px; }
.sec-head h2 { margin-top: 18px; }
.sec-head p { margin-top: 20px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px 38px; position: relative; overflow: hidden; transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.4s; box-shadow: 0 1px 0 rgba(22,28,46,0.02); }
.card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 24px 50px -28px var(--glow); }
.card .art { width: 86px; height: 86px; margin-bottom: 24px; }
.card .art img, .card .art svg { width: 100%; height: 100%; display: block; border-radius: 22px; object-fit: cover; box-shadow: 0 10px 24px -12px var(--glow); }
.card h3 { font-size: 1.7rem; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.98rem; }
.card .num { position: absolute; top: 24px; right: 26px; font-family: var(--serif); font-style: italic; color: var(--muted-2); font-size: 1rem; }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 6vw, 90px); align-items: center; }
.split + .split { margin-top: clamp(70px, 11vh, 130px); }
.split.rev .split-media { order: -1; }
.split-media { aspect-ratio: 4 / 3.4; border-radius: var(--radius); border: 1px solid var(--line); background: radial-gradient(80% 80% at 30% 20%, rgba(96, 188, 142, 0.28), transparent 60%), linear-gradient(160deg, #fff, var(--bg-2)); position: relative; overflow: hidden; display: grid; place-items: center; }
.split-media .badge { font-family: var(--serif); font-style: italic; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 500; color: var(--text); opacity: 0.95; padding: 0 20px; text-align: center; }
.split-media .ring { position: absolute; width: 120%; aspect-ratio: 1; border-radius: 50%; border: 1px solid var(--line-strong); }
.split h3 { font-size: clamp(1.9rem, 3.2vw, 2.9rem); margin-bottom: 18px; }
.split ul { list-style: none; margin-top: 24px; display: grid; gap: 12px; }
.split ul li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.split ul li::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: 4px; border-radius: 6px; background: rgba(13,107,69,.1); border: 1px solid rgba(13,107,69,.32); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230d6b45' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

.cases { display: grid; gap: 16px; }
.case { display: grid; grid-template-columns: 0.7fr 1.6fr 0.7fr; gap: 30px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 34px; background: var(--surface); transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.4s; }
.case:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 24px 50px -30px var(--glow); }
.case .tag { font-family: var(--sans); color: var(--green); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }
.case h3 { font-size: 1.7rem; margin-bottom: 8px; }
.case p { color: var(--muted); font-size: 0.96rem; }
.case .metric { text-align: right; }
.case .metric .n { font-family: var(--serif); font-size: clamp(2rem, 3vw, 3rem); font-weight: 500; letter-spacing: -0.02em; color: var(--text); }
.case .metric .l { color: var(--muted); font-size: 0.82rem; }

.band { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band .grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.band .stat .n { color: var(--green); }

.steps { display: grid; }
.step { display: grid; grid-template-columns: 90px 1fr; gap: 30px; padding: 36px 0; border-top: 1px solid var(--line); align-items: start; }
.step:last-child { border-bottom: 1px solid var(--line); }
.step .si { font-family: var(--serif); font-style: italic; font-size: 1.8rem; color: var(--accent); }
.step h3 { font-size: 1.7rem; margin-bottom: 10px; }
.step p { color: var(--muted); max-width: 70ch; }

.cta { text-align: center; border: 1px solid var(--line); border-radius: 28px; padding: clamp(50px, 9vw, 120px) var(--gut); background: radial-gradient(60% 100% at 50% 0%, rgba(96, 188, 142, 0.22), transparent 70%), var(--surface); position: relative; overflow: hidden; }
.cta h2 { font-size: clamp(2.4rem, 6.5vw, 5.5rem); margin-bottom: 22px; font-weight: 500; }
.cta p { margin: 0 auto 38px; }
.cta .hero-cta { justify-content: center; }

.bio { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(30px, 6vw, 80px); align-items: center; text-align: left; }
.bio-portrait { aspect-ratio: 1; border-radius: 24px; border: 1px solid var(--line); background: radial-gradient(70% 70% at 50% 25%, rgba(96,188,142,.3), transparent 60%), linear-gradient(160deg, #fff, var(--bg-2)); display: grid; place-items: center; }
.bio-portrait .mono { font-family: var(--serif); font-style: italic; font-size: clamp(3rem,8vw,6rem); font-weight: 500; color: var(--accent); }
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }
.value { border: 1px solid var(--line); border-radius: 14px; padding: 24px; background: var(--surface); }
.value h4 { font-size: 1.3rem; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: 0.92rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,6vw,70px); align-items: start; text-align: left; }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; background: var(--surface); }
.contact-card h3 { font-size: 1.6rem; margin-bottom: 14px; }
.contact-card a.big { font-family: var(--serif); font-size: clamp(1.3rem,2.4vw,1.9rem); color: var(--green); }
.contact-list { display: grid; gap: 14px; margin-top: 22px; }
.contact-list .row { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 14px; gap: 16px; }
.contact-list .row span:first-child { color: var(--muted); }

.faq { display: grid; margin-top: 10px; text-align: left; }
.qa { border-top: 1px solid var(--line); padding: 26px 0; }
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa h4 { font-size: 1.35rem; margin-bottom: 10px; }
.qa p { color: var(--muted); max-width: 80ch; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 70px 0 50px; margin-top: clamp(60px,10vh,120px); }
.foot-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.foot-cols { display: flex; gap: 70px; flex-wrap: wrap; }
.foot-col h5 { font-family: var(--sans); font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.foot-col a { display: block; color: var(--muted); padding: 5px 0; transition: color 0.25s; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 0.86rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); }
.anim-in { opacity: 0; transform: translateY(18px); }
html.no-js .reveal, html.no-js .anim-in { opacity: 1; transform: none; }
.page-veil { position: fixed; inset: 0; z-index: 200; background: var(--green); transform: scaleY(0); transform-origin: bottom; pointer-events: none; }

/* ---------- Home long-form pitch (ported /intro-detailed copy) ---------- */
/* Hero eyebrow is a long phrase, so emphasis is accent COLOR only — the underline
   highlight is for single words and reads like a broken link when a phrase wraps. */
.hero .eyebrow-wrap { max-width: 58ch; }
.hero .eyebrow { letter-spacing: 0.16em; }
.hero .eyebrow .hl { box-shadow: none; }
.h2-pitch { font-family: var(--serif); font-weight: 500; font-size: clamp(1.6rem, 2.9vw, 2.4rem); line-height: 1.12; letter-spacing: -0.015em; color: var(--text); max-width: 22ch; }

.prose { max-width: 62ch; }
.prose .eyebrow { margin-bottom: 16px; }
.prose h2 { margin-bottom: 22px; }
.prose p { color: var(--muted); font-size: clamp(1rem, 1.15vw, 1.08rem); line-height: 1.75; }
.prose p + p { margin-top: 1.05em; }

/* ---------- Narrative story panel (home: agitation / not-your-fault / a-different-way) ---------- */
.story { max-width: 760px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line); border-radius: 26px; padding: clamp(30px, 5vw, 60px); text-align: center; position: relative; overflow: hidden; box-shadow: 0 34px 70px -46px var(--glow); }
.story::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--accent), var(--green-bright), transparent); opacity: 0.85; }
.story .eyebrow { justify-content: center; margin-bottom: 14px; }
.story .eyebrow::before { display: none; }
.story h2 { margin: 0 auto 22px; max-width: 24ch; }
.story p { color: var(--muted); font-size: clamp(1rem, 1.2vw, 1.1rem); line-height: 1.78; max-width: 56ch; margin-inline: auto; text-align: left; }
.story p + p { margin-top: 1.15em; }
.story .pull { margin: 26px auto; text-align: center; max-width: 30ch; }
.story .painlist, .story .checklist { margin-left: auto; margin-right: auto; text-align: left; }
.story + .story { margin-top: clamp(20px, 3vh, 34px); }

/* three-point break-up row inside a story panel */
.story-points { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 30px auto 4px; max-width: 100%; text-align: left; }
.story-points li { background: var(--surface-2); border: 1px solid var(--line); border-radius: 16px; padding: 20px 18px; }
.story-points .k { display: block; font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--accent); margin-bottom: 8px; }
.story-points p { font-size: 0.96rem; line-height: 1.6; margin: 0; max-width: none; }
@media (max-width: 680px) { .story-points { grid-template-columns: 1fr; } }

.pull { font-family: var(--serif); font-weight: 500; font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.25; letter-spacing: -0.015em; color: var(--text); max-width: 28ch; margin: clamp(28px, 4vh, 44px) 0; }
.pull em, .pull .accent { font-style: normal; color: var(--accent); box-shadow: inset 0 -0.08em 0 rgba(15,124,79,0.30); }

.painlist { list-style: none; display: grid; gap: 18px; margin-top: 44px; max-width: 64ch; }
.painlist li { display: flex; gap: 16px; align-items: flex-start; color: var(--text); font-size: clamp(1.05rem, 1.6vw, 1.22rem); line-height: 1.5; }
.painlist li::before { content: ""; flex: none; width: 22px; height: 2px; margin-top: 0.72em; border-radius: 2px; background: var(--accent); }

.compare { margin-top: 44px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.compare .chead { display: grid; grid-template-columns: 1fr 1fr; }
.compare .chead > div { font-family: var(--serif); font-weight: 500; font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.1; padding: 24px 24px; }
.compare .chead > div:first-child { color: var(--muted); border-right: 1px solid var(--line); background: var(--surface-2); }
.compare .chead > div:last-child { color: var(--accent); }
.compare .crow { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.compare .crow > div { padding: 18px 24px; display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; line-height: 1.5; color: var(--text); }
.compare .crow > div:first-child { color: var(--muted); background: var(--surface-2); border-right: 1px solid var(--line); }
.compare .crow .mk { flex: none; margin-top: 1px; font-weight: 700; }
.compare .crow > div:first-child .mk { color: var(--muted-2); }
.compare .crow > div:last-child .mk { color: var(--accent); }

.segs { display: grid; gap: clamp(32px, 5vh, 44px); margin-top: 56px; max-width: 66ch; }
.seg { border-left: 2px solid var(--accent); padding-left: clamp(18px, 3vw, 28px); }
.seg h3 { font-size: clamp(1.45rem, 2.6vw, 2.05rem); margin-bottom: 14px; max-width: 26ch; }
.seg p { color: var(--muted); line-height: 1.65; }
.seg p + p { margin-top: 12px; }

.checklist { list-style: none; display: grid; gap: 15px; margin-top: 40px; max-width: 64ch; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; color: var(--text); font-size: clamp(1.02rem, 1.5vw, 1.16rem); line-height: 1.55; }
.checklist li::before { content: ""; flex: none; width: 20px; height: 20px; margin-top: 3px; border-radius: 6px; background: rgba(13,107,69,.1); border: 1px solid rgba(13,107,69,.32); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230d6b45' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

.band-head { text-align: center; font-family: var(--sans); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 44px; }
.band-foot { margin: 44px auto 0; text-align: center; }
.band .stat { text-align: center; }
.band .stat .note { display: block; color: var(--muted-2); font-style: italic; font-size: 0.78rem; line-height: 1.4; margin-top: 8px; max-width: 24ch; margin-left: auto; margin-right: auto; }

.callout { max-width: 760px; border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: 16px; background: var(--surface); padding: clamp(26px, 4vw, 38px); }
.callout .eyebrow { margin-bottom: 14px; }
.callout p { color: var(--muted); line-height: 1.65; max-width: 62ch; }
.callout p + p { margin-top: 14px; }

.ps { max-width: 680px; display: grid; gap: 18px; }
.ps p { color: var(--muted); line-height: 1.7; }
.ps .tag { font-family: var(--sans); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-right: 10px; }

@media (max-width: 600px) {
  .compare .chead, .compare .crow { grid-template-columns: 1fr; }
  .compare .chead > div:first-child, .compare .crow > div:first-child { border-right: none; border-bottom: 1px solid var(--line); }
}

/* ---------- Responsive ---------- */
/* Hide the clock before the centered wordmark can crowd the right cluster off-screen. */
@media (max-width: 1120px) { .clock { display: none; } }
@media (max-width: 960px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .split, .split.rev { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .bio, .contact-grid { grid-template-columns: 1fr; }
  .band .grid4 { grid-template-columns: 1fr 1fr; }
  .case { grid-template-columns: 1fr; gap: 14px; }
  .case .metric { text-align: left; }
  .clock { display: none; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav { padding: 14px var(--gut); }
  .wordmark span { display: none; }
  .cards { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .band .grid4 { grid-template-columns: 1fr 1fr; }
  .foot-cols { gap: 40px; }
  .hero { min-height: 90svh; padding-top: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .anim-in { opacity: 1 !important; transform: none !important; }
  .line > span { transform: none !important; }
  .marquee-track, .bg-fx .blob { animation: none; }
  * { scroll-behavior: auto !important; }
}
