/* ==========================================================================
   Woodguard — woodguardcare.com
   Design system & stylesheet
   Colours: dark forest green · off-white · anthracite · copper accent
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand */
  --forest-950: #071a10;
  --forest-900: #0c2416;
  --forest-800: #12331f;
  --forest-700: #1a4a2e;
  --forest-600: #24693f;
  --forest-500: #34875a;
  --forest-400: #52a677;
  --forest-300: #8ac6a4;
  --forest-100: #dcece2;
  --forest-50:  #f0f7f2;

  --bark-800: #3d2b19;
  --bark-700: #5b4026;
  --bark-600: #7a5730;
  --copper:   #b8783c;
  --copper-l: #d9a065;
  --sand:     #e8dcc8;

  /* Neutrals */
  --ink:      #12171a;
  --ink-2:    #1e262a;
  --slate-700:#3d4a44;
  --slate-500:#5f6d66;
  --slate-400:#8b968f;
  --slate-300:#c3ccc6;
  --line:     #e3e8e4;
  --line-2:   #eef2ef;
  --paper:    #ffffff;
  --off-white:#f8f7f3;
  --off-white-2:#f2f1eb;

  /* Signal */
  --risk-low:  #2f9e5f;
  --risk-med:  #d9a13c;
  --risk-high: #c2503c;
  --info:      #3d7fa6;

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Metrics */
  --wrap: 1200px;
  --wrap-narrow: 820px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --nav-h: 76px;

  --shadow-sm: 0 1px 2px rgba(12,36,22,.06), 0 1px 3px rgba(12,36,22,.05);
  --shadow-md: 0 4px 16px rgba(12,36,22,.07), 0 1px 3px rgba(12,36,22,.05);
  --shadow-lg: 0 18px 48px rgba(12,36,22,.12), 0 4px 12px rgba(12,36,22,.06);
  --shadow-xl: 0 32px 80px rgba(7,26,16,.18);
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1, "cv05" 1;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--forest-700); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--forest-600); }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

h1, h2, h3, h4, h5 {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.021em;
  line-height: 1.14;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: auto;
}
@media (min-width: 700px) { h1, h2, h3, h4, h5 { hyphens: manual; } }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.05rem); letter-spacing: -0.032em; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.85rem); letter-spacing: -0.027em; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.42rem); }
h4 { font-size: 1.05rem; }
p  { margin: 0; text-wrap: pretty; }

:focus-visible {
  outline: 2.5px solid var(--forest-500);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection { background: var(--forest-100); color: var(--forest-900); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--forest-900); color: #fff; padding: 10px 18px;
  border-radius: var(--r-sm); font-size: .92rem; font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- 3. Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.wrap-narrow { max-width: var(--wrap-narrow); }
.section { padding-block: clamp(64px, 8vw, 116px); position: relative; }
.section-sm { padding-block: clamp(48px, 5vw, 72px); }
.section--paper { background: var(--paper); }
.section--offwhite { background: var(--off-white); }
.section--line { border-top: 1px solid var(--line); }

.section--dark {
  background:
    radial-gradient(1100px 520px at 12% -10%, rgba(52,135,90,.20), transparent 62%),
    radial-gradient(900px 480px at 92% 6%, rgba(184,120,60,.11), transparent 60%),
    var(--forest-950);
  color: rgba(255,255,255,.76);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark a { color: var(--forest-300); }
.section--dark .lead { color: rgba(255,255,255,.72); }

.grid { display: grid; gap: 24px; }
.g-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 980px) { .g-3, .g-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .g-2, .g-3, .g-4 { grid-template-columns: 1fr; } }

.grid > * { min-width: 0; }
.split { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split > * { min-width: 0; }
.split--top { align-items: start; }
@media (max-width: 940px) { .split { grid-template-columns: 1fr; } }

/* ---------- 4. Typographic helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .755rem; font-weight: 650; letter-spacing: .14em; text-transform: uppercase;
  color: var(--forest-600); margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1.5px; background: currentColor; opacity: .55;
}
.section--dark .eyebrow { color: var(--forest-300); }

.lead { font-size: clamp(1.06rem, 1.5vw, 1.2rem); line-height: 1.62; color: var(--slate-500); }
.section-head { max-width: 760px; margin-bottom: clamp(36px, 4vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 + .lead { margin-top: 18px; }
.muted { color: var(--slate-500); }
.mono { font-family: var(--font-mono); font-size: .82rem; letter-spacing: .02em; }
.nowrap { white-space: nowrap; }

.statement {
  font-size: clamp(1.35rem, 2.6vw, 2.05rem);
  line-height: 1.34; font-weight: 600; letter-spacing: -0.022em; color: var(--ink);
  text-wrap: balance;
}
.section--dark .statement { color: #fff; }
.statement em { font-style: normal; color: var(--forest-600); }
.section--dark .statement em { color: var(--forest-300); }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px; border-radius: 999px; border: 1.5px solid transparent;
  font-size: .95rem; font-weight: 600; letter-spacing: -0.005em; line-height: 1.2;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--forest-700); color: #fff; box-shadow: 0 6px 18px rgba(26,74,46,.24); }
.btn--primary:hover { background: var(--forest-600); color: #fff; box-shadow: 0 10px 26px rgba(26,74,46,.3); }

.btn--ghost { border-color: var(--line); background: var(--paper); color: var(--ink); }
.btn--ghost:hover { border-color: var(--forest-400); color: var(--forest-700); background: var(--forest-50); }

.btn--onDark { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.24); color: #fff; backdrop-filter: blur(8px); }
.btn--onDark:hover { background: rgba(255,255,255,.17); border-color: rgba(255,255,255,.42); color: #fff; }

.btn--light { background: #fff; color: var(--forest-900); }
.btn--light:hover { background: var(--forest-50); color: var(--forest-900); }

.btn--sm { padding: 9px 17px; font-size: .875rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
@media (max-width: 640px) {
  .btn { white-space: normal; text-align: center; text-wrap: balance; }
  .btn-row .btn { flex: 1 1 100%; }
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: .93rem;
  color: var(--forest-700);
}
.link-arrow::after { content: "→"; transition: transform .2s ease; }
.link-arrow:hover::after { transform: translateX(4px); }
.section--dark .link-arrow { color: var(--forest-300); }

/* ---------- 6. Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav.is-stuck { border-bottom-color: var(--line); box-shadow: 0 2px 14px rgba(12,36,22,.05); }
.nav-inner { display: flex; align-items: center; gap: 22px; height: var(--nav-h); }

.brand { display: flex; align-items: center; gap: 11px; min-width: 0; }
.brand img { width: 40px; height: 40px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-size: 1.19rem; font-weight: 700; letter-spacing: -0.028em; color: var(--forest-800); }
.brand-name span { color: var(--bark-600); }
.brand-tag { font-size: .61rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-400); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links > li:not(.nav-cta) > a {
  display: block; padding: 9px 12px; border-radius: var(--r-sm);
  font-size: .92rem; font-weight: 550; color: var(--slate-700); white-space: nowrap;
}
.nav-links > li:not(.nav-cta) > a:hover { background: var(--forest-50); color: var(--forest-800); }
.nav-links > li:not(.nav-cta) > a[aria-current="page"] { color: var(--forest-800); font-weight: 650; }

.nav-actions { display: flex; align-items: center; gap: 10px; flex: none; margin-left: auto; }
@media (max-width: 760px) {
  .nav-inner { gap: 12px; }
  .nav .brand-tag { display: none; }
  .brand img { width: 34px; height: 34px; }
  .brand-name { font-size: 1.08rem; }
  .lang-switch a { padding: 4px 8px; font-size: .72rem; }
}

.lang-switch { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; padding: 3px; gap: 2px; }
.lang-switch a {
  padding: 4px 10px; border-radius: 999px; font-size: .76rem; font-weight: 650;
  letter-spacing: .04em; color: var(--slate-500);
}
.lang-switch a.is-active { background: var(--forest-800); color: #fff; }
.lang-switch a:not(.is-active):hover { background: var(--forest-50); color: var(--forest-800); }

.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  border-radius: var(--r-sm); background: var(--paper); padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 18px; height: 1.8px; background: var(--ink); border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1200px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 12px 20px 22px; margin: 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links > li:not(.nav-cta) > a { padding: 13px 6px; font-size: 1rem; border-bottom: 1px solid var(--line-2); border-radius: 0; }
  .nav-actions .btn--sm { display: none; }
  .nav-links .nav-login-cta { display: block; margin-top: 16px; }
  .nav-links .nav-cta { display: block; margin-top: 10px; }
  .nav-links .nav-login-cta .btn, .nav-links .nav-cta .btn { width: 100%; }
}
@media (min-width: 1201px) { .nav-links .nav-login-cta, .nav-links .nav-cta { display: none; } }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex; align-items: center;
  padding-block: clamp(72px, 10vw, 132px);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0; z-index: -2;
  /* Replace hero-forest.jpg with your own licensed photograph (min. 2400×1400 px).
     The gradient below is the designed fallback and stays visible behind the photo. */
  background-image:
    linear-gradient(103deg, rgba(7,26,16,.90) 0%, rgba(7,26,16,.74) 44%, rgba(7,26,16,.38) 72%, rgba(7,26,16,.58) 100%),
    url("../img/hero-forest.jpg"),
    linear-gradient(160deg, #0e2d1b 0%, #123c24 46%, #1c5334 100%);
  background-size: cover, cover, cover;
  background-position: center, center 38%, center;
  background-repeat: no-repeat;
}
.hero__grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image:
    radial-gradient(680px 380px at 78% 24%, rgba(82,166,119,.20), transparent 68%),
    linear-gradient(to top, rgba(7,26,16,.88), transparent 46%);
}
.hero__inner { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr); gap: clamp(28px, 4vw, 64px); align-items: center; width: 100%; }
@media (max-width: 980px) { .hero__inner { grid-template-columns: 1fr; } }

.hero h1 { color: #fff; }
.hero__tagline {
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  font-weight: 500; letter-spacing: .01em; color: rgba(255,255,255,.9);
  margin-top: 22px; max-width: 42ch;
}
.hero__claim {
  display: block; margin-top: 8px;
  font-size: clamp(.95rem, 1.3vw, 1.05rem); font-style: italic; color: var(--forest-300);
}
.hero__sub { margin-top: 22px; max-width: 54ch; font-size: clamp(1.02rem, 1.4vw, 1.14rem); color: rgba(255,255,255,.78); }
.hero .btn-row { margin-top: 34px; }
.hero__note { margin-top: 22px; font-size: .87rem; color: rgba(255,255,255,.62); }

.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 9px; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  font-size: .8rem; font-weight: 600; letter-spacing: .01em; color: rgba(255,255,255,.92);
  backdrop-filter: blur(8px); margin-bottom: 26px;
}
.hero__badge b { background: var(--forest-500); color: #061b0f; padding: 2px 9px; border-radius: 999px; font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; }

.hero__aside { display: flex; flex-direction: column; gap: 18px; }
@media (max-width: 980px) { .hero__aside { display: none; } }

/* mission figure: hands / globe illustration */
.mission-figure {
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  padding: 22px 22px 18px;
  text-align: center;
}
.mission-figure svg { width: 100%; max-width: 300px; margin-inline: auto; }
.mission-figure figcaption {
  margin-top: 12px; font-size: .82rem; line-height: 1.5; color: rgba(255,255,255,.72);
}

/* hero stat rail */
.hero-rail {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.16);
  margin-top: clamp(40px, 5vw, 64px); padding-top: 26px; gap: 20px;
}
.hero-rail div span { display: block; font-size: 1.5rem; font-weight: 650; color: #fff; letter-spacing: -0.02em; }
.hero-rail div small { display: block; margin-top: 4px; font-size: .8rem; color: rgba(255,255,255,.62); line-height: 1.4; }
@media (max-width: 720px) { .hero-rail { grid-template-columns: repeat(2, 1fr); row-gap: 22px; } }
@media (max-width: 560px) {
  .hero .btn-row .btn { flex: 1 1 100%; }
  .hero-rail div span { font-size: 1.16rem; }
  .hero-rail div small { font-size: .76rem; }
}

/* page hero (subpages) */
.page-hero {
  padding-block: clamp(56px, 7vw, 92px) clamp(40px, 5vw, 64px);
  background:
    radial-gradient(900px 400px at 8% 0%, rgba(52,135,90,.10), transparent 60%),
    var(--off-white);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.1rem, 4.2vw, 3.3rem); }
.page-hero .lead { margin-top: 20px; max-width: 66ch; }
.page-hero .btn-row { margin-top: 30px; }

.crumbs { display: flex; gap: 8px; font-size: .82rem; color: var(--slate-400); margin-bottom: 18px; flex-wrap: wrap; }
.crumbs a { color: var(--slate-500); }
.crumbs span::before { content: "/"; margin-right: 8px; color: var(--slate-300); }

/* ---------- 8. Cards ---------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  height: 100%;
}
.card--hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--forest-300); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--slate-500); font-size: .96rem; }
.card__icon {
  width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center;
  background: var(--forest-50); color: var(--forest-700); margin-bottom: 18px; border: 1px solid var(--forest-100);
}
.card__icon svg { width: 21px; height: 21px; }

.section--dark .card {
  background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.74);
}
.section--dark .card p { color: rgba(255,255,255,.7); }
.section--dark .card__icon { background: rgba(52,135,90,.18); border-color: rgba(82,166,119,.28); color: var(--forest-300); }
.section--dark .card--hover:hover { border-color: rgba(82,166,119,.5); background: rgba(255,255,255,.07); }

/* problem cards */
.problem-card {
  border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 22px 20px;
  background: var(--paper); position: relative; overflow: hidden;
}
.problem-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--copper); opacity: .75;
}
.problem-card h4 { font-size: 1.02rem; margin-bottom: 7px; }
.problem-card p { font-size: .91rem; color: var(--slate-500); }

/* feature list */
.checklist { display: grid; gap: 11px; }
.checklist li {
  display: grid; grid-template-columns: 20px 1fr; gap: 11px; align-items: start;
  font-size: .95rem; color: var(--slate-700);
}
.checklist li::before {
  content: ""; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%;
  background: var(--forest-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a4a2e' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
  border: 1px solid var(--forest-100);
}
.section--dark .checklist li { color: rgba(255,255,255,.76); }
.section--dark .checklist li::before { background-color: rgba(82,166,119,.18); border-color: rgba(82,166,119,.3); }

.taglist { display: flex; flex-wrap: wrap; gap: 8px; }
.taglist li, .tag {
  font-size: .8rem; font-weight: 550; padding: 5px 12px; border-radius: 999px;
  background: var(--off-white-2); color: var(--slate-700); border: 1px solid var(--line);
}
.section--dark .taglist li, .section--dark .tag { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.8); }

/* ---------- 9. Process (7 steps) ---------- */
.steps { display: grid; gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.step {
  display: grid; grid-template-columns: 88px minmax(0,1fr) minmax(0,1.05fr); gap: clamp(18px, 3vw, 40px);
  background: var(--paper); padding: 30px clamp(20px, 3vw, 34px); align-items: start;
  transition: background .2s ease;
}
.step:hover { background: var(--forest-50); }
.step__num {
  font-family: var(--font-mono); font-size: 1.5rem; font-weight: 500; color: var(--forest-400);
  letter-spacing: -0.02em;
}
.step__head h3 { margin-bottom: 8px; }
.step__head p { color: var(--slate-500); font-size: .95rem; }
.step__body { font-size: .9rem; }
.step__body .taglist li { background: var(--paper); }
@media (max-width: 860px) {
  .step { grid-template-columns: 60px 1fr; }
  .step__body { grid-column: 2; }
}

/* flow arrows chain */
.flow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 6px;
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
}
.flow li {
  padding: 7px 13px; border-radius: 999px; border: 1px solid var(--line); background: var(--paper); color: var(--forest-800);
  font-weight: 500;
}
.flow li + li::before { content: "→"; margin-right: 11px; color: var(--slate-300); }
.section--dark .flow li { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: #fff; }
.section--dark .flow li + li::before { color: rgba(255,255,255,.35); }

/* ---------- 10. Risk engine ---------- */
.engine { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(20px, 3vw, 44px); align-items: center; }
@media (max-width: 940px) { .engine { grid-template-columns: 1fr; } }

.engine__inputs { display: grid; gap: 9px; }
.engine__inputs li {
  display: flex; align-items: center; gap: 11px; font-size: .9rem;
  padding: 11px 15px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.86);
}
.engine__inputs li b { font-family: var(--font-mono); font-size: .72rem; color: var(--forest-300); font-weight: 500; }

.engine__core {
  text-align: center; padding: 30px 26px; border-radius: var(--r-lg);
  background: linear-gradient(150deg, rgba(52,135,90,.26), rgba(184,120,60,.14));
  border: 1px solid rgba(82,166,119,.38);
  box-shadow: 0 0 0 1px rgba(255,255,255,.05) inset, 0 20px 60px rgba(0,0,0,.3);
  min-width: 220px;
}
.engine__core .mono { color: var(--forest-300); display: block; margin-bottom: 8px; }
.engine__core strong { display: block; font-size: 1.16rem; color: #fff; letter-spacing: -0.02em; line-height: 1.3; }
.engine__core .pulse {
  width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%;
  background: radial-gradient(circle, rgba(82,166,119,.9), rgba(82,166,119,.15) 70%);
  animation: pulse 3.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.11); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .pulse { animation: none; } }

/* risk score panel */
.risk-panel {
  border-radius: var(--r-lg); padding: 26px;
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13);
}
.risk-panel__top { display: flex; align-items: center; gap: 20px; margin-bottom: 22px; }
.gauge { position: relative; width: 112px; height: 112px; flex: none; }
.gauge svg { transform: rotate(-90deg); width: 112px; height: 112px; }
.gauge__val {
  position: absolute; inset: 0; display: grid; place-content: center; text-align: center;
}
.gauge__val b { font-size: 1.75rem; color: #fff; font-weight: 650; letter-spacing: -0.03em; line-height: 1; }
.gauge__val small { font-size: .68rem; color: rgba(255,255,255,.55); letter-spacing: .08em; text-transform: uppercase; }

.badge {
  display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: 999px;
  font-size: .78rem; font-weight: 650; letter-spacing: .02em;
}
.badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.badge--low  { background: rgba(47,158,95,.16); color: #6fd39a; }
.badge--med  { background: rgba(217,161,60,.16); color: #e6bd6f; }
.badge--high { background: rgba(194,80,60,.16); color: #ef9683; }
.badge--info { background: rgba(61,127,166,.16); color: #86bcdc; }
.badge--onLight.badge--low  { background: rgba(47,158,95,.12); color: #1f7a48; }
.badge--onLight.badge--med  { background: rgba(217,161,60,.16); color: #8a6316; }
.badge--onLight.badge--high { background: rgba(194,80,60,.12); color: #a33d2b; }
.badge--onLight.badge--info { background: rgba(61,127,166,.12); color: #2c6285; }

.kv { display: grid; gap: 1px; background: rgba(255,255,255,.09); border-radius: var(--r-sm); overflow: hidden; }
.kv li {
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
  padding: 11px 15px; background: rgba(9,26,17,.55); font-size: .88rem; color: rgba(255,255,255,.72);
}
.kv li b { color: #fff; font-weight: 600; }
.kv--light li { background: var(--paper); color: var(--slate-500); }
.kv--light { background: var(--line); border: 1px solid var(--line); }
.kv--light li b { color: var(--ink); }

.disclaimer-note {
  margin-top: 16px; font-size: .8rem; line-height: 1.55; color: rgba(255,255,255,.5);
  border-left: 2px solid rgba(255,255,255,.2); padding-left: 12px;
}
.section--paper .disclaimer-note, .section--offwhite .disclaimer-note { color: var(--slate-400); border-color: var(--line); }

/* ---------- 11. Dashboard mock ---------- */
.dash {
  border-radius: var(--r-xl); border: 1px solid var(--line); background: var(--paper);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.section--dark .dash { border-color: rgba(255,255,255,.12); background: #0a2114; box-shadow: var(--shadow-xl); }
.dash__bar {
  display: flex; align-items: center; gap: 9px; padding: 12px 18px;
  border-bottom: 1px solid var(--line); background: var(--off-white);
}
.section--dark .dash__bar { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.dash__dots { display: flex; gap: 6px; }
.dash__dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--slate-300); display: block; }
.dash__title { font-size: .8rem; color: var(--slate-500); font-family: var(--font-mono); }
.dash__body { padding: clamp(18px, 2.4vw, 28px); display: grid; gap: 18px; }

.tile-row { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 12px; }
@media (max-width: 900px) { .tile-row { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 560px) { .tile-row { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.tile {
  border: 1px solid var(--line); border-radius: var(--r-md); padding: 15px; background: var(--paper);
}
.section--dark .tile { border-color: rgba(255,255,255,.1); background: rgba(255,255,255,.03); }
.tile small { display: block; font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 7px; }
.tile b { font-size: 1.45rem; font-weight: 650; letter-spacing: -0.03em; color: var(--ink); display: block; line-height: 1.1; }
.section--dark .tile b { color: #fff; }
.tile span { font-size: .78rem; color: var(--slate-400); }

.bars { display: grid; gap: 10px; }
.bar-row { display: grid; grid-template-columns: 132px 1fr 62px; gap: 14px; align-items: center; font-size: .85rem; }
.bar-row .track { display: block; height: 8px; border-radius: 999px; background: var(--line-2); overflow: hidden; }
.section--dark .bar-row .track { background: rgba(255,255,255,.09); }
.bar-row .fill { display: block; height: 8px; border-radius: 999px; width: 0; transition: width 1.1s cubic-bezier(.22,.8,.3,1); }
.fill--low  { background: linear-gradient(90deg, #2f9e5f, #52a677); }
.fill--med  { background: linear-gradient(90deg, #d9a13c, #e6bd6f); }
.fill--high { background: linear-gradient(90deg, #c2503c, #d97a63); }
.fill--info { background: linear-gradient(90deg, #1a4a2e, #34875a); }
.bar-row .val { text-align: right; font-family: var(--font-mono); font-size: .8rem; color: var(--slate-500); }
.section--dark .bar-row, .section--dark .bar-row .val { color: rgba(255,255,255,.7); }
@media (max-width: 560px) { .bar-row { grid-template-columns: 96px 1fr 52px; font-size: .8rem; } }

/* matrix */
.matrix { display: grid; grid-template-columns: auto repeat(4, 1fr); gap: 5px; font-size: .74rem; }
.matrix div { padding: 10px 6px; text-align: center; border-radius: 6px; }
.matrix .mx-h { color: var(--slate-400); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; font-size: .66rem; }
.matrix .mx-c { font-weight: 650; color: var(--ink); }
.mx-1 { background: rgba(47,158,95,.14); }
.mx-2 { background: rgba(47,158,95,.26); }
.mx-3 { background: rgba(217,161,60,.24); }
.mx-4 { background: rgba(194,80,60,.24); }
.section--dark .matrix .mx-c { color: #fff; }

/* ---------- 12. Table / comparison ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }
.compare__col { border-radius: var(--r-lg); padding: 28px; border: 1px solid var(--line); background: var(--paper); }
.compare__col h3 { font-size: 1.1rem; display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.compare__col--bad { background: var(--off-white-2); }
.compare__col--bad li { color: var(--slate-500); }
.compare__col--good { border-color: var(--forest-300); box-shadow: 0 12px 40px rgba(26,74,46,.09); }
.compare__list { display: grid; gap: 10px; font-size: .93rem; }
.compare__list li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; }
.compare__list li i {
  width: 16px; height: 16px; margin-top: 4px; border-radius: 4px; display: block; flex: none;
  background: var(--line); position: relative;
}
.compare__col--bad li i::after {
  content: "×"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 12px; color: var(--slate-500); font-style: normal; line-height: 1;
}
.compare__col--good li i { background: var(--forest-100); }
.compare__col--good li i::after {
  content: "✓"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 10px; color: var(--forest-700); font-style: normal; line-height: 1;
}

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--paper); }
table.data { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 620px; }
table.data th, table.data td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line-2); vertical-align: top; }
table.data thead th {
  background: var(--off-white); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--slate-500); font-weight: 650; border-bottom-color: var(--line);
}
table.data tbody tr:last-child td { border-bottom: none; }
table.data td:first-child { font-weight: 600; color: var(--ink); }

/* ---------- 13. Alerts / timeline ---------- */
.alerts { display: grid; gap: 10px; }
.alert {
  display: grid; grid-template-columns: 34px 1fr auto; gap: 14px; align-items: center;
  padding: 15px 18px; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--paper);
}
.section--dark .alert { border-color: rgba(255,255,255,.11); background: rgba(255,255,255,.04); }
.alert__ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; font-size: .95rem; }
.alert__ico--med  { background: rgba(217,161,60,.16); color: #a9782a; }
.alert__ico--high { background: rgba(194,80,60,.14); color: #b0442f; }
.alert__ico--info { background: rgba(61,127,166,.13); color: #2c6285; }
.section--dark .alert__ico--med { color: #e6bd6f; }
.section--dark .alert__ico--high { color: #ef9683; }
.section--dark .alert__ico--info { color: #86bcdc; }
.alert b { display: block; font-size: .93rem; color: var(--ink); font-weight: 600; }
.section--dark .alert b { color: #fff; }
.alert span { font-size: .82rem; color: var(--slate-400); }
.alert time { font-family: var(--font-mono); font-size: .74rem; color: var(--slate-400); white-space: nowrap; }
@media (max-width: 620px) { .alert { grid-template-columns: 30px 1fr; } .alert time { grid-column: 2; } }

.timeline { position: relative; display: grid; gap: 0; padding-left: 26px; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 1.5px; background: var(--line); }
.section--dark .timeline::before { background: rgba(255,255,255,.14); }
.timeline li { position: relative; padding: 13px 0 13px 4px; border-bottom: 1px solid var(--line-2); }
.section--dark .timeline li { border-color: rgba(255,255,255,.07); }
.timeline li:last-child { border-bottom: none; }
.timeline li::before {
  content: ""; position: absolute; left: -26px; top: 20px; width: 13px; height: 13px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--forest-400);
}
.section--dark .timeline li::before { background: var(--forest-950); }
.timeline b { display: block; font-size: .93rem; color: var(--ink); }
.section--dark .timeline b { color: #fff; }
.timeline span { font-size: .84rem; color: var(--slate-400); }
.timeline .mono { display: block; margin-bottom: 3px; color: var(--slate-400); font-size: .74rem; }

/* ---------- 14. Evidence chain ---------- */
.chain { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.chain li {
  display: grid; grid-template-columns: 150px 1fr; gap: 18px; align-items: center;
  padding: 15px 20px; background: var(--paper); border-bottom: 1px solid var(--line-2); font-size: .92rem;
}
.chain li:last-child { border-bottom: none; }
.chain li:first-child { background: var(--forest-50); }
.chain li small { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; color: var(--slate-400); }
.chain li b { color: var(--ink); font-weight: 600; }
@media (max-width: 620px) { .chain li { grid-template-columns: 1fr; gap: 4px; } }

/* ---------- 15. Map ---------- */
.map-card {
  border-radius: var(--r-lg); border: 1px solid rgba(255,255,255,.13); overflow: hidden;
  background: linear-gradient(160deg, #0a2416, #071a10);
}
.map-card__head { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.map-card__head b { color: #fff; font-size: .92rem; }
.map-card__body { padding: 12px 16px 18px; }
.map-legend { display: flex; flex-wrap: wrap; gap: 16px; padding: 0 20px 16px; font-size: .78rem; color: rgba(255,255,255,.62); }
.map-legend span { display: inline-flex; align-items: center; gap: 7px; }
.map-legend i { width: 9px; height: 9px; border-radius: 50%; display: block; }

.pin { animation: blip 2.6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.pin:nth-child(2n) { animation-delay: .7s; }
.pin:nth-child(3n) { animation-delay: 1.4s; }
@keyframes blip { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .pin { animation: none; } }

/* ---------- 16. Personas / solutions ---------- */
.persona {
  border-radius: var(--r-lg); border: 1px solid var(--line); padding: 30px; background: var(--paper);
  display: flex; flex-direction: column; gap: 14px; height: 100%;
}
.persona__role { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); }
.persona h3 { font-size: 1.24rem; }
.persona p { color: var(--slate-500); font-size: .95rem; }
.persona ul { margin-top: auto; }

/* ---------- 17. FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 4px; cursor: pointer; list-style: none;
  font-size: 1.05rem; font-weight: 600; color: var(--ink); letter-spacing: -0.012em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--forest-600); flex: none; line-height: 1;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--forest-700); }
.faq__a { padding: 0 4px 24px; max-width: 74ch; color: var(--slate-500); font-size: .96rem; }
.faq__a p + p { margin-top: 12px; }

/* ---------- 18. Forms ---------- */
.form-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow-md);
}
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field label { font-size: .86rem; font-weight: 600; color: var(--slate-700); }
.field label .req { color: var(--copper); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r-sm);
  font: inherit; font-size: .95rem; color: var(--ink); background: var(--paper);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--forest-400); box-shadow: 0 0 0 3px rgba(82,166,119,.16);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
.field--check { display: grid; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; margin-bottom: 22px; }
.field--check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--forest-700); }
.field--check label { font-size: .85rem; font-weight: 400; color: var(--slate-500); line-height: 1.55; }
.form-note { margin-top: 16px; font-size: .8rem; color: var(--slate-400); line-height: 1.55; }
.form-status {
  margin-top: 16px; padding: 14px 16px; border-radius: var(--r-sm); font-size: .9rem;
  background: var(--forest-50); border: 1px solid var(--forest-100); color: var(--forest-800); display: none;
}
.form-status.is-visible { display: block; }

/* contact blocks */
.contact-block { display: grid; gap: 6px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-block:last-child { border-bottom: none; }
.contact-block small { font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; color: var(--slate-400); font-weight: 650; }
.contact-block b, .contact-block a { font-size: 1rem; color: var(--ink); font-weight: 550; }
.contact-block address { font-style: normal; color: var(--slate-500); font-size: .96rem; line-height: 1.6; }

/* ---------- 19. CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(760px 420px at 20% 10%, rgba(52,135,90,.3), transparent 62%),
    radial-gradient(600px 400px at 88% 88%, rgba(184,120,60,.18), transparent 62%),
    var(--forest-950);
  color: rgba(255,255,255,.78);
  padding-block: clamp(64px, 8vw, 108px);
}
.cta-band h2 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,.74); }
.cta-band .btn-row { margin-top: 34px; }

/* ---------- 20. Footer ---------- */
.footer { background: var(--forest-950); color: rgba(255,255,255,.6); padding-block: clamp(52px, 6vw, 78px) 0; font-size: .92rem; }
.footer a { color: rgba(255,255,255,.66); }
.footer a:hover { color: #fff; }
.footer__top { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: clamp(24px, 3vw, 40px); }
@media (max-width: 1000px) { .footer__top { grid-template-columns: 1fr 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 620px) { .footer__top { grid-template-columns: 1fr 1fr; } }

.footer__brand .brand-name { color: #fff; }
.footer__brand .brand-name span { color: var(--copper-l); }
.footer__brand .brand-tag { color: rgba(255,255,255,.4); }
.footer__brand p { margin-top: 18px; max-width: 34ch; font-size: .9rem; line-height: 1.6; color: rgba(255,255,255,.55); }
.footer__brand .brand img { filter: brightness(0) invert(1) opacity(.92); }

.footer h4 { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 16px; font-weight: 650; }
.footer ul { display: grid; gap: 10px; }
.footer li a { font-size: .9rem; }

.socials { display: flex; gap: 10px; margin-top: 24px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.05);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.socials a:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.4); transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; fill: currentColor; color: rgba(255,255,255,.86); }

.footer__legal {
  margin-top: clamp(40px, 5vw, 60px); border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 26px 34px; display: flex; flex-wrap: wrap; gap: 14px 26px; justify-content: space-between; align-items: center;
  font-size: .82rem; color: rgba(255,255,255,.45);
}
.footer__legal ul { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__disclaimer {
  margin-top: 26px; padding: 18px 20px; border-radius: var(--r-md);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  font-size: .8rem; line-height: 1.6; color: rgba(255,255,255,.52);
}

/* ---------- 21. Misc components ---------- */
.status-card {
  border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--paper);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.status-card__head {
  padding: 20px 24px; background: var(--forest-900); color: #fff;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.status-card__head small { display: block; font-size: .7rem; letter-spacing: .11em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.status-card__head b { font-size: 1.06rem; font-weight: 600; }
.status-card__body { padding: 6px 24px 18px; }
.status-card__row {
  display: flex; justify-content: space-between; gap: 16px; padding: 13px 0;
  border-bottom: 1px solid var(--line-2); font-size: .92rem; color: var(--slate-500);
}
.status-card__row:last-child { border-bottom: none; }
.status-card__row b { color: var(--ink); font-weight: 600; }

.quote {
  border-left: 3px solid var(--forest-400); padding: 6px 0 6px 24px;
  font-size: clamp(1.06rem, 1.6vw, 1.24rem); line-height: 1.55; color: var(--ink); font-weight: 500;
}
.section--dark .quote { color: #fff; border-color: var(--forest-400); }

.note-box {
  border-radius: var(--r-md); border: 1px solid var(--line); background: var(--off-white);
  padding: 20px 22px; font-size: .9rem; line-height: 1.62; color: var(--slate-500);
}
.note-box b { color: var(--ink); }

.resource-card {
  display: flex; flex-direction: column; gap: 12px; height: 100%;
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; background: var(--paper);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.resource-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--forest-300); }
.resource-card small { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--copper); }
.resource-card p { font-size: .93rem; color: var(--slate-500); }
.resource-card .link-arrow { margin-top: auto; }

.prose { max-width: 74ch; }
.prose h2 { margin-top: 48px; margin-bottom: 14px; }
.prose h3 { margin-top: 32px; margin-bottom: 10px; }
.prose p { margin-bottom: 16px; color: var(--slate-700); }
.prose ul { margin-bottom: 18px; display: grid; gap: 8px; }
.prose ul li { position: relative; padding-left: 20px; color: var(--slate-700); font-size: .97rem; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 5px; height: 5px; border-radius: 50%; background: var(--forest-400); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

.logo-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 34px;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-400); font-weight: 600;
}
.logo-strip li { display: flex; align-items: center; gap: 10px; }
.logo-strip li::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--forest-300); }

/* ---------- 21b. Images, figures, screenshots ---------- */
.figure { margin: 0; }
.figure img {
  width: 100%; border-radius: var(--r-lg); display: block;
  aspect-ratio: 16 / 9; object-fit: cover; background: var(--off-white-2);
  box-shadow: var(--shadow-md);
}
.figure figcaption {
  margin-top: 12px; font-size: .84rem; line-height: 1.55; color: var(--slate-400);
  border-left: 2px solid var(--forest-300); padding-left: 12px;
}
.section--dark .figure figcaption { color: rgba(255,255,255,.6); border-color: rgba(82,166,119,.5); }
.figure--free img { aspect-ratio: auto; }
.figure--portrait img { aspect-ratio: 4 / 5; }
.figure--square img { aspect-ratio: 1 / 1; }

.card__media {
  margin: -28px -28px 20px; border-radius: var(--r-lg) var(--r-lg) 0 0; overflow: hidden;
}
.card__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.persona .card__media { margin: -30px -30px 18px; }

.media-band {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: clamp(320px, 42vw, 520px);
  display: flex; align-items: flex-end;
  color: #fff;
}
.media-band img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
}
.media-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(7,26,16,.90) 0%, rgba(7,26,16,.55) 42%, rgba(7,26,16,.18) 100%);
}
.media-band__inner { padding-block: clamp(36px, 5vw, 64px); width: 100%; }
.media-band h2, .media-band h3 { color: #fff; max-width: 22ch; }
.media-band p { color: rgba(255,255,255,.82); max-width: 60ch; margin-top: 16px; }
.media-band .eyebrow { color: var(--forest-300); }

/* screenshot frame */
.shot { margin: 0; }
.shot__frame {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  background: var(--paper); box-shadow: var(--shadow-lg);
}
.section--dark .shot__frame { border-color: rgba(255,255,255,.14); box-shadow: var(--shadow-xl); }
.shot__frame img { width: 100%; display: block; }
.shot figcaption { margin-top: 14px; font-size: .86rem; color: var(--slate-500); line-height: 1.6; }
.section--dark .shot figcaption { color: rgba(255,255,255,.66); }
.shot__tag {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--copper);
}
.shot__tag::before { content: ""; width: 16px; height: 1.5px; background: currentColor; }

.shot-list { display: grid; gap: clamp(40px, 5vw, 72px); }
.shot-row { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, .95fr); gap: clamp(24px, 3vw, 48px); align-items: center; }
.shot-row--flip .shot { order: 2; }
@media (max-width: 900px) {
  .shot-row { grid-template-columns: 1fr; }
  .shot-row--flip .shot { order: 0; }
}
.shot-row h3 { margin-bottom: 12px; }
.shot-row p { color: var(--slate-500); font-size: .96rem; }

/* two-image comparison */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.duo figure { position: relative; margin: 0; }
.duo img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.duo figcaption {
  position: absolute; inset: auto 0 0 0; padding: 22px 24px;
  background: linear-gradient(to top, rgba(7,26,16,.92), rgba(7,26,16,0));
  color: #fff; font-size: clamp(.95rem, 1.5vw, 1.12rem); font-weight: 600; letter-spacing: -.01em; line-height: 1.3;
}
.duo figcaption small { display: block; font-weight: 400; font-size: .82rem; color: rgba(255,255,255,.72); margin-top: 6px; letter-spacing: 0; }
@media (max-width: 620px) { .duo { grid-template-columns: 1fr; } }

/* image inside a split column */
.split .figure img { aspect-ratio: 4 / 3; }
.stack { display: grid; gap: 18px; }

/* ---------- 22. Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.22,.8,.3,1), transform .7s cubic-bezier(.22,.8,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .07s; }
.reveal[data-delay="2"] { transition-delay: .14s; }
.reveal[data-delay="3"] { transition-delay: .21s; }
.reveal[data-delay="4"] { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- 23. Utilities ---------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 10px; } .mt-2 { margin-top: 18px; }
.mt-3 { margin-top: 26px; } .mt-4 { margin-top: 38px; } .mt-5 { margin-top: 56px; }
.mb-2 { margin-bottom: 18px; } .mb-3 { margin-bottom: 26px; } .mb-4 { margin-bottom: 38px; }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
@media print {
  .nav, .footer, .cta-band { display: none; }
  body { font-size: 12pt; color: #000; }
}
