  /* GEIST — clean, precise, modern (with Inter fallback) */
  @font-face {
    font-family: 'Geist';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('https://cdn.jsdelivr.net/fontsource/fonts/geist-sans:vf@latest/latin-wght-normal.woff2') format('woff2-variations');
  }
  :root {
    /* DEEP TEAL — sophisticated, premium */
    --teal:        #0F5E58;
    --teal-d:      #094540;
    --teal-l:      #4A8B85;
    --teal-soft:   #D9E8E4;
    --teal-soft-2: #E8F1EE;
    --teal-mist:   #F1F6F4;

    /* CRISP NEUTRAL PALETTE */
    --bg:          #FFFFFF;
    --bg-cream:    #FAFAF7;
    --bg-cream-2:  #F3F2EC;
    --bg-cream-3:  #ECEAE2;

    /* ACCENT — Muted brass for refined moments */
    --brass:       #B8975A;
    --brass-d:     #9A7E48;
    --brass-soft:  #F3EBD8;

    /* INK — Near-black for max crispness */
    --ink:         #0F1419;
    --ink-2:       #1C242C;
    --text:        #1C242C;
    --text-dim:    #4A535C;
    --muted:       #7A828A;
    --muted-2:     #B5BABF;
    --line:        #E5E2DA;
    --line-2:      #D2CFC6;
    --line-mist:   #CFDBD7;

    --radius:      2px;
    --radius-md:   4px;
    --radius-lg:   6px;
    --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text); background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }

  /* Display family — Geist */
  .serif { font-family: 'Geist', 'Inter', sans-serif; }
  h1, h2, h3, h4 { color: var(--ink); margin: 0; font-family: 'Geist', 'Inter', sans-serif; }
  h1, h2 { font-weight: 700; letter-spacing: -0.045em; line-height: 0.98; }
  h1 { font-size: clamp(3.1rem, 8vw, 7rem); letter-spacing: -0.055em; line-height: 0.94; }
  h2 { font-size: clamp(2.2rem, 4.8vw, 3.9rem); line-height: 1.0; }
  h3 { font-size: 1.1rem; font-weight: 600; letter-spacing: -0.025em; }
  h4 { font-weight: 600; letter-spacing: -0.025em; }
  p  { margin: 0; color: var(--text-dim); }
  a  { color: inherit; text-decoration: none; }

  /* Accent words — clean teal emphasis (was italic serif) */
  .italic-serif { font-family: 'Geist', 'Inter', sans-serif; font-style: normal; font-weight: 600; color: var(--teal-d); }

  .container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
  .narrow { max-width: 920px; margin: 0 auto; padding: 0 28px; }

  /* SCROLL REVEAL */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal.delay-1 { transition-delay: .12s; }
  .reveal.delay-2 { transition-delay: .24s; }
  .reveal.delay-3 { transition-delay: .36s; }
  @media (prefers-reduced-motion: reduce) {
    .reveal, .reveal * { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
  }

  /* EDITORIAL LABEL — tracked, small */
  .label {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem; font-weight: 600; color: var(--teal-d);
    text-transform: uppercase; letter-spacing: 0.18em;
  }
  .label .line { width: 32px; height: 1.5px; background: var(--teal); }
  .label.brass { color: var(--brass-d); }
  .label.brass .line { background: var(--brass); }
  .label.cream { color: var(--bg-cream); }
  .label.cream .line { background: var(--bg-cream); }

  /* WAVE DIVIDER — signature element */
  .wave-div {
    width: 100%; height: 28px;
    display: flex; align-items: center; justify-content: center;
    margin: 0;
  }
  .wave-div svg { width: 64px; height: 20px; color: var(--teal); opacity: .35; }

  /* BUTTONS */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 16px 28px; border-radius: 2px;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.92rem;
    cursor: pointer; border: 1.5px solid transparent;
    transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
    white-space: nowrap; min-height: 50px;
    letter-spacing: -0.005em;
  }
  .btn-primary { background: var(--teal); color: white; }
  .btn-primary:hover { background: var(--teal-d); transform: translateY(-1px); }
  .btn-ink { background: var(--ink); color: #fff; }
  .btn-ink:hover { background: var(--ink-2); transform: translateY(-1px); }
  .btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
  .btn-outline:hover { background: var(--ink); color: #fff; }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
  .btn-ghost:hover { border-color: var(--ink); }
  .btn-sm { padding: 11px 20px; font-size: 0.88rem; min-height: 42px; }
  .btn-lg { padding: 18px 34px; font-size: 0.98rem; min-height: 56px; }
  .btn .arrow { display: inline-block; transition: transform .3s var(--ease); font-size: 1.1rem; }
  .btn:hover .arrow { transform: translateX(4px); }

  /* NAV */
  .nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.88);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
  .logo { display: flex; align-items: center; gap: 14px; color: var(--ink); }
  .logo-mark {
    width: 56px; height: 30px; color: var(--teal);
    display: grid; place-items: center;
    transition: transform .6s var(--ease);
  }
  .logo:hover .logo-mark { transform: translateY(-3px); }
  .logo-mark svg { width: 100%; height: 100%; display: block; overflow: visible; }
  .logo-text { display: flex; flex-direction: column; line-height: 1; }
  .logo-text .name { font-family: 'Geist', 'Inter', sans-serif; font-weight: 500; font-size: 1.4rem; letter-spacing: -0.025em; color: var(--ink); }
  .logo-text .tagline { font-size: 0.66rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.18em; margin-top: 4px; }
  .nav-links { display: flex; gap: 36px; align-items: center; }
  .nav-links a { color: var(--text-dim); font-weight: 500; font-size: 0.92rem; transition: color .25s; }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta { display: flex; gap: 10px; align-items: center; }
  .nav-phone { font-weight: 500; font-size: 0.9rem; color: var(--ink); display: inline-flex; gap: 7px; align-items: center; }
  .nav-phone svg { color: var(--teal); }
  .nav-burger {
    display: none; background: transparent; border: 1.5px solid var(--ink); border-radius: 2px;
    width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center;
    color: var(--ink);
  }
  .nav-drawer {
    display: none; position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
    background: var(--bg-cream); z-index: 99; padding: 32px 24px; overflow-y: auto;
    border-top: 1px solid var(--line);
  }
  .nav-drawer.open { display: block; }
  .nav-drawer a { display: block; padding: 18px 0; font-family: 'Geist', 'Inter', sans-serif; font-size: 1.3rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
  .nav-drawer .drawer-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }

  /* HERO — Calm, restrained (Work & Co / Area 17 model) */
  .hero {
    padding: 150px 0 150px;
    position: relative; overflow: hidden;
  }
  .hero-bg-wave {
    position: absolute; left: 0; right: 0; bottom: -10%;
    width: 130%; left: -15%;
    height: 420px;
    pointer-events: none;
    z-index: 0;
    opacity: .06;
  }
  .hero-bg-wave svg { width: 100%; height: 100%; display: block; color: var(--teal); }
  .hero-inner { position: relative; z-index: 1; max-width: 940px; }
  .hero .label { margin-bottom: 40px; }
  .hero h1 {
    color: var(--ink);
    margin: 0 0 40px;
    max-width: 900px;
  }
  .hero h1 .accent { color: var(--teal-d); }
  .hero h1 .brass { color: var(--brass-d); }
  .hero p.lead { font-size: 1.22rem; color: var(--text); max-width: 560px; line-height: 1.6; }
  .hero p.lead em { font-style: normal; color: var(--teal-d); font-weight: 600; font-family: 'Geist', 'Inter', sans-serif; }
  .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 40px; }
  .hero-trust {
    margin-top: 48px;
    font-size: 0.92rem; color: var(--text-dim); letter-spacing: 0.01em;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .hero-trust .tdot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
  .hero-trust b { color: var(--ink); font-weight: 600; }

  /* TRUST MARQUEE — scrolling client wall */
  .trust-strip {
    padding: 38px 0; background: var(--bg);
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    overflow: hidden; position: relative;
  }
  .trust-strip::before, .trust-strip::after {
    content:''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
  }
  .trust-strip::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
  .trust-strip::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }
  .trust-strip-eyebrow {
    text-align: center; font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600;
    color: var(--muted); text-transform: uppercase; letter-spacing: 0.22em; margin-bottom: 26px;
  }
  .trust-track {
    display: flex; gap: 0; width: max-content;
    animation: trustScroll 48s linear infinite;
  }
  .trust-strip:hover .trust-track { animation-play-state: paused; }
  .trust-track .item {
    display: inline-flex; align-items: center; padding: 0 44px;
    font-family: 'Geist', 'Inter', sans-serif; font-weight: 600; font-size: 1.15rem;
    color: var(--ink); letter-spacing: -0.02em; white-space: nowrap;
    opacity: .55; transition: opacity .3s var(--ease);
  }
  .trust-track .item:hover { opacity: 1; }
  .trust-track .sep {
    display: inline-flex; align-self: center; flex-shrink: 0;
    width: 4px; height: 4px; border-radius: 50%; background: var(--brass); opacity: .8;
  }
  @keyframes trustScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .trust-track { animation: none; }
  }

  /* STATS BAND — quiet, spacious */
  .stats-band { padding: 90px 0; background: var(--bg); border-bottom: 1px solid var(--line); }
  .stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
  .stat-cell { padding: 0 40px; border-left: 1px solid var(--line-2); }
  .stat-cell:first-child { padding-left: 0; border-left: none; }
  .stat-cell .v {
    font-family: 'Geist', 'Inter', sans-serif; font-weight: 600;
    font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--ink);
    letter-spacing: -0.04em; line-height: 1;
  }
  .stat-cell .l { font-size: 0.84rem; color: var(--text-dim); margin-top: 14px; line-height: 1.45; }

  /* PHILOSOPHY — brand manifesto */
  .philosophy {
    padding: 140px 0;
    background: var(--teal);
    color: #fff;
    position: relative; overflow: hidden;
  }
  .philosophy::before {
    content:''; position: absolute; left: 0; top: 0; right: 0; bottom: 0;
    background:
      radial-gradient(800px 400px at 100% 0%, rgba(255,255,255,.04) 0%, transparent 60%),
      radial-gradient(700px 360px at 0% 100%, rgba(255,255,255,.03) 0%, transparent 60%);
    pointer-events: none;
  }
  .philosophy-inner { position: relative; z-index: 1; max-width: 880px; }
  .philosophy .label { color: #fff; margin-bottom: 36px; }
  .philosophy .label .line { background: #fff; opacity: .6; }
  .philosophy h2 {
    color: #fff; font-weight: 700;
    font-size: clamp(2.2rem, 4.6vw, 4rem);
    line-height: 1.0; letter-spacing: -0.045em;
    margin-bottom: 36px;
  }
  .philosophy h2 .italic-serif { color: var(--brass); }
  .philosophy p {
    color: rgba(255,255,255,.82);
    font-size: 1.18rem; line-height: 1.65;
    max-width: 720px;
  }
  .philosophy-divider {
    margin: 56px 0; width: 80px; height: 1px;
    background: rgba(255,255,255,.32);
  }
  .philosophy-credit {
    font-family: 'Geist', 'Inter', sans-serif; font-style: normal; font-size: 1.04rem;
    color: rgba(255,255,255,.6); letter-spacing: 0.01em;
  }

  /* SECTIONS */
  section.block { padding: 140px 0; }
  .section-head { max-width: 820px; margin: 0 auto 80px; text-align: center; }
  .section-head .label { margin-bottom: 28px; }
  .section-head p { margin-top: 26px; font-size: 1.08rem; color: var(--text-dim); max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.65; }

  /* SERVICES — Editorial cards */
  .services-wrap { background: var(--bg); padding: 140px 0; }
  .svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line-2); }
  .svc {
    padding: 40px 32px 36px 0;
    border-right: 1px solid var(--line-2);
    transition: background .3s var(--ease);
    display: flex; flex-direction: column;
  }
  .svc:last-child { border-right: none; padding-right: 0; }
  .svc:hover { background: var(--bg-cream); }
  .svc-num {
    font-family: 'Geist', 'Inter', sans-serif; font-style: normal; font-weight: 400;
    color: var(--brass-d); font-size: 1.6rem; letter-spacing: -0.02em;
    margin-bottom: 32px;
  }
  .svc h3 {
    font-family: 'Geist', 'Inter', sans-serif; font-weight: 500; font-size: 1.5rem;
    color: var(--ink); letter-spacing: -0.025em; line-height: 1.15;
    margin-bottom: 14px;
  }
  .svc p { font-size: 0.94rem; color: var(--text-dim); line-height: 1.65; }

  /* INTEGRATIONS BAND — works with your stack */
  .integ {
    padding: 56px 0; background: var(--bg);
    border-top: 1px solid var(--line);
  }
  .integ-row {
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
    flex-wrap: wrap;
  }
  .integ-label {
    font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 600;
    color: var(--muted); text-transform: uppercase; letter-spacing: 0.22em;
    flex-shrink: 0;
  }
  .integ-list {
    display: flex; align-items: center; gap: 0; flex: 1; justify-content: flex-end;
    flex-wrap: wrap;
  }
  .integ-list .name {
    font-family: 'Geist', 'Inter', sans-serif; font-weight: 600; font-size: 1.05rem;
    color: var(--ink); letter-spacing: -0.018em; padding: 0 22px;
    position: relative; opacity: .7; transition: opacity .2s var(--ease);
  }
  .integ-list .name:hover { opacity: 1; }
  .integ-list .name + .name::before {
    content:''; position: absolute; left: -1px; top: 50%; transform: translateY(-50%);
    width: 2px; height: 2px; border-radius: 50%; background: var(--muted-2);
  }
  @media (max-width: 720px) {
    .integ-row { flex-direction: column; align-items: flex-start; gap: 18px; }
    .integ-list { justify-content: flex-start; }
    .integ-list .name { padding: 6px 16px 6px 0; font-size: 0.98rem; }
    .integ-list .name + .name::before { display: none; }
  }

  /* HOW IT WORKS */
  .how-wrap { padding: 140px 0; background: var(--bg-cream); }
  .how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
  .how-num {
    font-family: 'Geist', 'Inter', sans-serif; font-style: normal; font-weight: 500;
    font-size: 3.6rem; color: var(--teal); letter-spacing: -0.04em; line-height: 1;
    margin-bottom: 22px;
  }
  .how-card h3 {
    font-family: 'Geist', 'Inter', sans-serif; font-weight: 500; font-size: 1.35rem;
    color: var(--ink); margin-bottom: 12px; letter-spacing: -0.025em; line-height: 1.2;
  }
  .how-card p { font-size: 0.95rem; color: var(--text-dim); line-height: 1.7; }

  /* PRODUCT PREVIEW */
  .product { background: var(--bg); padding: 140px 0; }
  .product-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 90px; align-items: center; }
  .product-text .label { margin-bottom: 24px; }
  .product-text h2 { margin-bottom: 28px; max-width: 460px; }
  .product-text h2 .italic-serif { color: var(--teal-d); }
  .product-text p.lead { font-size: 1.06rem; color: var(--text-dim); margin-bottom: 36px; max-width: 480px; line-height: 1.7; }
  .product-features { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
  .product-feature { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--line); }
  .product-feature .num {
    font-family: 'Geist', 'Inter', sans-serif; font-style: normal; font-weight: 500;
    color: var(--brass-d); font-size: 1.1rem; min-width: 32px;
  }
  .product-feature h4 { font-family: 'Geist', 'Inter', sans-serif; font-weight: 500; font-size: 1.15rem; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.015em; }
  .product-feature p { font-size: 0.93rem; color: var(--text-dim); line-height: 1.65; }

  .preview {
    background: var(--bg-cream); border: 1px solid var(--line);
    border-radius: var(--radius-md); padding: 32px;
  }
  .preview-head {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 18px; border-bottom: 1px solid var(--line);
    margin-bottom: 24px;
  }
  .preview-title { font-family: 'Geist', 'Inter', sans-serif; font-weight: 500; color: var(--ink); font-size: 1.05rem; letter-spacing: -0.02em; }
  .preview-live {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 0.7rem; font-weight: 600; color: var(--teal-d);
    text-transform: uppercase; letter-spacing: 0.14em;
  }
  .preview-live .dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
    animation: livePulse 2.2s infinite;
  }
  @keyframes livePulse { 0%,100%{opacity:1} 50%{opacity:.4} }
  .preview-kpis { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 24px; }
  .preview-kpi { padding: 18px; background: #fff; border-radius: 2px; border: 1px solid var(--line); }
  .preview-kpi .k { font-size: 0.7rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }
  .preview-kpi .v {
    font-family: 'Geist', 'Inter', sans-serif; font-weight: 500;
    color: var(--ink); font-size: 1.7rem; margin-top: 6px;
    letter-spacing: -0.035em; line-height: 1;
  }
  .preview-kpi .d { font-size: 0.72rem; color: var(--teal-d); font-weight: 600; margin-top: 4px; }
  .preview-chart-svg { width: 100%; height: 120px; display: block; }
  .preview-chart-svg .chart-path { stroke-dasharray: 1200; stroke-dashoffset: 1200; transition: stroke-dashoffset 1.8s var(--ease); }
  .preview-chart-svg.in .chart-path { stroke-dashoffset: 0; }
  .preview-chart-svg .chart-fill { opacity: 0; transition: opacity .9s ease .9s; }
  .preview-chart-svg.in .chart-fill { opacity: 1; }

  /* INDUSTRIES */
  .industries-wrap { padding: 140px 0; background: var(--bg-cream); }
  .ind-tabs {
    display: flex; gap: 0; justify-content: center; flex-wrap: wrap;
    margin-bottom: 64px;
    border-bottom: 1px solid var(--line-2);
  }
  .ind-tab {
    padding: 18px 32px; background: transparent; border: none;
    font-family: 'Geist', 'Inter', sans-serif; font-weight: 500; font-size: 1.1rem;
    color: var(--text-dim); cursor: pointer;
    transition: color .3s var(--ease); letter-spacing: -0.015em;
    position: relative; border-bottom: 2px solid transparent; margin-bottom: -1px;
  }
  .ind-tab:hover { color: var(--ink); }
  .ind-tab.active { color: var(--ink); }
  .ind-tab-badge {
    display: inline-block; margin-left: 10px; padding: 3px 8px;
    font-family: 'Inter', sans-serif; font-size: 0.62rem; font-weight: 600;
    color: var(--brass-d); background: var(--brass-soft);
    text-transform: uppercase; letter-spacing: 0.14em;
    border-radius: 2px; vertical-align: 2px;
  }
  .ind-tab.active::after {
    content:''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--teal);
  }
  .ind-content { display: none; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; }
  .ind-content.active { display: grid; animation: indFade .7s var(--ease); }
  @keyframes indFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
  .ind-content h3 { font-family: 'Geist', 'Inter', sans-serif; font-weight: 500; font-size: 2rem; margin-bottom: 22px; color: var(--ink); letter-spacing: -0.025em; line-height: 1.1; }
  .ind-content > div > p { font-size: 1rem; line-height: 1.7; margin-bottom: 32px; color: var(--text-dim); }
  .ind-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line-2); }
  .ind-stat { padding: 22px 16px 22px 0; border-bottom: 1px solid var(--line-2); border-right: 1px solid var(--line-2); }
  .ind-stat:nth-child(even) { border-right: none; padding-right: 0; padding-left: 16px; }
  .ind-stat:nth-last-child(-n+2) { border-bottom: none; }
  .ind-stat .k { font-size: 0.7rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; }
  .ind-stat .v {
    font-family: 'Geist', 'Inter', sans-serif; font-style: normal; font-weight: 500;
    color: var(--ink); font-size: 1.6rem; margin-top: 8px;
    letter-spacing: -0.03em; line-height: 1;
  }
  .ind-stat .sub { font-size: 0.8rem; color: var(--text-dim); margin-top: 6px; }
  .ind-result {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-md); padding: 44px;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative;
  }
  .ind-result .stars { color: var(--brass); font-size: 1rem; letter-spacing: 3px; margin-bottom: 22px; }
  .ind-result .quote {
    font-family: 'Geist', 'Inter', sans-serif; font-weight: 400;
    font-size: 1.35rem; line-height: 1.4; color: var(--ink);
    letter-spacing: -0.018em;
    margin-bottom: 32px;
  }
  .ind-result .quote::before { content: '"'; font-family: 'Geist', 'Inter', sans-serif; color: var(--teal); font-size: 2.5rem; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
  .ind-result .who-row { padding-top: 24px; border-top: 1px solid var(--line); }
  .ind-result .who-name { font-family: 'Geist', 'Inter', sans-serif; font-weight: 500; color: var(--ink); font-size: 1.04rem; }
  .ind-result .role { color: var(--muted); font-size: 0.82rem; margin-top: 4px; letter-spacing: 0.05em; text-transform: uppercase; }
  .ind-result .metric { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; align-items: baseline; gap: 16px; }
  .ind-result .metric .n {
    font-family: 'Geist', 'Inter', sans-serif; font-style: normal; font-weight: 500;
    font-size: 2.6rem; color: var(--teal-d); letter-spacing: -0.04em; line-height: 1;
  }
  .ind-result .metric .l { color: var(--text-dim); font-size: 0.92rem; line-height: 1.4; }

  /* WHY US */
  .diff-wrap { padding: 140px 0; background: var(--bg); }
  .diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
  .diff {
    background: transparent; padding: 40px 24px 40px 0;
    border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
    transition: background .3s var(--ease);
  }
  .diff:nth-child(4n) { border-right: none; padding-right: 0; }
  .diff:not(:first-child) { padding-left: 24px; }
  .diff:nth-child(4n+1) { padding-left: 0; }
  .diff:nth-last-child(-n+4) { border-bottom: none; }
  .diff:hover { background: var(--bg-cream); }
  .diff-num {
    font-family: 'Geist', 'Inter', sans-serif; font-style: normal; font-weight: 400;
    color: var(--brass-d); font-size: 1.2rem; margin-bottom: 22px;
  }
  .diff h3 { font-family: 'Geist', 'Inter', sans-serif; font-weight: 500; font-size: 1.3rem; margin-bottom: 10px; color: var(--ink); letter-spacing: -0.02em; line-height: 1.2; }
  .diff p { font-size: 0.94rem; line-height: 1.65; color: var(--text-dim); }

  /* CASE STUDIES */
  .results-wrap { padding: 140px 0; background: var(--bg-cream); }
  .case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .case {
    background: var(--bg); border-radius: var(--radius-md);
    border: 1px solid var(--line); padding: 44px;
    transition: border-color .3s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
    position: relative;
  }
  .case:hover { border-color: var(--ink); transform: translateY(-2px); }
  .case .case-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 30px; }
  .case .case-num {
    font-family: 'Geist', 'Inter', sans-serif; font-style: normal; font-weight: 400;
    color: var(--brass-d); font-size: 1.2rem;
  }
  .case .case-biz { font-family: 'Geist', 'Inter', sans-serif; font-weight: 500; color: var(--ink); font-size: 1.3rem; letter-spacing: -0.02em; }
  .case .case-loc { font-size: 0.82rem; color: var(--muted); margin-top: 4px; letter-spacing: 0.08em; text-transform: uppercase; }
  .case .case-metric { display: flex; align-items: baseline; gap: 16px; margin-bottom: 24px; }
  .case .case-metric .n {
    font-family: 'Geist', 'Inter', sans-serif; font-style: normal; font-weight: 500;
    font-size: 3.8rem; color: var(--teal-d); letter-spacing: -0.05em; line-height: 1;
  }
  .case .case-metric .l { font-size: 0.94rem; color: var(--text-dim); max-width: 200px; line-height: 1.4; }
  .case .case-quote { font-family: 'Geist', 'Inter', sans-serif; font-weight: 400; font-size: 1.1rem; color: var(--ink); line-height: 1.5; margin-bottom: 24px; letter-spacing: -0.01em; }
  .case .case-attr { font-size: 0.85rem; color: var(--muted); padding-top: 22px; border-top: 1px solid var(--line); letter-spacing: 0.04em; }
  .case .case-attr b { color: var(--ink); font-weight: 600; font-family: 'Geist', 'Inter', sans-serif; font-size: 0.95rem; letter-spacing: 0; }
  /* Case compare bars */
  .case-compare { margin: 18px 0 26px; display: flex; flex-direction: column; gap: 12px; }
  .case-compare .row { display: flex; align-items: center; gap: 12px; font-family: 'Inter', sans-serif; }
  .case-compare .row .k {
    font-size: 0.66rem; font-weight: 600; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.16em; width: 54px; flex-shrink: 0;
  }
  .case-compare .row .bar {
    flex: 1; height: 6px; background: var(--bg-cream-2); position: relative; overflow: hidden;
  }
  .case-compare .row .fill {
    position: absolute; left: 0; top: 0; bottom: 0; width: 0;
    background: var(--muted-2);
    transition: width 1.2s var(--ease);
  }
  .case-compare .row.after .fill { background: var(--teal); }
  .case.in .case-compare .row .fill { width: var(--w, 30%); }
  .case-compare .row .v {
    font-family: 'Geist', 'Inter', sans-serif; font-weight: 600; font-size: 0.92rem;
    color: var(--ink); letter-spacing: -0.01em; width: 64px; text-align: right; flex-shrink: 0;
  }

  /* TESTIMONIALS */
  .tests-wrap { padding: 140px 0; background: var(--bg); }
  .tests-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
  .test {
    padding: 40px 32px 40px 0;
    border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 22px;
  }
  .test:nth-child(3n) { border-right: none; padding-right: 0; }
  .test:nth-child(3n+2) { padding-left: 32px; }
  .test:last-child { border-bottom: none; }
  .test .stars { color: var(--brass); letter-spacing: 2px; font-size: 0.92rem; }
  .test p { font-family: 'Geist', 'Inter', sans-serif; font-weight: 400; color: var(--ink); font-size: 1.15rem; line-height: 1.45; letter-spacing: -0.015em; }
  .test .who-row { display: flex; flex-direction: column; gap: 4px; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); }
  .test .name { font-family: 'Geist', 'Inter', sans-serif; font-weight: 500; color: var(--ink); font-size: 1.02rem; }
  .test .role { color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; }

  /* TEAM / LEADERSHIP */
  .team-wrap { padding: 140px 0; background: var(--bg); border-top: 1px solid var(--line); }
  .team-grid {
    display: grid; grid-template-columns: 1.1fr 2fr; gap: 80px; align-items: flex-start;
  }
  .team-intro h2 {
    font-size: clamp(2rem, 3.6vw, 3rem); letter-spacing: -0.045em; line-height: 1.0;
  }
  .team-intro .label { margin-bottom: 26px; }
  .team-intro p { font-size: 1.04rem; color: var(--text-dim); line-height: 1.7; margin-top: 24px; max-width: 360px; }
  .team-roster { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
  .lead-card {
    padding: 36px 24px 36px 0;
    border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 18px;
    transition: background .3s var(--ease);
  }
  .lead-card:nth-child(3n) { border-right: none; padding-right: 0; }
  .lead-card:not(:first-child):not(:nth-child(3n+1)) { padding-left: 24px; }
  .lead-card:nth-child(3n+1) { padding-left: 0; }
  .lead-card:nth-last-child(-n+3) { border-bottom: none; }
  .lead-card:hover { background: var(--bg-cream); }
  .lead-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--teal); color: #fff;
    display: grid; place-items: center;
    font-family: 'Geist', 'Inter', sans-serif; font-weight: 600; font-size: 1.02rem;
    letter-spacing: -0.01em;
  }
  .lead-card .name { font-family: 'Geist', 'Inter', sans-serif; font-weight: 600; font-size: 1.18rem; color: var(--ink); letter-spacing: -0.02em; }
  .lead-card .role { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; margin-top: 4px; }
  .lead-card .bio { font-size: 0.92rem; color: var(--text-dim); line-height: 1.6; margin-top: 8px; }
  .lead-card .past { font-family: 'Inter', sans-serif; font-size: 0.74rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line-2); }
  @media (max-width: 1024px) {
    .team-grid { grid-template-columns: 1fr; gap: 50px; }
    .team-roster { grid-template-columns: 1fr 1fr; }
    .lead-card:nth-child(3n) { border-right: 1px solid var(--line); padding-right: 24px; }
    .lead-card:nth-child(3n+1) { padding-left: 0; }
    .lead-card:nth-child(2n) { border-right: none; padding-right: 0; padding-left: 24px; }
    .lead-card:nth-last-child(-n+2) { border-bottom: none; }
  }
  @media (max-width: 720px) {
    .team-roster { grid-template-columns: 1fr; }
    .lead-card, .lead-card:nth-child(2n), .lead-card:nth-child(3n) { border-right: none; padding: 28px 0; border-bottom: 1px solid var(--line); padding-left: 0; padding-right: 0; }
    .lead-card:last-child { border-bottom: none; }
  }

  /* FAQ */
  .faq-wrap { padding: 140px 0; background: var(--bg-cream); }
  .faq-list { max-width: 800px; margin: 0 auto; border-top: 1px solid var(--line-2); }
  .faq-item { border-bottom: 1px solid var(--line-2); }
  .faq-item summary {
    list-style: none; cursor: pointer; padding: 28px 0;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    font-family: 'Geist', 'Inter', sans-serif; font-size: 1.3rem;
    font-weight: 500; color: var(--ink); letter-spacing: -0.025em;
    transition: color .25s;
  }
  .faq-item summary:hover { color: var(--teal-d); }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::marker { content: ''; }
  .faq-item summary::after {
    content:'+'; font-family: 'Geist', 'Inter', sans-serif; font-weight: 400;
    font-size: 1.6rem; color: var(--teal-d);
    flex-shrink: 0; transition: transform .3s var(--ease); line-height: 1;
  }
  .faq-item[open] summary::after { content: '−'; }
  .faq-item .answer { padding: 0 60px 28px 0; color: var(--text-dim); font-size: 1rem; line-height: 1.75; max-width: 720px; }

  /* FINAL CTA */
  .final-wrap { padding: 0 0 140px; background: var(--bg-cream); }
  .final-banner {
    background: var(--ink); color: #fff;
    border-radius: var(--radius-lg); padding: 80px 64px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    align-items: center; position: relative; overflow: hidden;
  }
  .final-banner::before {
    content:''; position: absolute; left: 0; right: 0; top: 0; bottom: 0;
    background:
      radial-gradient(700px 360px at 100% 100%, rgba(184,151,90,.12) 0%, transparent 60%),
      radial-gradient(600px 320px at 0% 0%, rgba(255,255,255,.04) 0%, transparent 60%);
    pointer-events: none;
  }
  .final-banner::after {
    content:''; position: absolute; right: -80px; bottom: -80px;
    width: 360px; height: 360px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 24' fill='none' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-opacity='0.12'><path d='M2 8 Q 9 2, 16 8 T 30 8 T 44 8 T 58 8'/><path d='M2 18 Q 9 12, 16 18 T 30 18 T 44 18 T 58 18'/></svg>");
    background-size: contain; background-repeat: no-repeat;
    pointer-events: none;
  }
  .final-left { position: relative; z-index: 1; }
  .final-left .label { color: #fff; margin-bottom: 24px; }
  .final-left .label .line { background: #fff; opacity: .6; }
  .final-left h2 {
    color: #fff; font-weight: 700;
    font-size: clamp(2rem, 3.6vw, 3.4rem); line-height: 0.98;
    letter-spacing: -0.045em;
    margin-bottom: 24px;
  }
  .final-left h2 .italic-serif { color: var(--brass); }
  .final-left p.lead { font-size: 1.06rem; color: rgba(255,255,255,.78); margin-bottom: 36px; max-width: 460px; line-height: 1.6; }
  .final-left ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
  .final-left li { display: flex; gap: 14px; align-items: center; font-size: 0.95rem; color: #fff; }
  .final-left li .check {
    width: 6px; height: 6px; background: var(--brass);
    flex-shrink: 0; border-radius: 50%;
  }

  .form-card {
    background: #fff; border-radius: var(--radius-md);
    padding: 36px; position: relative; z-index: 1;
    border: 1px solid rgba(255,255,255,.08);
  }
  .form-card h3 { font-family: 'Geist', 'Inter', sans-serif; font-size: 1.5rem; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.025em; font-weight: 500; }
  .form-card p.sub { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 26px; }
  .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; position: relative; }
  .field label { font-size: 0.74rem; font-weight: 500; color: var(--ink); text-transform: uppercase; letter-spacing: 0.12em; }
  .field input, .field select {
    background: var(--bg); border: 1px solid var(--line-2);
    border-radius: var(--radius); padding: 14px 16px; font: inherit; font-size: 0.95rem;
    color: var(--ink); outline: none;
    transition: border-color .25s, box-shadow .3s;
    min-height: 50px; appearance: none; -webkit-appearance: none;
  }
  .field input::placeholder { color: var(--muted-2); }
  .field input:focus, .field select:focus { border-color: var(--teal); box-shadow: 0 0 0 4px var(--teal-soft); }
  .field select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%237E8896' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
  }
  .field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-submit { width: 100%; margin-top: 10px; padding: 16px; font-size: 0.97rem; }
  .form-note { margin-top: 14px; font-size: 0.82rem; color: var(--muted); text-align: center; }
  .form-note a { color: var(--teal-d); font-weight: 500; }
  .honeypot { position: absolute; left: -9999px; }
  .form-thanks { display: none; padding: 36px; text-align: center; background: var(--teal-soft-2); border-radius: var(--radius-md); border: 1px solid var(--teal); }
  .form-thanks.show { display: block; }
  .form-thanks h4 { color: var(--ink); margin-bottom: 8px; font-size: 1.2rem; font-family: 'Geist', 'Inter', sans-serif; font-weight: 500; }
  .form-thanks p { color: var(--text-dim); }

  /* PRESS & RECOGNITION STRIP */
  .press-strip { padding: 60px 0; background: var(--bg); border-top: 1px solid var(--line); }
  .press-eyebrow {
    text-align: center; font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600;
    color: var(--muted); text-transform: uppercase; letter-spacing: 0.22em; margin-bottom: 28px;
  }
  .press-row {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
    gap: 0;
  }
  .press-row .item {
    font-family: 'Geist', 'Inter', sans-serif; font-weight: 600; font-size: 1.05rem;
    color: var(--ink); letter-spacing: -0.018em; padding: 8px 28px;
    position: relative; opacity: .65; transition: opacity .25s var(--ease);
  }
  .press-row .item:hover { opacity: 1; }
  .press-row .item + .item::before {
    content:''; position: absolute; left: -1px; top: 50%; transform: translateY(-50%);
    width: 1px; height: 14px; background: var(--line-2);
  }
  @media (max-width: 720px) {
    .press-row .item { font-size: 0.95rem; padding: 6px 16px; }
  }

  /* FOOTER */
  footer { background: var(--bg); border-top: 1px solid var(--line); padding: 80px 0 36px; color: var(--text-dim); }
  .foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 50px; }
  .foot-grid h4 { font-family: 'Inter', sans-serif; font-size: 0.74rem; font-weight: 600; color: var(--ink); margin-bottom: 22px; text-transform: uppercase; letter-spacing: 0.16em; }
  .foot-grid a { display: block; color: var(--text-dim); font-size: 0.94rem; padding: 6px 0; transition: color .25s; }
  .foot-grid a:hover { color: var(--teal-d); }
  .foot-about p { color: var(--text-dim); margin: 20px 0; font-size: 0.93rem; max-width: 300px; line-height: 1.7; font-family: 'Geist', 'Inter', sans-serif; font-style: normal; }
  .foot-phone { font-weight: 500; color: var(--ink); display: inline-flex; gap: 8px; align-items: center; font-size: 0.95rem; }
  .foot-phone svg { color: var(--teal); }
  .foot-email { display: inline-flex; margin-top: 8px; }
  .foot-about .foot-phone + .foot-email { margin-left: 0; }
  .foot-bottom {
    border-top: 1px solid var(--line); margin-top: 64px; padding-top: 28px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    color: var(--muted); font-size: 0.82rem; letter-spacing: 0.04em;
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .product-grid { grid-template-columns: 1fr; gap: 50px; }
    .ind-content.active { grid-template-columns: 1fr; gap: 50px; }
    .case-grid { grid-template-columns: 1fr; }
    .tests-grid { grid-template-columns: 1fr; border-top: 1px solid var(--line); }
    .test, .test:nth-child(3n), .test:nth-child(3n+2) { border-right: none; padding: 36px 0; padding-left: 0; }
    .test:last-child { border-bottom: none; }
    .how-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .diff-grid { grid-template-columns: 1fr 1fr; }
    .diff, .diff:nth-child(3n+1), .diff:nth-child(3n+2), .diff:nth-child(3n) { padding: 36px 0; border-right: 1px solid var(--line); padding-left: 0; }
    .diff:nth-child(2n) { padding-left: 28px; border-right: none; }
    .diff:nth-last-child(-n+2) { border-bottom: none; }
    .svc-grid { grid-template-columns: 1fr 1fr; }
    .svc, .svc:last-child { border-right: 1px solid var(--line-2); padding: 36px 24px 36px 0; border-bottom: 1px solid var(--line-2); }
    .svc:nth-child(2n) { border-right: none; padding-left: 24px; padding-right: 0; }
    .svc:nth-last-child(-n+2) { border-bottom: none; }
    .final-banner { grid-template-columns: 1fr; gap: 44px; padding: 50px 36px; }
    .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .stat-cell { padding: 0 28px; }
  }

  @media (max-width: 720px) {
    .container { padding: 0 22px; }
    .nav-links, .nav-phone { display: none; }
    .nav-burger { display: inline-flex; }
    .nav-cta .btn-ghost { display: none; }
    .logo-text .tagline { display: none; }
    .logo-text .name { font-size: 1.15rem; }
    .nav-cta .btn-ink { padding: 9px 16px; font-size: 0.88rem; min-height: 40px; }
    .hero { padding: 80px 0 90px; }
    .hero h1 { font-size: clamp(2.6rem, 11vw, 3.6rem); margin-bottom: 28px; }
    .hero p.lead { font-size: 1.06rem; }
    .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
    .hero-cta .btn { width: 100%; }
    .hero-trust { margin-top: 36px; font-size: 0.86rem; align-items: flex-start; }
    .stats-band { padding: 60px 0; }
    .stats-row { grid-template-columns: 1fr; gap: 36px; }
    .stat-cell, .stat-cell:first-child { padding: 0 0 36px; border-left: none; border-bottom: 1px solid var(--line-2); }
    .stat-cell:last-child { padding-bottom: 0; border-bottom: none; }
    .philosophy { padding: 90px 0; }
    .philosophy p { font-size: 1.06rem; }
    section.block, .services-wrap, .how-wrap, .product, .industries-wrap, .diff-wrap, .results-wrap, .tests-wrap, .faq-wrap { padding: 90px 0; }
    .final-wrap { padding: 0 0 90px; }
    .section-head { margin-bottom: 50px; }

    /* SERVICES — single col */
    .svc-grid { grid-template-columns: 1fr; }
    .svc, .svc:last-child, .svc:nth-child(2n) { padding: 32px 0; border-right: none; border-bottom: 1px solid var(--line-2); padding-left: 0; padding-right: 0; }
    .svc:last-child { border-bottom: none; }

    /* HOW IT WORKS — single col */
    .how-grid { grid-template-columns: 1fr; gap: 40px; }
    .how-num { font-size: 2.8rem; }

    /* DIFF — single col */
    .diff-grid { grid-template-columns: 1fr; }
    .diff, .diff:nth-child(2n) { padding: 32px 0; border-right: none; padding-left: 0; border-bottom: 1px solid var(--line); }
    .diff:last-child { border-bottom: none; }
    .diff:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
    .diff:last-child { border-bottom: none; }

    /* INDUSTRIES */
    .ind-tabs { gap: 0; overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding-bottom: 0; -webkit-overflow-scrolling: touch; }
    .ind-tab { padding: 14px 18px; font-size: 1rem; }
    .ind-content h3 { font-size: 1.7rem; }
    .ind-stat { padding: 16px 8px 16px 0 !important; }
    .ind-stat:nth-child(even) { padding-left: 8px !important; padding-right: 0 !important; }
    .ind-stat .v { font-size: 1.3rem; }
    .ind-result { padding: 32px; }
    .ind-result .quote { font-size: 1.15rem; }
    .ind-result .metric .n { font-size: 2.2rem; }

    /* CASES */
    .case { padding: 32px; }
    .case .case-metric .n { font-size: 2.8rem; }
    .case .case-quote { font-size: 1.04rem; }

    /* FAQ */
    .faq-item summary { font-size: 1.1rem; padding: 24px 0; }

    /* FINAL */
    .final-banner { padding: 44px 30px; }
    .final-left h2 { font-size: 1.9rem; }
    .form-card { padding: 28px 24px; }
    .field-grid { grid-template-columns: 1fr; gap: 0; }

    /* PREVIEW */
    .preview { padding: 24px; }
    .preview-kpis { grid-template-columns: 1fr 1fr; gap: 10px; }
    .preview-kpi .v { font-size: 1.4rem; }

    /* FOOTER */
    .foot-top { grid-template-columns: 1fr; gap: 32px; }
    .foot-bottom { flex-direction: column; align-items: flex-start; }
  }

  @media (max-width: 420px) {
    .hero h1 { font-size: 2.4rem; }
    h2 { font-size: 2rem; }
    .preview-kpis { grid-template-columns: 1fr; }
    .meta-item { padding-right: 14px; }
    .meta-item + .meta-item { padding-left: 14px; }
    .meta-item .v { font-size: 1.3rem; }
  }
