/* ============================================================
   nanoTK — clean corporate design system (hand-authored)
   Soft Structuralism: light, airy, premium. AA contrast.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg:        #F4F7FC;
  --surface:   #FFFFFF;
  --surface-2: #FBFCFE;

  --ink:   #0A1F44;   /* headings */
  --body:  #46566F;   /* paragraphs */
  --muted: #7C8AA3;   /* captions  */

  --brand:     #0047AB;
  --brand-700: #00347E;
  --brand-50:  #EAF1FB;
  --accent:    #E31837; /* logo only */

  --line:      rgba(10, 31, 68, .09);
  --line-soft: rgba(10, 31, 68, .055);

  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 10px -4px rgba(10, 31, 68, .12);
  --shadow:    0 22px 50px -26px rgba(0, 60, 140, .28);
  --shadow-lg: 0 36px 80px -32px rgba(0, 60, 140, .34);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --container: 1200px;
  --header-h: 124px;

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
h1, h2, h3, .hero__title, .h1, .h2 { overflow-wrap: break-word; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }
::selection { background: rgba(0,71,171,.16); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.025em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.stack > * + * { margin-top: 1.25rem; }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-50);
  border: 1px solid rgba(0,71,171,.14);
  padding: .45rem 1rem; border-radius: var(--r-pill);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }

.section-head { max-width: 46rem; margin-inline: auto; }
.section-head.left { margin-inline: 0; }
.h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
.h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); font-weight: 800; }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--body); line-height: 1.7; }
.sub { color: var(--muted); margin-top: .85rem; }

/* ---------- Buttons (AA contrast guaranteed) ---------- */
.btn {
  --bw: 0;
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem;
  padding: .9rem 1rem .9rem 1.6rem;
  border-radius: var(--r-pill); border: var(--bw) solid transparent;
  cursor: pointer; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn__ic {
  display: grid; place-items: center; width: 2rem; height: 2rem;
  border-radius: var(--r-pill); font-size: 1rem; line-height: 1;
  transition: transform .35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.98); }
.btn:hover .btn__ic { transform: translate(3px, -1px); }

.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 16px 34px -16px rgba(0,71,171,.65); }
.btn--primary:hover { background: var(--brand-700); box-shadow: 0 20px 42px -16px rgba(0,71,171,.7); }
.btn--primary .btn__ic { background: rgba(255,255,255,.18); color: #fff; }

.btn--ghost { background: var(--surface); color: var(--brand); --bw: 1.5px; border-color: rgba(0,71,171,.28); }
.btn--ghost:hover { border-color: var(--brand); background: var(--brand-50); }
.btn--ghost .btn__ic { background: var(--brand-50); color: var(--brand); }

.btn--light { background: #fff; color: var(--brand); }
.btn--light:hover { background: #eef4fd; }
.btn--light .btn__ic { background: rgba(0,71,171,.10); color: var(--brand); }

/* ---------- Cards (double-bezel: outer line + inner highlight) ---------- */
.card {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.9);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow), inset 0 1px 0 #fff; border-color: rgba(0,71,171,.18); }
.card__ic {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  display: grid; place-items: center; color: var(--brand);
  background: linear-gradient(150deg, rgba(0,71,171,.14), rgba(0,71,171,.05));
  box-shadow: inset 0 1px 1px rgba(255,255,255,.7);
  margin-bottom: 1.25rem;
}
.card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .55rem; }
.card p  { color: var(--body); font-size: .96rem; }

.feature-list { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: .6rem; }
.feature-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; color: var(--body); }
.feature-list li::before {
  content: ""; flex: none; width: 18px; height: 18px; margin-top: .12rem; border-radius: 50%;
  background: var(--brand-50) 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='%230047AB' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* Grids */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Stats */
.stat { text-align: center; padding: 1.5rem 1rem; }
.stat b {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--brand);
  font-variant-numeric: tabular-nums; letter-spacing: -.02em;
}
.stat span { font-size: .88rem; color: var(--muted); }
.stat small { display:block; color: var(--body); font-size: .82rem; margin-top:.4rem; }

/* ---------- Header (floating, offset from top, always readable) ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 2.6rem clamp(1rem, 4vw, 2.5rem) 0;
  transition: padding .3s var(--ease);
}
.site-header__bar {
  max-width: var(--container);
  margin-inline: auto;          /* centered — single source of truth */
  padding: .6rem .8rem .6rem 1.6rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.80);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: var(--r-pill);
  box-shadow: 0 12px 40px -22px rgba(0,60,140,.4);
  transition: box-shadow .35s var(--ease), background .35s var(--ease);
}
.site-header.is-scrolled { padding-top: 1.1rem; }
.site-header.is-scrolled .site-header__bar { background: rgba(255,255,255,.92); box-shadow: 0 16px 44px -20px rgba(0,60,140,.5); }
.brand img { height: 62px; width: auto; }
.nav { display: flex; align-items: center; gap: .4rem; }
.nav a {
  font-weight: 600; font-size: .95rem; color: var(--ink);
  padding: .55rem .9rem; border-radius: var(--r-pill);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a:hover { color: var(--brand); background: var(--brand-50); }
.nav .btn { margin-left: .4rem; padding: .65rem .8rem .65rem 1.3rem; font-size: .92rem; }

.burger {
  display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line);
  background: #fff; border-radius: var(--r-pill); cursor: pointer; position: relative;
  box-shadow: var(--shadow-sm);
}
.burger span {
  position: absolute; left: 12px; right: 12px; height: 2.5px; border-radius: 2px;
  background: var(--ink); transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 95; background: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.75rem;
  opacity: 0; pointer-events: none; transform: translateY(-12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.menu-open .drawer { opacity: 1; pointer-events: auto; transform: none; }
.drawer a { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; color: var(--ink); }
.drawer a:hover { color: var(--brand); }
.drawer .btn { font-size: 1.05rem; margin-top: .5rem; }
body.nav-lock { overflow: hidden; }

/* ---------- Hero (animated gradient mesh, light, readable) ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: calc(var(--header-h) + 3.5rem); padding-bottom: 6rem;
  background: var(--bg);
}
/* Hero background = animated GLSL hills canvas (see hero-gl.js).
   Soft base gradient shows before WebGL inits / if it's unavailable. */
.hero__mesh {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  background:
    radial-gradient(820px 460px at 78% -6%, rgba(0,71,171,.12), transparent 60%),
    radial-gradient(620px 420px at 4% 0%, rgba(227,24,55,.06), transparent 55%),
    var(--bg);
}
.hero__mesh canvas { position: absolute; inset: 0; width: 100% !important; height: 100% !important; display: block; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: linear-gradient(rgba(10,31,68,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(10,31,68,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 50% 35%, #000, transparent 75%);
  mask-image: radial-gradient(circle at 50% 35%, #000, transparent 75%);
}
.hero .container { position: relative; z-index: 2; max-width: 70rem; }
.hero .eyebrow { margin-bottom: 2.25rem; }
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 800; color: var(--ink);
  letter-spacing: -.03em; line-height: 1.08;
  max-width: 22ch; text-wrap: balance;
}
.hero__say { font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 700; color: var(--ink); margin-top: 1.5rem; }
.hero__title .tw { color: var(--brand); }
.cursor { display:inline-block; width:3px; margin-left:3px; background: var(--brand); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero__rotor { display:inline-grid; }
.hero__rotor span { grid-area: 1/1; opacity: 0; transform: translateY(.4em); transition: opacity .5s var(--ease), transform .5s var(--ease); color: var(--brand); }
.hero__rotor span.on { opacity: 1; transform: none; }
.hero__lede { max-width: 40rem; margin-top: 2.25rem; font-size: clamp(1.05rem,1.4vw,1.18rem); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.75rem; }
.hero .figures { margin-top: 4rem; }
.hero__stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 3.5rem; }
.hero__stats .card { padding: 1.4rem 1rem; text-align: center; }

/* ---------- Section building blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.partners {
  text-align: center; background: var(--surface); border-block: 1px solid var(--line);
}
.partners .row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; margin-top: 2rem; }
.partners .row span { color: var(--muted); font-weight: 700; font-family: var(--font-display); letter-spacing: .04em; opacity:.7; }

.casecard {
  background: linear-gradient(135deg, var(--brand), #06245C);
  color: #fff; border-radius: var(--r-lg); overflow: hidden; position: relative;
  padding: clamp(2.2rem, 5vw, 3.6rem);
}
.casecard::after { content:""; position:absolute; right:-80px; top:-80px; width:280px; height:280px; border-radius:50%; background:rgba(255,255,255,.07); }
.casecard h2, .casecard h3 { color:#fff; }
.casecard p { color: rgba(255,255,255,.85); }
.casecard .metrics { display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem; margin:2rem 0; position:relative; }
.casecard .metrics b { display:block; font-family:var(--font-display); font-weight:800; font-size:1.9rem; }
.casecard .metrics span { color:rgba(255,255,255,.7); font-size:.82rem; }

.cta-band {
  background: linear-gradient(135deg, var(--brand), #06245C); color:#fff;
  border-radius: var(--r-lg); padding: clamp(2.5rem, 6vw, 4.5rem); text-align:center;
  position: relative; overflow:hidden;
}
.cta-band::after{ content:""; position:absolute; left:-60px; bottom:-90px; width:260px; height:260px; border-radius:50%; background:rgba(255,255,255,.06);}
.cta-band h2 { color:#fff; font-size: clamp(1.7rem,3.4vw,2.6rem); }
.cta-band p { color: rgba(255,255,255,.85); margin-top:.7rem; }
.cta-band .btn { margin-top: 1.8rem; }

/* Sub-page hero */
.page-hero { position: relative; overflow:hidden; padding: calc(var(--header-h) + 3.5rem) 0 3.5rem; background: var(--bg); }
.page-hero::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(680px 320px at 82% -8%, rgba(0,71,171,.14), transparent 60%),
              radial-gradient(560px 280px at 0% 4%, rgba(227,24,55,.07), transparent 55%);
}
.page-hero .container { position: relative; }
.back-link { display:inline-flex; align-items:center; gap:.45rem; color:var(--brand); font-weight:600; font-size:.9rem; margin-bottom:1.25rem; }
.back-link:hover { gap:.7rem; }

/* Timeline + chips (case study) */
.timeline { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.timeline .step b { font-family:var(--font-display); font-size:2.4rem; font-weight:800; color:rgba(0,71,171,.22); }
.timeline .step .dur { display:inline-block; font-size:.72rem; font-weight:700; color:var(--brand); background:var(--brand-50); padding:.25rem .65rem; border-radius:var(--r-pill); margin:.5rem 0; }
.chips { display:flex; flex-wrap:wrap; gap:.6rem; }
.chip { background:var(--surface); border:1px solid var(--line); color:var(--ink); font-weight:600; font-size:.85rem; padding:.5rem 1rem; border-radius:var(--r-pill); }

/* Contact */
.contact-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap: 1.75rem; }
.field { display:flex; flex-direction:column; gap:.4rem; margin-bottom:1.1rem; }
.field label { font-size:.78rem; font-weight:700; color:var(--ink); }
.field input, .field textarea {
  font:inherit; color:var(--ink); background:var(--surface-2);
  border:1px solid var(--line); border-radius:var(--r-sm); padding:.8rem .95rem; outline:none;
  transition:border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field textarea:focus { border-color:var(--brand); background:#fff; }
.info { display:flex; gap:1rem; align-items:flex-start; }
.info .card__ic { margin:0; width:44px; height:44px; }
.info b { color:var(--ink); display:block; font-size:.95rem; }
.info a, .info span { color:var(--body); font-size:.92rem; }
.info a:hover { color:var(--brand); }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); }
.site-footer .grid-foot { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.site-footer p.tag { color: var(--body); font-size:.95rem; max-width: 18rem; margin-top:1rem; }
.site-footer .contact a { display:block; color:var(--body); font-size:.92rem; }
.site-footer .contact a:hover { color: var(--brand); }
.site-footer h4 { font-family:var(--font-body); font-size:.8rem; text-transform:uppercase; letter-spacing:.12em; color:var(--ink); margin-bottom:1.1rem; }
.site-footer ul { list-style:none; margin:0; padding:0; display:grid; gap:.7rem; }
.site-footer ul a { color:var(--body); font-size:.93rem; }
.site-footer ul a:hover { color: var(--brand); }
.socials { display:flex; gap:.6rem; margin-top:1.5rem; }
.socials a { width:38px; height:38px; display:grid; place-items:center; border-radius:var(--r-pill); background:var(--brand-50); color:var(--brand); transition:transform .25s var(--ease), background .25s var(--ease); }
.socials a:hover { transform:translateY(-2px); background:var(--brand); color:#fff; }
.foot-base { margin-top:3rem; padding-top:1.5rem; border-top:1px solid var(--line); font-size:.82rem; color:var(--muted); }

/* ---------- Scroll reveal ---------- */
html.js [data-reveal] { opacity: 0; transform: translateY(28px); filter: blur(5px); transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease); }
html.js [data-reveal].in { opacity: 1; transform: none; filter: none; }
html.js [data-reveal][data-d="1"]{ transition-delay:.07s; }
html.js [data-reveal][data-d="2"]{ transition-delay:.14s; }
html.js [data-reveal][data-d="3"]{ transition-delay:.21s; }
html.js [data-reveal][data-d="4"]{ transition-delay:.28s; }
html.js [data-reveal][data-d="5"]{ transition-delay:.35s; }
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity:1 !important; transform:none !important; filter:none !important; transition:none; }
  .hero__mesh i { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
  .nav { display: none; }
  .burger { display: block; }
  .site-header { padding-inline: clamp(.85rem, 4vw, 1.5rem); }
}
@media (min-width: 1024px) { .drawer { display: none; } }
@media (max-width: 880px) {
  .grid-3, .grid-4, .hero__stats, .casecard .metrics, .timeline,
  .split, .contact-grid, .site-footer .grid-foot { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2,1fr); }
  .casecard .metrics { grid-template-columns: repeat(2,1fr); }
  .site-footer .grid-foot { gap: 2rem; }
}
@media (max-width: 560px) {
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .btn { font-size: .92rem; }
  .brand img { height: 50px; }
}

/* ============================================================
   EDITORIAL LAYER — anti-slop: rules & whitespace over boxes,
   numerals over generic icons. (taste/redesign + soft-skill)
   ============================================================ */

/* Inline figures — replaces boxed stat cards */
.figures { display: flex; flex-wrap: wrap; gap: 0; margin-top: 2.5rem; }
.fig { padding: .25rem 2.5rem .25rem 0; margin: .5rem 0; }
.fig + .fig { padding-left: 2.5rem; border-left: 1px solid var(--line); }
.fig b {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.9rem); color: var(--brand);
  letter-spacing: -.03em; font-variant-numeric: tabular-nums; line-height: 1;
}
.fig span { display: block; margin-top: .5rem; font-size: .85rem; color: var(--muted); }
@media (max-width: 700px) {
  .fig, .fig + .fig { padding: .5rem 0; border-left: 0; flex: 0 0 50%; }
}

/* Editorial ledger rows — replaces 3-up card grids */
.editorial { margin-top: 3rem; border-bottom: 1px solid var(--line); }
.e-item {
  display: grid; grid-template-columns: 5.5rem 1fr; gap: clamp(1.25rem, 4vw, 3.5rem);
  padding: clamp(2rem, 4vw, 3rem) 0; border-top: 1px solid var(--line);
  transition: background .35s var(--ease);
}
.e-item:hover { background: linear-gradient(90deg, rgba(0,71,171,.035), transparent 70%); }
.e-idx {
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
  color: var(--brand); opacity: .35; font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.e-body h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 700; }
.e-body > p { margin-top: .65rem; color: var(--body); max-width: 44rem; }
.e-split { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem 2.5rem; margin-top: 1.25rem; max-width: 40rem; }
.e-split span { font-size: .92rem; color: var(--muted); display: flex; gap: .55rem; }
.e-split span::before { content: "—"; color: var(--brand); }
@media (max-width: 760px) {
  .e-item { grid-template-columns: 1fr; gap: .75rem; }
  .e-idx { font-size: 1.1rem; }
  .e-split { grid-template-columns: 1fr; }
}

/* Lead list — advantages/benefits without boxes */
.lead-list { list-style: none; margin: 2rem 0 0; padding: 0;
  display: grid; gap: .9rem 2.5rem; grid-template-columns: repeat(2, 1fr); }
.lead-list li { display: flex; gap: .7rem; align-items: baseline; font-size: 1.02rem; color: var(--ink);
  padding-bottom: .9rem; border-bottom: 1px solid var(--line); }
.lead-list li::before { content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); transform: translateY(-1px); }
@media (max-width: 700px) { .lead-list { grid-template-columns: 1fr; } }

/* Editorial timeline */
.tl { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.tl-step { display: grid; grid-template-columns: 5.5rem 1fr; gap: clamp(1rem,4vw,3.5rem);
  padding: clamp(1.75rem,3.5vw,2.75rem) 0; border-bottom: 1px solid var(--line); }
.tl-step .n { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--brand); opacity: .35; }
.tl-step h3 { font-size: 1.35rem; }
.tl-step .dur { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand); margin-bottom: .6rem; }
.tl-step .e-split { margin-top: .9rem; }
@media (max-width: 760px) { .tl-step { grid-template-columns: 1fr; gap: .6rem; } }

/* Editorial CTA — no heavy blocks */
.cta {
  text-align: center; max-width: 46rem; margin: 0 auto;
  padding-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--line);
}
.cta h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.cta p { color: var(--muted); margin-top: .85rem; }
.cta .btn { margin-top: 2rem; }

/* Quiet prose block (support / integration paragraphs) — rule, no box */
.note { border-left: 2px solid var(--brand); padding: .25rem 0 .25rem 1.5rem; max-width: 56rem; }
.note h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.note p { margin-top: .65rem; color: var(--body); }

/* Coverage as quiet inline list */
.coverage { margin-top: 1.25rem; color: var(--body); font-size: 1.05rem; line-height: 2; max-width: 48rem; }
.coverage b { color: var(--ink); font-weight: 700; }

/* Contact: ruled info rows (not cards) */
.info-rows { display: grid; gap: 0; }
.info-rows .info { padding: 1.4rem 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.info-rows .info:first-child { padding-top: 0; }
.info-rows .info .k { font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); width: 7.5rem; flex: none; padding-top: .15rem; }
.info-rows .info .v { color: var(--ink); }
.info-rows .info .v a { color: var(--ink); }
.info-rows .info .v a:hover { color: var(--brand); }
.info-rows .info .v .muted { color: var(--muted); font-size: .92rem; }

/* Section heading rhythm for editorial pages */
.eyebrow-rule { display: flex; align-items: center; gap: 1rem; }
.eyebrow-rule::after { content: ""; height: 1px; flex: 1; background: var(--line); }
