/* ============================================================
   Zeroth — site shell styles (light "commissioning document" system)
   Used by the marketing pages: index, services, system, work,
   team, contact, privacy, terms.

   The firm is paper; the system is dark glass. Light engineered-
   document surfaces carry the words; the running OS appears only
   inside contained dark panels (.panel-sys) and the footer. The
   brand mark keeps its exact colours (pulse #3DF5A6 ring, lime
   #D4FF4A dot) and sits on a small dark tile so it always reads
   against paper.

   shared.css remains the stylesheet for the product/utility pages
   (approve, connected, unsubscribe, campaign template) and must
   not be edited as part of the marketing redesign.
   ============================================================ */

:root{
  /* Paper surfaces */
  --paper:        #F5F6F2;
  --paper-raised: #FBFBF9;
  --card:         #FFFFFF;

  /* Ink */
  --ink:          #10201A;
  --ink-2:        rgba(16,32,26,0.68);
  --ink-3:        rgba(16,32,26,0.45);

  /* Hairlines on paper */
  --line:         rgba(16,32,26,0.14);
  --line-faint:   rgba(16,32,26,0.08);
  --line-strong:  rgba(16,32,26,0.30);

  /* Working accent on paper (AA on --paper and --card) */
  --green-700:    #0A5741;
  --green-600:    #0E6B4E;
  --green-tint:   rgba(14,107,78,0.07);
  --green-line:   rgba(14,107,78,0.28);

  /* Brand signal pair — the logo's own colours. Dark surfaces and
     LED dots only; never running text on paper. */
  --pulse:        #3DF5A6;
  --lime:         #D4FF4A;

  /* System surfaces (dark panels: the product itself) */
  --sys:          #0C1712;
  --sys-raised:   #12211A;
  --sys-line:     rgba(237,244,239,0.12);
  --sys-line-faint: rgba(237,244,239,0.07);
  --sys-text:     #EDF4EF;
  --sys-muted:    rgba(237,244,239,0.62);
  --sys-subtle:   rgba(237,244,239,0.42);

  /* Type */
  --font-display: 'Archivo', 'Public Sans', ui-sans-serif, system-ui, sans-serif;
  --font-body:    'Public Sans', ui-sans-serif, system-ui, sans-serif;
  --font-mono:    'Fragment Mono', ui-monospace, 'SF Mono', monospace;
  --stretch-display: 112%;

  /* Motion */
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --d-micro:      120ms;
  --d-state:      200ms;
  --d-entrance:   560ms;

  /* Radii */
  --r-sm:         6px;
  --r-md:         10px;
  --r-lg:         14px;
  --r-xl:         20px;
  --r-full:       9999px;

  /* Shadows */
  --shadow-card:  0 1px 2px rgba(16,32,26,0.04), 0 10px 28px -18px rgba(16,32,26,0.14);
  --shadow-panel: 0 1px 0 rgba(255,255,255,0.06) inset, 0 32px 72px -32px rgba(12,23,18,0.55);
}

*{ box-sizing: border-box; }
html, body{
  margin:0; padding:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: none;
}
html{ min-height: 100%; scroll-behavior: smooth; }
body{
  font-size:16px;
  line-height:1.62;
  letter-spacing: -0.004em;
  overflow-x:hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body > footer{ margin-top: auto; }

/* Paper grain — the matte film that makes the light surfaces read as
   stock rather than screen. Black speckle at 3%: visible tooth on
   paper, optically absent on the dark glass surfaces, which stay
   smooth on purpose. Fixed, non-interactive, printed over everything. */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

a{ color:inherit; text-decoration:none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img{ max-width: 100%; }

::selection{ background: var(--pulse); color: var(--ink); }

.mono{ font-family: var(--font-mono); font-weight:400; letter-spacing: 0.01em; }
.accent{ color: var(--green-600); }

/* Display type helper — every heading derives from this voice */
.display{
  font-family: var(--font-display);
  font-stretch: var(--stretch-display);
  font-weight: 620;
  letter-spacing: -0.025em;
}

/* ========= shell ========= */
.container{ width: min(1200px, 92vw); margin: 0 auto; position: relative; z-index: 1; }

/* ========= top nav (dark glass cap — the system holds the page) ========= */
.nav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 14px 0;
  background: var(--sys);
  border-bottom: 1px solid rgba(237,244,239,0.08);
  transition: box-shadow var(--d-state) var(--ease-out);
}
.nav.scrolled,
.nav.solid{
  box-shadow: 0 12px 32px -20px rgba(12,23,18,0.55);
}
.nav-row{ display:flex; align-items:center; justify-content:space-between; gap:24px; }

.brand{ display:flex; align-items:center; gap:11px; }
.brand-mark{ width: 25px; height: 25px; display: block; flex: 0 0 auto; }
.brand-word{
  font-family: var(--font-display);
  font-stretch: var(--stretch-display);
  font-weight: 640;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--sys-text);
}

.nav-links{ display:flex; align-items:center; gap: 28px; }
.nav-links a{
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--sys-muted);
  padding: 4px 0;
  transition: color var(--d-state) var(--ease-out);
}
.nav-links a::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--pulse);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--d-state) var(--ease-out);
}
.nav-links a:hover{ color: var(--sys-text); }
.nav-links a:focus-visible{
  color: var(--sys-text);
  outline: 2px solid var(--pulse);
  outline-offset: 4px;
}
.nav-links a.is-active{ color: var(--sys-text); }
.nav-links a.is-active::after{ transform: scaleX(1); }

/* nav dropdown — a parent item with a small menu of pages under it.
   Opens on hover and on focus at desktop; at mobile the whole thing
   flattens into the stacked menu, with the children indented. */
.nav-drop{ position: relative; display: flex; align-items: center; }
.nav-drop > a{ display: inline-flex; align-items: center; gap: 6px; }
.nav-drop > a .caret{
  width: 9px; height: 9px; flex: none; margin-top: 1px;
  transition: transform var(--d-state) var(--ease-out);
}
.nav-drop:hover > a .caret,
.nav-drop:focus-within > a .caret{ transform: rotate(180deg); }
.nav-drop-menu{
  position: absolute;
  top: 100%; left: -14px;
  margin-top: 12px;
  min-width: 226px;
  padding: 7px;
  background: var(--sys-raised);
  border: 1px solid var(--sys-line);
  border-radius: var(--r-md);
  box-shadow: 0 18px 40px -18px rgba(0,0,0,0.55);
  display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity var(--d-state) var(--ease-out),
              transform var(--d-state) var(--ease-out),
              visibility var(--d-state);
  z-index: 60;
}
/* a hit area bridging the gap, so the menu doesn't close as you reach it */
.nav-drop::after{
  content: ""; position: absolute; top: 100%; left: 0; right: -20px;
  height: 14px; display: none;
}
.nav-drop:hover::after, .nav-drop:focus-within::after{ display: block; }
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu{
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-links .nav-drop-menu a{
  padding: 9px 11px;
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--sys-muted);
  line-height: 1.35;
}
.nav-links .nav-drop-menu a::after{ display: none; }
.nav-links .nav-drop-menu a:hover{ background: rgba(61,245,166,0.09); color: var(--sys-text); }
.nav-links .nav-drop-menu a.is-active{ color: var(--sys-text); }
.nav-drop-menu .dd-note{
  display: block; margin-top: 2px;
  font-size: 12px; color: var(--sys-muted); opacity: .78;
}

.nav-cta{
  display:inline-flex; align-items:center; gap: 8px;
  padding: 10px 16px; border-radius: var(--r-md);
  background: var(--paper); color: var(--ink);
  font-weight: 500; font-size: 14px;
  min-height: 40px;
  transition: background var(--d-state) var(--ease-out);
}
.nav-cta:hover{ background: var(--pulse); }
.nav-cta .arrow{ width:14px; height:14px; }

.nav-signin{
  font-size: 14.5px;
  font-weight: 500;
  color: var(--sys-muted);
  white-space: nowrap;
  transition: color var(--d-state) var(--ease-out);
}
.nav-signin:hover{ color: var(--sys-text); }
.nav-signin-mobile{ display: none; }

/* mobile menu toggle (≤ 760px) */
.nav-toggle{
  display: none;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  margin-left: 6px;
  border-radius: var(--r-md);
  border: 1px solid var(--sys-line);
  background: var(--sys-raised);
  color: var(--sys-text);
}
.nav-toggle:focus-visible{ outline: 2px solid var(--pulse); outline-offset: 2px; }
.nav-toggle svg{ width: 18px; height: 18px; }

@media (max-width: 760px){
  .nav-signin{ display: none; }
  .nav-signin-mobile{ display: block; }
  .nav-links{
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 6vw 16px;
    background: var(--sys);
    border-bottom: 1px solid rgba(237,244,239,0.08);
  }
  .nav.open .nav-links{ display: flex; }
  .nav-links a{
    padding: 14px 4px;
    font-size: 15px;
    color: var(--sys-text);
    border-bottom: 1px solid var(--sys-line-faint);
  }
  .nav-links a::after{ display: none; }
  .nav-links a:last-child{ border-bottom: 0; }
  .nav-toggle{ display: inline-flex; }

  /* the dropdown flattens: parent, then its children indented under it */
  .nav-drop{ display: block; }
  .nav-drop > a{ border-bottom: 1px solid var(--sys-line-faint); }
  .nav-drop > a .caret{ display: none; }
  .nav-drop::after{ display: none; }
  .nav-drop-menu{
    position: static; opacity: 1; visibility: visible; transform: none;
    margin: 0; padding: 0; min-width: 0;
    background: transparent; border: 0; box-shadow: none;
  }
  .nav-links .nav-drop-menu a{
    padding: 12px 4px 12px 18px;
    font-size: 14.5px;
    border-bottom: 1px solid var(--sys-line-faint);
    border-radius: 0;
  }
  .nav-links .nav-drop-menu a:hover{ background: transparent; }
  .nav-drop-menu .dd-note{ display: none; }
}

/* ========= buttons ========= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap: 10px;
  padding: 13px 20px;
  border-radius: var(--r-md);
  font-size: 14.5px; font-weight: 500;
  min-height: 46px;
  transition: background var(--d-state) var(--ease-out),
              border-color var(--d-state) var(--ease-out),
              color var(--d-state) var(--ease-out);
}
.btn-primary{
  background: var(--ink); color: var(--paper);
}
.btn-primary:hover{ background: var(--green-700); }
.btn-ghost{
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover{ border-color: var(--ink); }
.btn:focus-visible{ outline: 2px solid var(--green-600); outline-offset: 2px; }
.btn .arrow{ width:14px; height:14px; transition: transform var(--d-state) var(--ease-out); }
.btn:hover .arrow{ transform: translateX(2px); }

/* On dark panels / footer */
.btn-on-sys{
  background: var(--pulse); color: var(--ink);
}
.btn-on-sys:hover{ background: var(--lime); }

/* ========= LED pulse — the OS panel's live dot ========= */
@keyframes zeroth-pulse{
  0%, 100%{ opacity: 0.5; }
  50%     { opacity: 1; }
}

/* ========= skip link (keyboard users; hidden until focused) ========= */
.skip-link{
  position: fixed;
  top: -100px; left: 16px;
  z-index: 400;
  padding: 10px 16px;
  border-radius: var(--r-md);
  background: var(--sys);
  color: var(--sys-text);
  font-size: 14px; font-weight: 500;
  transition: top var(--d-state) var(--ease-out);
}
.skip-link:focus,
.skip-link:focus-visible{
  top: 12px;
  outline: 2px solid var(--pulse);
  outline-offset: 2px;
}

/* ========= interior page hero =========
   Dark glass with the brand arc drawn on it: the ring sweeps in from
   the top-right, the lime dot resting in its gap. A background image,
   so every page inherits it without extra markup. */
.page-hero{
  padding: 158px 0 64px;
  position: relative;
  background: var(--sys);
  color: var(--sys-text);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'><g transform='rotate(149.4 320 320)'><circle cx='320' cy='320' r='300' fill='none' stroke='rgba(61,245,166,0.28)' stroke-width='1.5' stroke-linecap='round' pathLength='100' stroke-dasharray='92 8'/></g><circle cx='108' cy='532' r='4.5' fill='%23D4FF4A'/></svg>");
  background-repeat: no-repeat;
  background-position: calc(100% + 220px) -320px;
  background-size: 680px 680px;
}
@media (max-width: 760px){
  /* Higher and further out: the dot clears the headline and floats in
     the dark band above it instead of landing on the words. */
  .page-hero{ background-position: calc(100% + 320px) -460px; }
}
.page-hero h1{
  font-family: var(--font-display);
  font-stretch: var(--stretch-display);
  font-weight: 620;
  font-size: clamp(38px, 5.6vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  margin: 0 0 18px;
  max-width: 21ch;
  text-wrap: balance;
  color: var(--sys-text);
}
.page-hero h1 .accent{ color: var(--pulse); }
.page-hero .lede{
  color: var(--sys-muted);
  font-size: clamp(16px, 2vw, 18.5px);
  line-height: 1.65;
  max-width: 62ch;
  margin: 0;
  text-wrap: pretty;
}
@media (max-width: 640px){
  .page-hero{ padding: 122px 0 44px; }
}

/* ========= section primitives ========= */
section.block{ padding: 104px 0; position: relative; }
section.block.hairline-top{ border-top: 1px solid var(--line-faint); }

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.section-tag{
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--green-600);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before{
  content:""; width: 26px; height: 1px; background: var(--green-600); display:inline-block;
}
.section-title{
  font-family: var(--font-display);
  font-stretch: var(--stretch-display);
  font-weight: 620;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 18px 0 0;
  max-width: 22ch;
  text-wrap: balance;
}
.section-title .accent{ color: var(--green-600); }
.section-desc{
  max-width: 48ch;
  color: var(--ink-2);
  font-size: 16.5px;
  line-height: 1.62;
  text-wrap: pretty;
}

/* ========= cards ========= */
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}

/* ========= chips ========= */
.chip{
  display:inline-flex; align-items:center; gap: 6px;
  padding: 5px 10px;
  border-radius: var(--r-full);
  border: 1px solid var(--line);
  background: var(--card);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
}

/* ========= dark system panel ========= */
/* The one place the old world survives: wherever the running OS
   itself is depicted. Pulse/lime live here at full strength. */
.panel-sys{
  background: var(--sys);
  color: var(--sys-text);
  border: 1px solid #0A130F;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-panel);
}
.panel-sys ::selection{ background: var(--pulse); color: var(--ink); }

/* OS vignette grammar (hero window, reusable) */
.os-head{
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--sys-line-faint);
}
.os-head .brand-mark{ width: 17px; height: 17px; }
.os-head .os-name{
  font-family: var(--font-display);
  font-stretch: var(--stretch-display);
  font-weight: 600; font-size: 13.5px;
  letter-spacing: -0.01em;
  color: var(--sys-text);
}
.os-head .os-live{
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sys-muted);
}
.os-head .os-live .led{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(212,255,74,0.7);
  animation: zeroth-pulse 1.8s var(--ease-out) infinite;
}
.os-body{ padding: 18px; display: grid; gap: 14px; }
.os-row{ display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: start; }
.os-row .who{
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sys-subtle); padding-top: 4px;
}
.os-row .say{
  font-size: 13.5px; line-height: 1.55; color: var(--sys-text);
  margin: 0;
}
.os-row.sys .say{ color: var(--sys-muted); }
.os-row .say strong{ color: var(--sys-text); font-weight: 600; }
.os-lines{
  display: grid; gap: 6px;
  margin: 8px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--sys-line-faint);
  border-radius: var(--r-md);
  background: var(--sys-raised);
  font-family: var(--font-mono); font-size: 12px;
  color: var(--sys-muted);
}
.os-lines .ok{ color: var(--pulse); }
.os-audit{
  border-top: 1px solid var(--sys-line-faint);
  padding: 12px 18px 16px;
  display: grid; gap: 7px;
}
.os-audit .audit-tag{
  font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sys-subtle);
}
.os-audit .audit-row{
  display: flex; gap: 10px; align-items: baseline;
  font-family: var(--font-mono); font-size: 11.5px;
  color: var(--sys-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.os-audit .audit-row .t{ color: var(--sys-subtle); }
.os-audit .audit-row .ok{ color: var(--pulse); }

/* ========= ring dials (Diagnose / Deliver / Maintain) =========
   The brand ring completing across the three phases. Base ring in
   hairline; progress arc in green; the lime dot arrives at 100%. */
.dial{ width: 56px; height: 56px; position: relative; flex: 0 0 auto; }
.dial svg{ width: 100%; height: 100%; display: block; }
.dial .dial-num{
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 12.5px;
  color: var(--ink);
}

/* ========= footer (dark base — the site ends inside the system) ========= */
footer{
  background: var(--sys);
  color: var(--sys-text);
  border-top: 1px solid rgba(237,244,239,0.08);
  padding: 54px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'><circle cx='320' cy='320' r='300' fill='none' stroke='rgba(237,244,239,0.07)' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: calc(100% - 40px) -480px;
  background-size: 640px 640px;
}
.footer-row{
  display:flex; align-items:center; justify-content:space-between; gap: 20px;
  flex-wrap: wrap;
}
.footer-row .meta{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--sys-muted);
  display:flex; gap: 22px; flex-wrap: wrap;
  letter-spacing: 0.05em;
}
.footer-row .meta a{
  transition: color var(--d-state) var(--ease-out);
}
.footer-row .meta a:hover,
.footer-row .meta a:focus-visible{
  color: var(--pulse);
  outline: none;
}

/* ========= shared closing CTA band =========
   The decision moment enters the system: dark glass, the pulse
   button at full strength, the brand ring behind — flowing into
   the dark footer as one base. */
.cta-band{
  padding: 118px 0;
  text-align: center;
  position: relative;
  background: var(--sys);
  color: var(--sys-text);
  overflow: hidden;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'><circle cx='320' cy='320' r='300' fill='none' stroke='rgba(237,244,239,0.06)' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: -300px calc(50% - 40px);
  background-size: 760px 760px;
}
.cta-band h2{
  font-family: var(--font-display);
  font-stretch: var(--stretch-display);
  font-weight: 620;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.026em;
  margin: 0 auto 18px;
  max-width: 22ch;
  text-wrap: balance;
  color: var(--sys-text);
}
.cta-band h2 .accent{ color: var(--pulse); }
.cta-band p{
  color: var(--sys-muted);
  font-size: 17px;
  line-height: 1.62;
  max-width: 54ch;
  margin: 0 auto 36px;
  text-wrap: pretty;
}
.cta-band .btn-primary{ background: var(--pulse); color: var(--ink); }
.cta-band .btn-primary:hover{ background: var(--lime); }
.cta-band .btn-ghost{ border-color: var(--sys-line); color: var(--sys-text); }
.cta-band .btn-ghost:hover{ border-color: var(--sys-text); }
.cta-band .btn:focus-visible{ outline-color: var(--pulse); }
.cta-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
@media (max-width: 640px){ .cta-band{ padding: 78px 0; } }

/* Collapse doubled hairlines where a raised band meets a bordered
   neighbour — two adjacent 1px rules read as one heavy line. */
.page-hero + .band{ border-top: 0; }
.band + .cta-band{ border-top: 0; }
.band + .band{ border-top: 0; }

/* ========= fine print ========= */
.sub-fine{
  display: inline;
  font-size: 0.85em;
  color: var(--ink-3);
  margin-left: 6px;
}

/* ========= responsive ========= */
@media (max-width: 900px){
  section.block{ padding: 68px 0; }
  .section-head{
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 38px;
  }
  .section-head .section-desc{ max-width: none; }
}
@media (max-width: 640px){
  section.block{ padding: 52px 0; }
  .section-head{ margin-bottom: 30px; }
  .section-desc{ font-size: 15px; }
  .footer-row{ flex-direction: column; align-items: flex-start; gap: 18px; }
}
@media (max-width: 480px){
  .container{ width: 90vw; }
  .nav{ padding: 12px 0; }
  .nav-cta{ padding: 8px 12px; font-size: 13px; min-height: 36px; }
  .brand-word{ font-size: 17px; }
  section.block{ padding: 44px 0; }
  .section-title{ font-size: clamp(26px, 7.5vw, 34px); }
  .footer-row .meta{ gap: 12px; font-size: 11px; }
}

/* ========= reduced motion ========= */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
