/* ════════════════════════════════════════════════════════════
   SITE MOTION SYSTEM — motion.css  (brand-agnostic)
   ------------------------------------------------------------
   Load it on every page (order-independent — works before OR after
   the site's own stylesheet). To match the brand, set any of these
   on :root in the SITE'S css; each has a sensible fallback so you
   only override what you want:

     :root{
       --motion-1: 232,168,32;            primary accent  (r,g,b)
       --motion-2: 130,175,225;           secondary accent (r,g,b)
       --motion-accent: #e8a820;          solid accent: bars/progress
       --motion-accent-2: #f5c842;        lighter accent
       --motion-ink: #0f2540;             deep brand color (dark accents)
       --motion-dark-rgb: 13,27,42;       dark brand color "r,g,b" — drives the video scrim
       --motion-nav-bg: rgba(255,255,255,.98);  scrolled-nav background
     }

   The JS (animations.js) reads --motion-1 / --motion-2 for the hero
   canvas. Honors prefers-reduced-motion automatically — the hero
   background video is paused + reset to its poster by animations.js
   (CSS alone cannot stop <video> playback).
   ════════════════════════════════════════════════════════════ */
:root { --motion-ease: cubic-bezier(.22,1,.36,1); }

@media (prefers-reduced-motion: reduce) {
  .rv,.rv-l,.rv-r,.rv-scale,.rv-stagger>* { opacity:1 !important; transform:none !important; }
  .orb,.mq-track { animation:none !important; }
  #hero-canvas,.banner-canvas { display:none !important; }
  /* hover kit: keep the color/glow feedback, suppress the movement */
  .hv-btn:hover,.hv-card:hover,
  .hv-card:hover .hv-icon,.hv-icon:hover,
  .hv-arrow:hover::after { transform:none !important; }
  .hv-btn::before { display:none !important; }
  /* the hero background video is paused + reset to its poster by
     animations.js — CSS cannot stop <video> playback */
}

/* page-load / page-leave fade */
body { animation: pgIn .5s ease both; }

body.leaving { opacity:0; transition:opacity .28s ease; }

@keyframes pgIn { from{opacity:0;} to{opacity:1;} }

/* scroll progress bar — RETIRED 2026-09-06 (owner ruling: reads as an AI template).
   No #sprog element, no rule. */

/* ── live video-background hero (the homepage standard, 2026-06) ──
   <video class="video-bg" autoplay muted loop playsinline
          aria-hidden="true" poster="…" src="…"></video>
   + a SEPARATE sibling <div class="video-scrim"></div> layered above.
   Set --motion-dark-rgb to the client's dark brand color ("r,g,b").
   The scrim is a LAYERED gradient: directional dark wash + bottom-up
   fade. NB: `at`-position syntax is radial-only — never use it inside
   linear-gradient() (the background silently drops → white section). */
.video-bg { position:absolute; inset:0; z-index:0; width:100%; height:100%;
  object-fit:cover; pointer-events:none; filter:brightness(.5); }

.video-scrim { position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    linear-gradient(105deg, rgba(var(--motion-dark-rgb,13,27,42),.86) 0%, rgba(var(--motion-dark-rgb,13,27,42),.55) 48%, rgba(var(--motion-dark-rgb,13,27,42),.28) 100%),
    linear-gradient(0deg, rgba(var(--motion-dark-rgb,13,27,42),.92) 0%, rgba(var(--motion-dark-rgb,13,27,42),0) 45%);
}

/* scroll-aware nav condense — solid background only; never
   backdrop-filter:blur() on a sticky/fixed nav (2026-06 perf rule).
   v1.2.0: .scrolled is applied with hysteresis (on past 96px, off under 24px)
   in animations.js — a site's .scrolled rule may shrink the nav, but the
   toggle can no longer flicker at the threshold (the 2026-09-06 bounce fix). */
[data-motion-nav] { transition: padding .3s var(--motion-ease), background .3s, box-shadow .3s; }

[data-motion-nav].scrolled {
  background: var(--motion-nav-bg,rgba(255,255,255,.98));
  box-shadow: 0 2px 0 rgba(15,37,64,.04), 0 10px 28px rgba(15,37,64,.12);
}

/* floating ambient orbs — live inside dark hero sections */
.orb-field { position:absolute; inset:0; z-index:0; pointer-events:none; overflow:hidden; }

.orb { position:absolute; border-radius:50%; filter:blur(44px); will-change:transform,opacity; }

.orb-1 { width:420px; height:420px; top:-90px; left:-70px;
  background:radial-gradient(circle, rgba(var(--motion-1,232,168,32),.42), transparent 70%);
  animation:wtOrb1 9s ease-in-out infinite alternate; }

.orb-2 { width:360px; height:360px; bottom:-100px; right:-50px;
  background:radial-gradient(circle, rgba(var(--motion-2,130,175,225),.32), transparent 70%);
  animation:wtOrb2 12s ease-in-out infinite alternate; }

.orb-3 { width:300px; height:300px; top:45%; left:60%;
  background:radial-gradient(circle, rgba(var(--motion-1,232,168,32),.22), transparent 70%);
  animation:wtOrb3 7s ease-in-out infinite alternate; }

@keyframes wtOrb1 { 0%{opacity:.40;transform:scale(1);} 100%{opacity:.75;transform:scale(1.12) translate(2%,2%);} }

@keyframes wtOrb2 { 0%{opacity:.30;transform:scale(1);} 100%{opacity:.62;transform:scale(1.1) translate(-2%,-3%);} }

@keyframes wtOrb3 { 0%{opacity:.16;transform:translate(-50%,-50%) scale(1);} 100%{opacity:.38;transform:translate(-50%,-50%) scale(1.4);} }

/* hero / banner canvases */
#hero-canvas { position:absolute; inset:0; z-index:1; width:100%; height:100%; pointer-events:none; }

.banner-canvas { position:absolute; inset:0; z-index:1; width:100%; height:100%; pointer-events:none; }

/* the section that holds a canvas/orbs must be position:relative and its
   content lifted above — add [data-motion-stage] to that section */
[data-motion-stage] { position:relative; }

[data-motion-stage] > .container,
[data-motion-stage] > div:not(.orb-field):not(.banner-canvas):not(.video-scrim) { position:relative; z-index:2; }

/* scroll reveal */
.rv { opacity:0; transform:translateY(22px); transition:opacity .9s var(--motion-ease),transform .9s var(--motion-ease); }

.rv.on { opacity:1; transform:none; }

.rv-l { opacity:0; transform:translateX(-26px); transition:opacity .9s var(--motion-ease),transform .9s var(--motion-ease); }

.rv-l.on { opacity:1; transform:none; }

.rv-r { opacity:0; transform:translateX(26px); transition:opacity .9s var(--motion-ease),transform .9s var(--motion-ease); }

.rv-r.on { opacity:1; transform:none; }

.rv-scale { opacity:0; transform:scale(.94); transition:opacity .9s var(--motion-ease),transform .9s var(--motion-ease); }

.rv-scale.on { opacity:1; transform:none; }

.rv-stagger > * { opacity:0; transform:translateY(22px); transition:opacity .8s var(--motion-ease),transform .8s var(--motion-ease); }

.rv-stagger.on > * { opacity:1; transform:none; }

.rv-stagger.on > *:nth-child(2){transition-delay:.08s;}

.rv-stagger.on > *:nth-child(3){transition-delay:.16s;}

.rv-stagger.on > *:nth-child(4){transition-delay:.24s;}

.rv-stagger.on > *:nth-child(5){transition-delay:.32s;}

.rv-stagger.on > *:nth-child(6){transition-delay:.40s;}

/* marquee trust ticker — CLIENT-REQUEST ONLY (removed from the
   standard 2026-06-22). Never wire a marquee by default; these rules
   stay dormant unless the client explicitly asks for one. */
.marquee { overflow:hidden; padding:14px 0; position:relative; }

.marquee--accent { background:linear-gradient(90deg, var(--motion-accent,#e8a820), var(--motion-accent-2,#f5c842)); }

.marquee--ink { background:var(--motion-ink,#0f2540); }

.mq-track { display:flex; white-space:nowrap; animation:mqs 30s linear infinite; }

.marquee:hover .mq-track { animation-play-state:paused; }

.mq-item { display:inline-flex; align-items:center; gap:22px; padding:0 38px;
  font-size:.72rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase; }

.marquee--accent .mq-item { color:var(--motion-ink,#0f2540); }

.marquee--ink .mq-item { color:#fff; }

.mq-item span.dot { width:6px; height:6px; border-radius:50%; background:currentColor; opacity:.55; }

@keyframes mqs { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ════════════════════════════════════════════════════════════
   HOVER-INTERACTION KIT (2026-08-25 — standard)
   ------------------------------------------------------------
   Harvested from the Wolf & Tiger reference build: the "sections
   respond to you" feel. CSS-only, no JS, additive opt-in hooks —
   never restyles a component's base look. Recolors entirely from
   the --motion-* brand variables (jewel tones under palette law).
   Only transform / opacity / box-shadow / color / border-color
   animate — never layout properties.
   Default accent is --motion-1; add .hv-2 to any hook to use
   --motion-2 instead.
   ════════════════════════════════════════════════════════════ */

/* 1 ── buttons: sheen sweep + lift + brand glow.
   <a class="btn hv-btn">Book a Consultation</a> */
.hv-btn { position:relative; overflow:hidden; isolation:isolate;
  transition:transform .3s var(--motion-ease), box-shadow .35s var(--motion-ease); }

.hv-btn::before { content:''; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(105deg, transparent 38%, rgba(255,255,255,.18) 50%, transparent 62%);
  transform:translateX(-101%); transition:transform .6s var(--motion-ease); }

.hv-btn:hover::before { transform:translateX(101%); }

.hv-btn:hover { transform:translateY(-3px);
  box-shadow:0 14px 36px rgba(var(--motion-1,232,168,32),.30),
             0 0 40px rgba(var(--motion-1,232,168,32),.16); }

.hv-btn.hv-2:hover { box-shadow:0 14px 36px rgba(var(--motion-2,130,175,225),.30),
             0 0 40px rgba(var(--motion-2,130,175,225),.16); }

/* 2 ── links / nav items: underline grows in with a faint glow.
   <a class="nav-link hv-underline">Services</a>  (needs inline/inline-block) */
.hv-underline { position:relative; }

.hv-underline::after { content:''; position:absolute; left:0; bottom:-2px;
  width:100%; height:1.5px; background:var(--motion-accent,#e8a820);
  box-shadow:0 0 10px rgba(var(--motion-1,232,168,32),.45);
  transform:scaleX(0); transform-origin:left center;
  transition:transform .35s var(--motion-ease); }

.hv-underline:hover::after, .hv-underline.on::after { transform:scaleX(1); }

/* 3 ── cards / tiles: lift + brand-tinted layered shadow + border tint.
   <div class="card hv-card"> … </div> */
.hv-card { transition:transform .3s var(--motion-ease), box-shadow .35s var(--motion-ease),
  border-color .3s, background .3s; }

.hv-card:hover { transform:translateY(-4px);
  border-color:rgba(var(--motion-1,232,168,32),.28);
  box-shadow:0 20px 52px rgba(var(--motion-1,232,168,32),.14),
             0 4px 16px rgba(var(--motion-1,232,168,32),.08),
             0 0 40px rgba(var(--motion-1,232,168,32),.12); }

.hv-card.hv-2:hover { border-color:rgba(var(--motion-2,130,175,225),.28);
  box-shadow:0 20px 52px rgba(var(--motion-2,130,175,225),.14),
             0 4px 16px rgba(var(--motion-2,130,175,225),.08),
             0 0 40px rgba(var(--motion-2,130,175,225),.12); }

/* 4 ── accent bar: a 3px brand bar grows across the card's top edge.
   Add .hv-bar to the SAME element as .hv-card (needs position + overflow). */
.hv-bar { position:relative; overflow:hidden; }

.hv-bar::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; z-index:1;
  background:var(--motion-accent,#e8a820);
  transform:scaleX(0); transform-origin:left center;
  transition:transform .4s var(--motion-ease); }

.hv-bar.hv-2::before { background:var(--motion-accent-2,#f5c842); }

.hv-bar:hover::before { transform:scaleX(1); }

/* 5 ── ghost numeral recolor: a card's oversized numeral shifts from
   neutral to a translucent brand tint when its card is hovered.
   <div class="hv-card hv-bar"><span class="hv-num">01</span> … </div>
   (The numeral's base size/color belong to the site's own CSS —
   this hook only adds the hover recolor.) */
.hv-num { transition:color .3s; }

.hv-card:hover .hv-num { color:rgba(var(--motion-1,232,168,32),.16); }

.hv-card.hv-2:hover .hv-num { color:rgba(var(--motion-2,130,175,225),.16); }

/* 6 ── icon chips: gentle scale + soft glow when their card (or the
   icon itself) is hovered.  <span class="wi-icon hv-icon">✓</span> */
.hv-icon { transition:transform .3s var(--motion-ease), box-shadow .3s; }

.hv-card:hover .hv-icon, .hv-icon:hover { transform:scale(1.08);
  box-shadow:0 0 16px rgba(var(--motion-1,232,168,32),.32); }

.hv-card.hv-2:hover .hv-icon { box-shadow:0 0 16px rgba(var(--motion-2,130,175,225),.32); }

/* 7 ── arrow nudge on text CTAs.  <a class="hv-arrow">Our services</a> */
.hv-arrow::after { content:'→'; display:inline-block; margin-left:8px;
  transition:transform .25s var(--motion-ease); }

.hv-arrow:hover::after { transform:translateX(4px); }

/* ==============================================================
   Self-hosted webfonts (ROUND 12) -- Libre Baskerville + Lora,
   SIL Open Font License 1.1. Subsetted to latin + latin-ext only.
   Files + unicode-range values fetched verbatim from Google Fonts
   css2 API (modern-browser UA) and served locally from
   assets/fonts/ so the page has zero font-related third-party
   requests. See assets/fonts/OFL.txt for attribution.
   ============================================================== */
/* latin-ext */
@font-face{
  font-family:'Libre Baskerville';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url('../site/assets/fonts/libre-baskerville-400-latin-ext.woff2') format("woff2");
  unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face{
  font-family:'Libre Baskerville';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url('../site/assets/fonts/libre-baskerville-400.woff2') format("woff2");
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin-ext */
@font-face{
  font-family:'Libre Baskerville';
  font-style:normal;
  font-weight:700;
  font-display:swap;
  src:url('../site/assets/fonts/libre-baskerville-700-latin-ext.woff2') format("woff2");
  unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face{
  font-family:'Libre Baskerville';
  font-style:normal;
  font-weight:700;
  font-display:swap;
  src:url('../site/assets/fonts/libre-baskerville-700.woff2') format("woff2");
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin-ext */
@font-face{
  font-family:'Libre Baskerville';
  font-style:italic;
  font-weight:400;
  font-display:swap;
  src:url('../site/assets/fonts/libre-baskerville-400i-latin-ext.woff2') format("woff2");
  unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face{
  font-family:'Libre Baskerville';
  font-style:italic;
  font-weight:400;
  font-display:swap;
  src:url('../site/assets/fonts/libre-baskerville-400i.woff2') format("woff2");
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin-ext */
@font-face{
  font-family:'Libre Baskerville';
  font-style:italic;
  font-weight:700;
  font-display:swap;
  src:url('../site/assets/fonts/libre-baskerville-700i-latin-ext.woff2') format("woff2");
  unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face{
  font-family:'Libre Baskerville';
  font-style:italic;
  font-weight:700;
  font-display:swap;
  src:url('../site/assets/fonts/libre-baskerville-700i.woff2') format("woff2");
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin-ext */
@font-face{
  font-family:'Lora';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url('../site/assets/fonts/lora-400-latin-ext.woff2') format("woff2");
  unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face{
  font-family:'Lora';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url('../site/assets/fonts/lora-400.woff2') format("woff2");
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin-ext */
@font-face{
  font-family:'Lora';
  font-style:normal;
  font-weight:500;
  font-display:swap;
  src:url('../site/assets/fonts/lora-500-latin-ext.woff2') format("woff2");
  unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face{
  font-family:'Lora';
  font-style:normal;
  font-weight:500;
  font-display:swap;
  src:url('../site/assets/fonts/lora-500.woff2') format("woff2");
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin-ext */
@font-face{
  font-family:'Lora';
  font-style:normal;
  font-weight:600;
  font-display:swap;
  src:url('../site/assets/fonts/lora-600-latin-ext.woff2') format("woff2");
  unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face{
  font-family:'Lora';
  font-style:normal;
  font-weight:600;
  font-display:swap;
  src:url('../site/assets/fonts/lora-600.woff2') format("woff2");
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin-ext */
@font-face{
  font-family:'Lora';
  font-style:italic;
  font-weight:400;
  font-display:swap;
  src:url('../site/assets/fonts/lora-400i-latin-ext.woff2') format("woff2");
  unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face{
  font-family:'Lora';
  font-style:italic;
  font-weight:400;
  font-display:swap;
  src:url('../site/assets/fonts/lora-400i.woff2') format("woff2");
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ==============================================================
   MORE ACCOUNTING CLIENTS -- homepage, direction mockup
   Palette law (MAC-BRAND.md): Forest / Mint / Mint Deep / Mint Tint /
   White / Cool Tint only. No warm neutrals of any kind.
   ============================================================== */
:root{
  --forest:#061c14; --deepest:#020d09;
  --mint:#34d399; --emerald:#059669; --emerald-ink:#047857;
  --tint:#d1fae5; --tint-soft:#e9fbf3; --cool:#f4f7f6; --cool-2:#eef4f2; --white:#fff;
  --body:#374151; --muted:#6b7280; --hairline:#e2e8e6; --hairline-2:#d7e3de;

  --serif:'Libre Baskerville',Georgia,serif;
  --sans:'Lora',Georgia,serif;

  --wrap:1180px; --r:16px; --r-sm:12px; --r-btn:8px;
  --sh-1:0 1px 2px rgba(6,28,20,.05),0 8px 24px rgba(6,28,20,.06);
  --sh-2:0 2px 4px rgba(6,28,20,.05),0 18px 44px rgba(6,28,20,.10);
  --sh-3:0 2px 4px rgba(6,28,20,.05),0 28px 64px rgba(5,150,105,.14);

  /* motion system tokens (assets/motion.css + assets/animations.js) */
  --motion-accent:#059669; --motion-accent-2:#34d399;
  --motion-ink:#061c14; --motion-dark-rgb:6,28,20; --motion-light-rgb:255,255,255;
  --motion-nav-bg:rgba(255,255,255,.985);
  --motion-1:5,150,105; --motion-2:107,114,128;
}

/* light stages keep the ink-green bloom; dark stages switch to mint */
.stage-dark{--motion-1:52,211,153; --motion-2:209,250,229;
  --motion-accent:#34d399; --motion-accent-2:#6ee7b7;}

*,*::before,*::after{box-sizing:border-box}

html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}

/* ROUND 15 - anchor landing, no-JS floor. The sticky header is 81px tall
   before it condenses, so a plain #hash jump clears it by 16px. With JS the
   shared nav script re-lands the jump against the CONDENSED bar (67px), which
   is the height the visitor actually sees when the scroll ends. */
:target{scroll-margin-top:97px}

body{margin:0;background:var(--white);color:var(--body);font-family:var(--sans);
  font-size:17px;line-height:1.72;font-weight:400;-webkit-font-smoothing:antialiased}

img,svg,video{max-width:100%;display:block}

h1,h2,h3{font-family:var(--serif);font-weight:700;line-height:1.16;margin:0 0 .55em;
  letter-spacing:-.012em;color:var(--forest)}

h1{font-size:clamp(2.3rem,4.9vw,3.75rem)}

h2{font-size:clamp(1.72rem,3vw,2.5rem)}

h3{font-size:clamp(1.1rem,1.6vw,1.28rem)}

h1 em,h2 em{font-style:italic;color:var(--emerald)}

p{margin:0 0 1.1em}

a{color:var(--emerald-ink);text-decoration:none}

a:hover{color:var(--emerald)}

strong{color:var(--forest);font-weight:600}

:focus-visible{outline:3px solid var(--emerald);outline-offset:3px;border-radius:4px}

.wrap{width:100%;max-width:var(--wrap);margin:0 auto;padding:0 26px}

.lede{font-size:1.1rem;color:var(--body);max-width:62ch}

.muted{color:var(--muted)}

.vh{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0 0 0 0);white-space:nowrap;border:0}

.skip{position:absolute;left:-9999px;top:0;background:var(--forest);color:#fff;padding:12px 20px;z-index:9999}

.skip:focus{left:8px;top:8px;color:#fff}

.sec{position:relative;overflow:hidden;padding:88px 0}

.sec-tight{padding:74px 0}

.sec > .wrap{position:relative;z-index:1}

.sec-cool{background:linear-gradient(180deg,var(--cool) 0%,var(--cool-2) 100%);
  border-block:1px solid var(--hairline)}

.sec-mint{background:linear-gradient(180deg,var(--cool) 0%,#eefaf4 46%,#e6f8ef 100%);
  border-block:1px solid var(--hairline)}

.sec-cool,.sec-mint{--muted:#5b6670}

/* AA on tinted grounds */
.sec-head{max-width:64ch;margin:0 0 40px}

.eyebrow{font-family:var(--sans);font-style:italic;font-size:.86rem;letter-spacing:.04em;
  color:var(--emerald-ink);display:flex;align-items:center;gap:9px;margin:0 0 14px}

.eyebrow::before{content:"";width:22px;height:1px;background:var(--emerald);flex:0 0 22px}

.rule{height:1px;border:0;margin:0;background:linear-gradient(90deg,transparent,var(--hairline-2),transparent)}

/* -- decorative texture layers (always behind content) --------- */
.tex{position:absolute;inset:0;display:block;pointer-events:none;z-index:0}

.tex-rule{background-image:linear-gradient(90deg,rgba(5,150,105,.055) 1px,transparent 1px);
  background-size:76px 100%;
  -webkit-mask-image:linear-gradient(180deg,transparent,#000 22%,#000 74%,transparent);
  mask-image:linear-gradient(180deg,transparent,#000 22%,#000 74%,transparent)}

.tex-dots{background-image:radial-gradient(rgba(5,150,105,.13) 1px,transparent 1.5px);
  background-size:27px 27px;opacity:.55;
  -webkit-mask-image:linear-gradient(180deg,transparent,#000 28%,#000 72%,transparent);
  mask-image:linear-gradient(180deg,transparent,#000 28%,#000 72%,transparent)}

.tex-wash-l{background:radial-gradient(56% 74% at 3% 8%,rgba(209,250,229,.60),transparent 64%)}

.tex-wash-r{background:radial-gradient(54% 70% at 97% 91%,rgba(5,150,105,.09),transparent 66%)}

/* -- buttons --------------------------------------------------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;
  font-family:var(--serif);font-weight:700;font-size:.94rem;letter-spacing:.005em;
  padding:15px 28px;border-radius:var(--r-btn);border:1.5px solid transparent;cursor:pointer;
  text-align:center;line-height:1.25}

.btn-primary{background:var(--mint);color:var(--forest);border-color:var(--mint)}

.btn-primary:hover{background:#2bc78d;border-color:#2bc78d;color:var(--forest)}

.btn-ghost{background:var(--white);color:var(--emerald-ink);border-color:var(--hairline-2)}

.btn-ghost:hover{color:var(--emerald-ink);border-color:var(--emerald);background:#f7fcfa}

.btn-ghost-d{background:transparent;color:#fff;border-color:rgba(255,255,255,.45)}

.btn-ghost-d:hover{color:#fff;border-color:#fff;background:rgba(255,255,255,.08)}

.btn-sm{padding:11px 19px;font-size:.86rem}

.tlink{font-family:var(--serif);font-weight:700;font-size:.92rem;display:inline-block;
  color:var(--emerald-ink)}

.tlink.muted{color:var(--muted);font-weight:400;font-family:var(--sans)}

.tlink.muted:hover{color:var(--emerald-ink)}

/* decorative block-level fills used by the CSS mocks */
.mk-val,.mk-box .bv,.mk-gap-bar{display:block}

.cta-row{display:flex;flex-wrap:wrap;gap:14px;align-items:center}

.cta-note{font-size:.86rem;color:var(--muted)}

/* -- header / nav ---------------------------------------------- */
.site-head{position:sticky;top:0;z-index:9000;background:var(--white);border-bottom:1px solid var(--hairline)}

.nav{display:flex;align-items:center;gap:20px;min-height:80px}

.brandmark{display:flex;align-items:center;flex:0 0 auto}

.brandmark img{height:26px;width:auto}

.nav-links{display:flex;align-items:center;gap:24px;margin-left:auto;list-style:none;padding:0;margin-block:0}

.nav-links > li{position:relative;flex:0 0 auto}

.nav-links a:not(.btn){color:var(--forest);font-size:.94rem;font-weight:500;display:inline-flex;
  align-items:center;gap:5px;padding:6px 0}

.nav-links a:not(.btn):hover{color:var(--emerald-ink)}

.nav-links svg{width:13px;height:13px;opacity:.7}

.drop{position:absolute;top:calc(100% + 16px);left:-18px;min-width:264px;background:var(--white);
  border:1px solid var(--hairline);border-radius:var(--r);box-shadow:var(--sh-2);padding:10px;
  list-style:none;margin:0;opacity:0;visibility:hidden;transform:translateY(-6px);
  transition:opacity .2s ease,transform .2s ease,visibility .2s}

/* ROUND 15 - the 16px between the trigger and the panel was a hover dead zone:
   the pointer left .has-drop before it reached the panel and the menu shut. An
   invisible bridge spans the gap, so the panel is flush with the trigger's box
   for hit-testing while staying 16px clear of it visually. */
.drop::before{content:"";position:absolute;left:0;right:0;top:-16px;height:16px}

.has-drop:hover .drop,.has-drop:focus-within .drop,.has-drop.hovering .drop{opacity:1;visibility:visible;transform:none}

.drop a{display:block;padding:9px 13px;border-radius:8px;font-size:.9rem;font-weight:500}

.drop a:hover{background:var(--cool);color:var(--emerald-ink)}

.drop .drop-top a{font-weight:700}

.navtoggle{display:none;margin-left:auto;background:var(--white);border:1.5px solid var(--hairline);
  border-radius:9px;width:46px;height:44px;cursor:pointer;align-items:center;justify-content:center}

.navtoggle span{display:block;width:20px;height:2px;background:var(--forest);position:relative}

.navtoggle span::before,.navtoggle span::after{content:"";position:absolute;left:0;width:20px;height:2px;background:var(--forest)}

.navtoggle span::before{top:-6px}

.navtoggle span::after{top:6px}

[data-motion-nav].scrolled .nav{min-height:66px}

/* -- hero (light, live video beneath a light scrim) ------------ */
.hero{position:relative;overflow:hidden;background:var(--white);padding:96px 0 88px;
  min-height:min(84vh,742px);display:flex;align-items:center;border-bottom:1px solid var(--hairline)}

.hero video.video-bg{background:transparent}

/* the footage is composed for the cards: the subject sits small and low in the
   bottom-right. Above 1024px the hero box is wider than the clip at 1440 (only Y
   bites, 36px of travel) and taller than it at 1200 (only X bites, 175px), so one
   pair holds her below Card A and behind Card B at both. Centered on mobile,
   where the scrim is ~93% white anyway. */
.hero .video-bg{object-position:28% 82%}

@media (max-width:1024px){.hero .video-bg{object-position:50% 50%}}

.hero .video-bg.vb-light{filter:brightness(.99) contrast(1.05) saturate(1.04)}

.hero .video-scrim.scrim-light{background:
  linear-gradient(100deg,rgba(255,255,255,.97) 0%,rgba(255,255,255,.95) 40%,rgba(255,255,255,.90) 58%,
    rgba(255,255,255,.46) 72%,rgba(255,255,255,.16) 100%),
  linear-gradient(0deg,rgba(255,255,255,.84) 0%,rgba(255,255,255,0) 52%)}

@media (max-width:1024px){.hero .video-scrim.scrim-light{background:rgba(255,255,255,.93)}}

.hero-wash{position:absolute;inset:0;display:block;pointer-events:none;z-index:1;opacity:.5;
  background:
    radial-gradient(58% 74% at 8% 14%,rgba(209,250,229,.85),transparent 62%),
    radial-gradient(50% 64% at 94% 86%,rgba(5,150,105,.16),transparent 68%),
    radial-gradient(70% 50% at 50% 108%,rgba(226,242,236,.70),transparent 70%)}

.hero-rule{position:absolute;inset:0;display:block;pointer-events:none;z-index:1;opacity:.66;
  background-image:linear-gradient(90deg,rgba(5,150,105,.06) 1px,transparent 1px);
  background-size:76px 100%;
  -webkit-mask-image:linear-gradient(180deg,transparent,#000 26%,#000 68%,transparent);
  mask-image:linear-gradient(180deg,transparent,#000 26%,#000 68%,transparent)}

.hero-grid{display:grid;grid-template-columns:1.06fr .94fr;gap:56px;align-items:center;width:100%}

.hero h1{margin-bottom:.36em;max-width:15ch}

.hero h1,.hero .hero-sub,.hero .hero-trust,.hero .eyebrow{text-shadow:0 1px 14px rgba(255,255,255,.92)}

.hero-sub{font-size:1.1rem;color:var(--body);max-width:56ch}

.hero-cta{display:flex;flex-wrap:wrap;gap:14px;margin:30px 0 14px}

.cta-micro{margin:0 0 16px;font-size:.88rem;color:var(--muted);max-width:54ch;line-height:1.55}

.hero-trust{display:flex;flex-wrap:wrap;align-items:center;gap:10px;font-size:.85rem;
  letter-spacing:.02em;color:var(--emerald-ink);margin:0}

.hero-trust svg{width:15px;height:15px;flex:0 0 15px;color:var(--emerald)}

.hero-trust i{width:1px;height:12px;background:var(--hairline-2);display:inline-block;font-style:normal}

/* -- hero card cluster (Holyoak pattern, MAC tokens) ------------ */
.hero-cards{position:relative;display:grid;gap:16px;z-index:2}

.mcard{background:linear-gradient(180deg,var(--white) 0%,#f7fbf9 100%);border:1px solid #cfe4da;
  border-radius:18px;padding:24px 26px;
  box-shadow:0 2px 4px rgba(6,28,20,.05),0 26px 60px rgba(5,150,105,.15)}

.mcard-a{order:2;width:min(352px,100%);margin-left:-30px;margin-right:auto;z-index:3;
  animation:floatCard 6.6s ease-in-out infinite alternate}

.mcard-b{order:3;width:min(292px,84%);margin-left:auto;margin-right:-12px;z-index:2;
  animation:floatCard 8.2s ease-in-out infinite alternate-reverse}

.mcard-c{order:1;width:min(256px,74%);margin-left:auto;margin-right:-22px;z-index:2;
  animation:floatCard 7.4s ease-in-out infinite alternate-reverse}

@keyframes floatCard{from{transform:translateY(0)}to{transform:translateY(-11px)}}

.mcard-head{display:flex;align-items:center;gap:11px;margin-bottom:15px;font-size:.86rem;
  font-weight:600;color:var(--muted)}

.mc-label{line-height:1.25}

.icon-box{width:38px;height:38px;flex:0 0 38px;border-radius:11px;background:var(--tint);
  color:var(--emerald-ink);display:flex;align-items:center;justify-content:center}

.icon-box svg{width:19px;height:19px}

.dotlive{width:10px;height:10px;flex:0 0 10px;border-radius:50%;background:var(--emerald);
  box-shadow:0 0 0 4px rgba(5,150,105,.15);animation:pulseDot 6.4s ease-in-out infinite}

@keyframes pulseDot{0%{box-shadow:0 0 0 0 rgba(5,150,105,.30)}
  22%{box-shadow:0 0 0 9px rgba(5,150,105,0)}
  24%,100%{box-shadow:0 0 0 0 rgba(5,150,105,0)}}

.mcard h3{font-family:var(--serif);font-size:1.32rem;color:var(--emerald);margin:0 0 .32em;line-height:1.24}

.mcard p{font-size:.925rem;color:var(--muted);margin:0;line-height:1.6}

/* the benchmark figures, the About strip's idiom at card scale (not a chart).
   1.2rem bold Libre Baskerville clears AA as large text in Mint Deep. */
.fig-strip{display:flex;align-items:center;gap:11px;margin:14px 0 0;padding-top:13px;
  border-top:1px solid var(--hairline)}

.fig-strip b{font-family:var(--serif);font-weight:700;font-size:1.2rem;color:var(--emerald);
  line-height:1.1;letter-spacing:-.01em}

.fig-strip span{color:#b6c4be;font-size:1rem;line-height:1}

/* -- serve strip ----------------------------------------------- */
.serve{background:linear-gradient(180deg,var(--cool) 0%,var(--cool-2) 100%);
  border-bottom:1px solid var(--hairline);--muted:#5b6670}

.serve-inner{display:flex;flex-wrap:wrap;align-items:center;gap:14px 26px;padding:22px 0}

.serve-label{font-family:var(--serif);font-style:italic;font-weight:700;font-size:.9rem;color:var(--forest)}

.serve-tag{display:inline-flex;align-items:center;gap:9px;font-size:.9rem;color:var(--body)}

.serve-tag svg{width:19px;height:19px;flex:0 0 19px;color:var(--emerald)}

/* -- icon boxes ------------------------------------------------ */
.ico{width:44px;height:44px;flex:0 0 44px;border-radius:12px;background:var(--tint);
  color:var(--emerald-ink);display:flex;align-items:center;justify-content:center}

.ico svg{width:24px;height:24px}

.ico-sm{width:34px;height:34px;flex:0 0 34px;border-radius:9px}

.ico-sm svg{width:19px;height:19px}

/* -- generic grids / cards ------------------------------------- */
.grid-2{display:grid;grid-template-columns:1.02fr .98fr;gap:56px;align-items:start}

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}

.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}

.card{background:linear-gradient(180deg,var(--white) 0%,#fafcfb 100%);border:1px solid var(--hairline);
  border-radius:var(--r);padding:28px 26px;box-shadow:0 1px 2px rgba(6,28,20,.045)}

.card h3{margin-bottom:.42em}

.card p{color:var(--muted);font-size:.95rem;margin:0}

/* -- the hard truth -------------------------------------------- */
.pain-list{display:grid;gap:22px;margin-top:34px}

.pain-item{display:flex;gap:18px;align-items:flex-start}

.pain-item h3{margin:0 0 .3em;font-size:1.1rem}

.pain-item p{margin:0;color:var(--muted);font-size:.96rem;max-width:52ch}

.photoframe{margin:0;border-radius:var(--r);overflow:hidden;border:1px solid var(--hairline);
  background:linear-gradient(160deg,var(--cool) 0%,#e9f1ee 100%);box-shadow:var(--sh-2)}

/* the 16:10 box belongs to the wrapper, so a missing photograph degrades to a
   Cool-Tint frame with its caption instead of collapsing */
.pf-media{position:relative;aspect-ratio:16/10;overflow:hidden;
  background:linear-gradient(160deg,var(--cool) 0%,#e4efea 100%)}

.pf-media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 55%}

.photoframe figcaption{padding:13px 18px;font-family:var(--sans);font-style:italic;font-size:.86rem;
  color:var(--muted);background:linear-gradient(180deg,var(--white) 0%,#f7fbf9 100%);
  border-top:1px solid var(--hairline)}

.statbox{display:flex;gap:20px;align-items:center;margin-top:20px;padding:22px 24px;
  background:linear-gradient(160deg,var(--tint-soft) 0%,var(--tint) 100%);
  border:1px solid #b7ecd4;border-radius:var(--r)}

.statbox b{font-family:var(--serif);font-size:2.1rem;line-height:1;color:var(--emerald-ink);flex:0 0 auto}

.statbox span{font-size:.92rem;color:var(--body);line-height:1.55}

.statbox strong{display:block}

/* -- free tools ------------------------------------------------ */
.tool-card{display:flex;flex-direction:column;gap:0;background:var(--white);border:1px solid var(--hairline);
  border-radius:var(--r);padding:28px 26px 26px;box-shadow:var(--sh-1)}

.tool-card h3{margin:16px 0 .4em}

.tool-card p{color:var(--muted);font-size:.95rem;margin-bottom:20px}

.mock{border:1px solid var(--hairline);border-radius:var(--r-sm);overflow:hidden;background:var(--white);
  margin-bottom:22px}

.mock-head{display:flex;align-items:center;gap:10px;padding:10px 13px;background:var(--cool);
  border-bottom:1px solid var(--hairline)}

.mock-head .browser-dots i{width:7px;height:7px}

.mock-title{font-family:var(--serif);font-weight:700;font-size:.78rem;color:var(--forest)}

.mock-body{padding:14px 16px 16px}

.mk-row{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:7px 0;
  border-bottom:1px solid var(--hairline)}

.mk-row:last-of-type{border-bottom:0}

.mk-label{font-size:.8rem;color:var(--body)}

.mk-tag{font-size:.66rem;color:var(--emerald-ink);background:var(--tint-soft);border:1px solid var(--tint);
  border-radius:99px;padding:1px 8px;margin-left:6px}

.mk-val{height:9px;border-radius:99px;background:linear-gradient(90deg,#dbe4e0,#c8d5d0);flex:0 0 auto}

.mk-val.w1{width:52px}

.mk-val.w2{width:40px}

.mk-val.w3{width:60px}

.mk-val.w4{width:46px}

.mk-tot{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:14px}

.mk-box{border:1px solid var(--hairline);border-radius:9px;padding:10px 11px;background:#fbfdfc}

.mk-box.hi{background:linear-gradient(180deg,var(--tint-soft),#dff7ec);border-color:#a9e8cf}

.mk-box .bl{display:block;font-size:.64rem;letter-spacing:.05em;text-transform:uppercase;color:var(--muted);
  margin-bottom:8px;line-height:1.3}

.mk-box .bv{height:11px;border-radius:99px;background:linear-gradient(90deg,#d3ded9,#c2d0cb);width:80%}

.mk-box.hi .bv{background:linear-gradient(90deg,var(--mint),var(--emerald));width:92%}

.mk-gap{display:flex;align-items:center;gap:16px;padding-bottom:14px;border-bottom:1px solid var(--hairline)}

.mk-gap-bar{height:16px;border-radius:99px;background:linear-gradient(90deg,var(--mint),var(--emerald));
  width:110px;flex:0 0 110px}

.mk-gap-lbl{font-size:.74rem;color:var(--muted);line-height:1.4}

.mk-tiers{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:14px}

.mk-tier{border:1px solid var(--hairline);border-radius:9px;padding:10px 9px;text-align:center;background:#fbfdfc}

.mk-tier .tl{display:block;font-size:.64rem;letter-spacing:.05em;text-transform:uppercase;color:var(--muted)}

.mk-tier .tr{display:block;height:7px;border-radius:99px;background:#d3ded9;margin:8px auto 9px;width:64%}

.mk-tier .tc{display:block;font-family:var(--serif);font-weight:700;font-size:1.16rem;color:var(--emerald-ink);line-height:1}

.mk-tier .ts{display:block;font-size:.63rem;color:var(--muted);margin-top:3px}

.mk-foot{margin:12px 0 0;font-size:.72rem;color:var(--muted);font-style:italic}

.tool-foot{margin-top:auto;display:flex;flex-wrap:wrap;align-items:center;gap:12px 16px}

/* -- start free (secondary path) ------------------------------- */
.free-grid{grid-template-columns:1.08fr .92fr;gap:48px;align-items:center}

.checklist{display:grid;grid-template-columns:1fr 1fr;gap:12px 30px;margin:28px 0 30px;padding:0;list-style:none}

.checklist li{display:flex;gap:12px;align-items:flex-start;font-size:.93rem;color:var(--body);line-height:1.5}

.checklist svg{width:19px;height:19px;flex:0 0 19px;margin-top:4px;color:var(--emerald)}

/* deliberately lighter than the MAC System card row: hairline border, soft shadow */
.freecard{background:linear-gradient(180deg,var(--white) 0%,#f7fbf9 100%);border:1px solid var(--hairline);
  border-radius:var(--r);padding:26px 24px 22px;box-shadow:var(--sh-1)}

.fc-title{font-family:var(--serif);font-weight:700;font-size:1rem;color:var(--forest);margin:0 0 6px}

.fc-list{list-style:none;padding:0;margin:0}

.fc-list li{display:flex;align-items:center;gap:13px;padding:13px 0;border-top:1px solid var(--hairline)}

.fc-name{flex:1 1 auto;min-width:0;font-size:.89rem;line-height:1.45;color:var(--body)}

.fc-pill{flex:0 0 auto;font-family:var(--sans);font-style:italic;font-size:.7rem;color:var(--muted);
  background:var(--cool);border:1px solid var(--hairline);border-radius:99px;padding:2px 10px}

.pipeline{margin-top:20px;padding-top:20px;border-top:1px solid var(--hairline)}

.pl-row{display:flex;align-items:flex-start;justify-content:space-between;gap:6px}

.pl-step{display:flex;flex-direction:column;align-items:center;gap:9px;flex:1 1 0;min-width:0}

.pl-node{width:38px;height:38px;flex:0 0 38px;border-radius:11px;background:var(--white);
  border:1px solid var(--hairline);color:var(--emerald-ink);display:flex;align-items:center;justify-content:center}

.pl-node svg{width:18px;height:18px}

.pl-node.is-on{background:var(--mint);border-color:var(--mint);color:var(--forest)}

.pl-label{font-size:.72rem;color:var(--muted);text-align:center;line-height:1.3}

.pl-sep{flex:0 0 auto;margin-top:9px;font-size:1.05rem;color:#b6c4be}

/* -- services row ---------------------------------------------- */
.svc{display:flex;flex-direction:column;height:100%;background:linear-gradient(180deg,var(--white) 0%,#fafcfb 100%);
  border:1px solid var(--hairline);border-radius:var(--r);padding:28px 26px;position:relative;overflow:hidden;
  box-shadow:0 1px 2px rgba(6,28,20,.045)}

.svc.is-featured{border-color:#a9e8cf;box-shadow:0 2px 4px rgba(6,28,20,.05),0 20px 46px rgba(5,150,105,.13)}

.svc.is-featured::after{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:var(--mint)}

.svc h3{margin:14px 0 .4em}

.svc > p{color:var(--muted);font-size:.94rem;margin-bottom:16px}

.svc > p{margin-bottom:0}

/* -- closing CTA (dark) ---------------------------------------- */
.ctaband{position:relative;overflow:hidden;color:#fff;padding:88px 0;text-align:center;
  background:linear-gradient(160deg,#061c14 0%,#0b3b27 56%,#061c14 100%)}

.ctaband h2{color:#fff;max-width:20ch;margin-inline:auto}

.ctaband h2 em{color:var(--mint)}

.ctaband p{color:#c6ded3;max-width:58ch;margin-inline:auto;font-size:1.06rem}

.dotgrid{position:absolute;inset:0;display:block;pointer-events:none;z-index:0;
  background-image:
    radial-gradient(rgba(52,211,153,.15) 1px,transparent 1.4px),
    radial-gradient(rgba(52,211,153,.08) 1px,transparent 1.4px);
  background-size:28px 28px,60px 60px;background-position:0 0,14px 14px}

.ctarow{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;margin-top:26px}

/* -- outcomes band (the page's one dark mid-band) -------------- */
.outcomes{position:relative;overflow:hidden;background:var(--forest);color:#bcd4c9;padding:78px 0}

.outcomes h2{color:#fff;max-width:27ch;margin-bottom:.4em}

.outcomes h2 em{color:var(--mint)}

.out-lede{color:#bcd4c9;font-size:1.06rem;max-width:62ch;margin:0}

.out-note{font-size:.86rem;color:rgba(255,255,255,.62);margin:12px 0 0;font-style:italic}

.out-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin:40px 0 34px}

.out-tile{background:rgba(255,255,255,.045);border:1px solid rgba(255,255,255,.13);
  border-radius:var(--r);padding:24px 22px}

.out-tile h3{color:#fff;font-size:1.06rem;margin:14px 0 .38em}

.out-tile p{color:#a9c4b6;font-size:.92rem;line-height:1.6;margin:0}

.out-tile .ico{background:rgba(52,211,153,.14);color:var(--mint)}

.eyebrow-d{color:var(--mint)}

.outcomes .eyebrow-d,.sec-dark .eyebrow-d{color:var(--mint);margin-bottom:14px}

.eyebrow-d::before{background:var(--mint);opacity:.55}

.tlink-d{color:var(--mint)}

.tlink-d:hover{color:#a7f3d0}

/* -- done-for-you: four compact cards -------------------------- */
.svc-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}

.svc-foot{margin-top:auto;padding-top:14px}

@media (max-width:1100px){.svc-grid{grid-template-columns:repeat(2,1fr)}}

@media (max-width:620px){.svc-grid{grid-template-columns:1fr}}

/* -- ambient motion (round 3): slow, ease-in-out, never disorienting --
   loops >= 6s, one-shots <= 1.2s, travel <= 12px, all off under
   prefers-reduced-motion (see the block at the end of this stylesheet) */
/* macBreathe is used by the About page's Premium tier rule */
@keyframes macBreathe{0%,100%{opacity:.75;box-shadow:0 0 0 rgba(52,211,153,0)}
  50%{opacity:1;box-shadow:0 0 18px rgba(52,211,153,.55)}}

@keyframes plPulse{0%,3%{box-shadow:0 0 0 0 rgba(52,211,153,.5)}
  15%{box-shadow:0 0 0 10px rgba(52,211,153,0)}
  16%,100%{box-shadow:0 0 0 0 rgba(52,211,153,0)}}

.pl-node{animation:plPulse 8s ease-in-out infinite}

.pl-step:nth-child(3) .pl-node{animation-delay:2s}

.pl-step:nth-child(5) .pl-node{animation-delay:4s}

.pl-step:nth-child(7) .pl-node{animation-delay:6s}

/* -- footer ---------------------------------------------------- */
.site-foot{background:var(--forest);color:#bcd4c9;padding:74px 0 0;font-size:.94rem}

.foot-grid{display:grid;grid-template-columns:1.5fr .9fr .9fr .9fr 1.15fr;gap:36px}

.site-foot h2{color:#fff;font-family:var(--sans);font-size:.78rem;letter-spacing:.11em;
  text-transform:uppercase;margin-bottom:16px;font-weight:600}

.site-foot ul{list-style:none;padding:0;margin:0}

.site-foot li{margin-bottom:10px}

.site-foot a{color:#bcd4c9}

.site-foot a:hover{color:var(--mint)}

.foot-logo{height:24px;width:auto;margin-bottom:18px}

.foot-blurb{max-width:34ch;color:#9fbcae;font-size:.92rem}

.foot-nap{font-style:normal;line-height:1.9}

.foot-bot{margin-top:56px;border-top:1px solid rgba(255,255,255,.13);padding:22px 0;
  display:flex;flex-wrap:wrap;gap:12px 26px;justify-content:space-between;font-size:.84rem;color:#8fae9f}

.foot-bot p{margin:0}

/* -- responsive ------------------------------------------------ */
@media (max-width:1200px){
  .mcard-a{margin-left:0}
  .mcard-b,.mcard-c{margin-right:0}
}

@media (max-width:1024px){
  .hero-grid{grid-template-columns:1fr;gap:40px}
  .hero-cards{gap:18px}
  .mcard-a,.mcard-b,.mcard-c{width:100%;margin-inline:0;animation:none}
  .hero h1{max-width:18ch}
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .foot-grid{grid-template-columns:1fr 1fr;gap:32px}
}

@media (max-width:900px){
  .navtoggle{display:inline-flex}
  .nav-links{position:absolute;left:0;right:0;top:100%;background:var(--white);
    border-top:1px solid var(--hairline);border-bottom:1px solid var(--hairline);
    flex-direction:column;align-items:stretch;gap:0;padding:10px 26px 22px;display:none;
    box-shadow:var(--sh-2);max-height:76vh;overflow-y:auto}
  .nav-links.open{display:flex}
  .nav-links > li{border-bottom:1px solid var(--hairline)}
  .nav-links > li:last-child{border-bottom:0}
  .nav-links > li > a{padding:14px 0;font-size:1rem;justify-content:space-between}
  .drop{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:0;
    padding:0 0 12px 12px;min-width:0;display:none}
  .drop::before{display:none}          /* no hover bridge on the tap panel */
  .has-drop.open .drop{display:block}
  .nav-cta{padding-block:14px}
  .nav-cta .btn{width:100%}
}

@media (max-width:860px){
  .sec{padding:72px 0}
  .sec-tight{padding:56px 0}
  .grid-2,.grid-3{grid-template-columns:1fr;gap:34px}
  .hero{padding:64px 0 60px;min-height:0}
  .checklist{grid-template-columns:1fr}
}

@media (max-width:560px){
  body{font-size:16px}
  .brandmark img{height:19px}
  .grid-4{grid-template-columns:1fr}
  .foot-grid{grid-template-columns:1fr}
  .hero-cta .btn,.ctarow .btn{width:100%}
  .mcard{padding:22px 22px}
  .mk-tot,.mk-tiers{grid-template-columns:1fr}
  .pl-row{gap:2px}
  .pl-node{width:34px;height:34px;flex:0 0 34px}
  .pl-label{font-size:.68rem}
  .statbox{flex-direction:column;align-items:flex-start;gap:10px}
}

@media (max-width:900px){
  .out-grid{grid-template-columns:1fr;gap:16px;margin:32px 0 28px}
}

@media (prefers-reduced-motion:reduce){
  .mcard-a,.mcard-b,.mcard-c,.dotlive,.pl-node{animation:none !important}
}

/* ============================================================
   .tp-content -- generic content scope (ROUND 9)
   ------------------------------------------------------------
   Privacy, Terms, Cookies and every blog post stay WordPress
   content. ThemePort renders them through page.php / single.php /
   archive.php inside THIS site's header and footer, with the body
   inside <section class="tp-section">
              <div class="tp-container tp-content"> ... </div>
            </section>
   so the shared base has to style raw editor HTML on the light
   base. This block is spliced byte-identically into all nine
   pages; no shipped page uses it (content-sample.html proves it).
   ============================================================ */
.tp-section{position:relative;background:var(--white);padding:88px 0}

.tp-container{width:100%;max-width:var(--wrap);margin:0 auto;padding:0 26px}

.tp-content{max-width:72ch;font-family:var(--sans);color:var(--body);font-size:1.02rem;line-height:1.78}

.tp-content > *:first-child{margin-top:0}

.tp-content > *:last-child{margin-bottom:0}

.tp-content h1,.tp-content h2,.tp-content h3,.tp-content h4{font-family:var(--serif);font-weight:700;
  color:var(--forest);letter-spacing:-.012em;line-height:1.18}

.tp-content h1{font-size:clamp(2.1rem,4.3vw,3.1rem);margin:0 0 .5em}

.tp-content h2{font-size:clamp(1.5rem,2.6vw,2.05rem);margin:1.9em 0 .55em}

.tp-content h3{font-size:clamp(1.12rem,1.6vw,1.3rem);margin:1.7em 0 .5em}

.tp-content h4{font-size:1.02rem;margin:1.5em 0 .5em}

.tp-content h1 em,.tp-content h2 em,.tp-content h3 em{font-style:italic;color:var(--emerald)}

.tp-content p{margin:0 0 1.15em}

.tp-content strong,.tp-content b{color:var(--forest);font-weight:600}

.tp-content a{color:var(--emerald-ink);text-decoration:underline;text-underline-offset:3px;
  text-decoration-thickness:1px;text-decoration-color:rgba(5,150,105,.42)}

.tp-content a:hover{color:var(--emerald);text-decoration-color:var(--emerald)}

.tp-content ul,.tp-content ol{margin:0 0 1.15em;padding-left:1.35em}

.tp-content li{margin:0 0 .5em}

.tp-content li::marker{color:var(--emerald)}

.tp-content ul ul,.tp-content ol ol,.tp-content ul ol,.tp-content ol ul{margin:.5em 0 .2em}

.tp-content blockquote{margin:1.7em 0;padding:2px 0 2px 22px;border-left:2px solid var(--mint)}

.tp-content blockquote p{font-style:italic;font-size:1.12rem;color:var(--emerald-ink);
  line-height:1.55;margin:0 0 .5em}

.tp-content blockquote cite{font-style:italic;font-size:.86rem;color:var(--muted)}

.tp-content hr{height:1px;border:0;margin:2.2em 0;
  background:linear-gradient(90deg,transparent,var(--hairline-2),transparent)}

.tp-content figure{margin:1.8em 0}

.tp-content img{height:auto;border-radius:var(--r)}

.tp-content figure img{border:1px solid var(--hairline)}

.tp-content figcaption{font-style:italic;font-size:.86rem;color:var(--muted);margin-top:10px}

/* a wide editor table scrolls inside its own box, never the page */
.tp-content .wp-block-table,.tp-content .tp-table{overflow-x:auto;margin:1.8em 0}

.tp-content table{width:100%;border-collapse:collapse;font-size:.95rem;margin:1.8em 0;
  background:var(--white);border:1px solid var(--hairline);border-radius:var(--r-sm)}

.tp-content .wp-block-table table,.tp-content .tp-table table{margin:0}

.tp-content th,.tp-content td{padding:11px 16px;text-align:left;vertical-align:top;
  border-bottom:1px solid var(--hairline)}

.tp-content thead th{font-family:var(--serif);font-weight:700;font-size:.86rem;color:var(--forest);
  background:linear-gradient(180deg,#fbfdfc,#f5f9f7)}

.tp-content tbody tr:last-child td{border-bottom:0}

.tp-content code,.tp-content kbd,.tp-content samp{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  font-size:.88em;background:var(--cool);border:1px solid var(--hairline);border-radius:6px;padding:1px 6px}

.tp-content pre{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;background:var(--cool);
  border:1px solid var(--hairline);border-radius:var(--r-sm);padding:16px 18px;overflow-x:auto;
  margin:1.6em 0;font-size:.88rem;line-height:1.6}

.tp-content pre code{background:none;border:0;padding:0;font-size:1em}

.tp-content dt{font-family:var(--serif);font-weight:700;color:var(--forest);margin-top:1.1em}

.tp-content dd{margin:0 0 .6em}

@media (max-width:860px){.tp-section{padding:64px 0}}

/* ── ThemePort blog/utility templates (namespaced, no collision with site CSS) ── */
.tp-container { max-width: 1160px; margin: 0 auto; padding: 0 28px; width: 100%; }
.tp-page-hero { background: #061c14; padding: 88px 0 56px; }
.tp-page-hero h1 { color: #fff; font-family: 'Libre Baskerville', serif; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin: 0; }
.tp-page-hero .tp-meta { color: rgba(255,255,255,.75); margin: 12px 0 0; }
.tp-section { padding: 64px 0; }
.tp-content { max-width: 820px; }
.tp-content p, .tp-content ul, .tp-content ol { margin: 0 0 1.2em; }
.tp-content h2, .tp-content h3 { font-family: 'Libre Baskerville', serif; color: #061c14; margin: 1.6em 0 .6em; line-height: 1.25; }
.tp-content img, .tp-featured { max-width: 100%; height: auto; border-radius: 8px; margin: 0 0 1.4em; }
.tp-policy { max-width: 900px; width: 100%; }
.tp-policy h2, .tp-policy h3 { font-family: 'Libre Baskerville', serif; color: #061c14; margin: 1.6em 0 .6em; }
.tp-policy p, .tp-policy ul { margin: 0 0 1.1em; }
.tp-post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 32px; }
.tp-post-card { background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 10px; padding: 24px; box-shadow: 0 6px 24px rgba(0,0,0,.06); }
.tp-post-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 6px; margin-bottom: 16px; }
.tp-post-card h2 { font-family: 'Libre Baskerville', serif; font-size: 1.3rem; line-height: 1.3; margin: 0 0 8px; }
.tp-post-card h2 a { color: #061c14; text-decoration: none; }
.tp-meta { color: rgba(0,0,0,.5); font-size: .85rem; margin: 0 0 10px; }
.tp-readmore { color: #059669; font-weight: 700; text-decoration: none; }
.tp-pagination { margin-top: 40px; text-align: center; }
.tp-pagination .page-numbers { display: inline-block; padding: 8px 14px; margin: 0 3px; border: 1px solid rgba(0,0,0,.15); border-radius: 6px; color: #061c14; text-decoration: none; }
.tp-pagination .page-numbers.current { background: #061c14; color: #fff; }


/* ── ThemePort v2.8.0 — count-adaptive team tiers ────────────────────────── */
.tp-team{display:grid;justify-content:center;align-items:start;gap:2rem;margin-left:auto;margin-right:auto}
.tp-team__card{text-align:center}
.tp-team__photo img{width:100%;height:auto;aspect-ratio:1/1;object-fit:cover;border-radius:12px;display:block}
.tp-team__body h3{margin:.85rem 0 .15rem}
.tp-team__role{display:block;opacity:.75;font-size:.95em}
.tp-team__bio{margin-top:.65rem;text-align:left}

/* 1 — FOUNDER FEATURE: large portrait beside the full bio. Reads as a complete
   solo-firm About section, never as a team page with one lonely card. */
.tp-team--solo{grid-template-columns:minmax(220px,320px) minmax(0,1fr);gap:2.5rem;max-width:900px;text-align:left}
.tp-team--solo .tp-team__card{display:contents}
.tp-team--solo .tp-team__photo{grid-column:1}
.tp-team--solo .tp-team__body{grid-column:2;text-align:left}
.tp-team--solo .tp-team__body h3{margin-top:0;font-size:1.6em}
@media (max-width:720px){
  .tp-team--solo{grid-template-columns:minmax(0,1fr);max-width:420px}
  .tp-team--solo .tp-team__photo,.tp-team--solo .tp-team__body{grid-column:1}
}

/* 2 — balanced centered pair, generous cards side by side */
.tp-team--pair{grid-template-columns:repeat(2,minmax(0,300px));gap:2.5rem;max-width:700px}

/* 3–4 — one centered row of equal cards */
.tp-team--row{grid-template-columns:repeat(auto-fit,minmax(0,240px));max-width:1040px}

/* 5+ — full multi-row grid; photos smallest, density highest */
.tp-team--grid{grid-template-columns:repeat(auto-fit,minmax(200px,1fr));max-width:1160px;gap:1.75rem}
.tp-team--grid .tp-team__bio{font-size:.94em}

@media (max-width:640px){
  .tp-team--pair,.tp-team--row,.tp-team--grid{grid-template-columns:minmax(0,1fr);max-width:380px}
}
