/* VPApps — site stylesheet
   Bands: phone <=767, tablet 768-1279, desktop >=1280
   Tokens and values from DESIGN-DECISIONS_v2026-09-22A and RESPONSIVE-SPEC_v2026-09-22A */

:root {
  /* colour */
  --deep-teal:   #103742;
  --mid-teal:    #2e6474;
  --nav-ink:     #2e4a52;
  --green:       #6e9233;   /* rules and markers only, never text */
  --deep-green:  #567325;   /* the text-safe green */
  --paper:       #f6f4ef;
  --ink:         #14191b;
  --muted-ink:   #4a5558;
  --mint:        #7fd9be;
  --footer:      #0c2c35;
  --brick:       #a2472f;
  --field:       #8c8578;
  --placeholder: #6b7275;
  --legal:       #8fa5aa;
  --hair:        #e6e2d9;
  --hair-paper:  #ddd7cb;
  --card-edge:   #ddd8ce;

  /* type */
  --sans: Archivo, system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Source Serif 4", Georgia, serif;

  /* band-dependent — phone first */
  --gutter: 20px;
  --h1: 30px;
  --h2: 24px;
  --product: 19px;
  --card-h: 19px;
  --body: 17px;
  --feature: 16px;
  --caption: 15px;
  --eyebrow: 12px;
  --head-h: 88px;
  --mark: 44px;
  --wordmark: 26px;
  --lock-gap: 10px;
  --sec-y: 36px;
  --card-pad: 20px;
}

@media (min-width: 768px) {
  :root {
    --gutter: 48px; --h1: 40px; --h2: 28px; --product: 24px; --card-h: 21px;
    --body: 19px; --feature: 17px; --caption: 16px; --eyebrow: 13px;
    --head-h: 120px; --mark: 72px; --wordmark: 34px; --lock-gap: 16px;
    --sec-y: 52px; --card-pad: 32px;
  }
}

@media (min-width: 1280px) {
  :root {
    --gutter: 120px; --h1: 52px; --h2: 36px; --product: 30px; --card-h: 24px;
    --body: 22px; --feature: 19px; --caption: 17px; --eyebrow: 13px;
    --head-h: 168px; --mark: 116px; --wordmark: 48px; --lock-gap: 20px;
    --sec-y: 64px; --card-pad: 32px;
  }
}

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

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

body {
  margin: 0;
  font-family: var(--serif);
  font-size: var(--body);
  line-height: 1.55;
  color: var(--ink);
  background: #fff;
}

.wrap { max-width: 1440px; margin: 0 auto; }
/* the landing page fills the viewport so its cards sit at the foot */
body.is-landing .wrap { display: flex; flex-direction: column; min-height: 100vh; }
body.is-landing .wrap { min-height: 100svh; }

a { color: var(--mid-teal); }
a:hover { color: var(--deep-teal); }

:focus-visible { outline: 2px solid var(--deep-teal); outline-offset: 2px; }

img { max-width: 100%; height: auto; display: block; }

/* ---------- header ---------- */
.site-head {
  height: var(--head-h);
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: space-between;
}
.lockup { display: flex; align-items: center; gap: var(--lock-gap); text-decoration: none; color: var(--ink); }
.lockup img { width: var(--mark); height: var(--mark); }
.lockup span {
  font-family: var(--sans); font-weight: 700; font-size: var(--wordmark);
  letter-spacing: -0.035em;
}
.site-nav { display: none; align-items: center; gap: 52px; padding-top: 5px; }
.site-nav a, .site-nav span {
  font-family: var(--sans); font-weight: 500; font-size: 20px;
  color: var(--nav-ink); text-decoration: none; padding: 14px 0;
}
.site-nav [aria-current="page"] { color: var(--ink); border-bottom: 2px solid var(--deep-teal); }
.menu-btn {
  width: 44px; height: 44px; padding: 0; background: none; border: 1px solid var(--field);
  cursor: pointer; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 5px;
}
.menu-btn span { display: block; width: 20px; height: 2px; background: var(--ink); }
@media (min-width: 1280px) {
  .site-nav { display: flex; }
  .menu-btn { display: none; }
}

/* ---------- open-menu overlay, below 1280 ----------
   Design record: design\Menu-Overlay-Mobile.dc.html, DESIGN-DECISIONS §5.10.2.
   The 4px bars are branch markers (mint = Path 1, green = Path 2), fixed on every
   page. The current page is a non-link span with a tinted row. */

[hidden] { display: none !important; }

body.menu-open { overflow: hidden; }

.menu {
  position: fixed; inset: 0; z-index: 60;
  background: var(--deep-teal); color: #fff;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.menu-head {
  height: var(--head-h); padding: 0 var(--gutter); flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  display: flex; align-items: center; justify-content: space-between;
}
.menu-head .lockup { color: #fff; }
.menu-head .lockup img { width: var(--mark); height: var(--mark); }
.menu-close {
  width: 44px; height: 44px; padding: 0; background: none; flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.4); cursor: pointer; position: relative;
}
.menu-close span {
  position: absolute; top: 50%; left: 50%;
  width: 20px; height: 2px; margin: -1px 0 0 -10px; background: #fff;
}
.menu-close span:first-child { transform: rotate(45deg); }
.menu-close span:last-child  { transform: rotate(-45deg); }
.menu :focus-visible { outline: 2px solid var(--mint); outline-offset: 2px; }

.menu-nav { padding: 8px var(--gutter) 0; display: flex; flex-direction: column; }
.menu-nav a, .menu-nav span[aria-current] {
  min-height: 60px; padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--sans); text-decoration: none;
}
.menu-nav .m1 { font-weight: 600; font-size: 24px; letter-spacing: -0.02em; color: #fff; }
.menu-nav .m2 { font-weight: 500; font-size: 21px; letter-spacing: -0.01em; color: #d3dfe2; padding-left: 16px; }
.menu-nav a:hover { color: var(--mint); }
.menu-nav .bar { width: 4px; height: 22px; flex-shrink: 0; }
.menu-nav .m1--ai .bar     { background: var(--mint); }
.menu-nav .m1--legacy .bar { background: var(--green); }
.menu-nav [aria-current="page"] {
  background: rgba(255, 255, 255, 0.10); color: #fff; font-weight: 600;
  padding-left: 16px; padding-right: 16px;
}
.menu-nav .m1[aria-current="page"] { padding-left: 0; }

/* margin-top only distributes slack; the border and the 20px top padding are what
   guarantee the separation. DESIGN-DECISIONS §4.12 */
.menu-foot {
  margin-top: auto; padding: 20px var(--gutter) 28px; flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex; flex-direction: column; gap: 6px;
}
.menu-label {
  font-family: var(--sans); font-weight: 500; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--mint);
}
.menu-label--legacy { color: #a3c46a; }
.menu-route a {
  color: #fff; display: inline-block; padding: 11px 0; font-size: 17px;
  text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}
.menu-route a:hover { color: var(--mint); text-decoration-color: var(--mint); }
.menu-route .sep { color: rgba(255, 255, 255, 0.55); }

/* the panel was drawn at 390 only; at 834 the phone type sits small in an 834 field */
@media (min-width: 768px) {
  .menu-nav .m1 { font-size: 28px; }
  .menu-nav .m2 { font-size: 23px; }
  .menu-route a { font-size: 19px; }
  .menu-label { font-size: 12px; }
}

/* belt and braces: if the resize handler never runs, the panel cannot sit over a
   desktop layout */
@media (min-width: 1280px) { .menu { display: none !important; } }

/* ---------- sections ---------- */
.sec { padding: var(--sec-y) var(--gutter); }
.sec--paper { background: var(--paper); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.sec--teal { background: var(--deep-teal); color: #fff; }

.eyebrow {
  font-family: var(--sans); font-weight: 500; font-size: var(--eyebrow);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid-teal);
}
.eyebrow--green { color: var(--deep-green); }

h1 { margin: 0; font-family: var(--sans); font-weight: 600; font-size: var(--h1);
     line-height: 1.14; letter-spacing: -0.03em; }
h2 { margin: 0; font-family: var(--sans); font-weight: 600; font-size: var(--h2);
     line-height: 1.2; letter-spacing: -0.02em; }
p { margin: 0; max-width: 62ch; }

.stack { display: flex; flex-direction: column; gap: 22px; }

/* ---------- path cards ---------- */
/* margin-top:auto pushes the cards to the foot of a tall viewport; padding-top
   guarantees the gap exists when there is no leftover space to distribute.
   Never rely on auto alone — it silently collapses to zero. */
.forks {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin-top: auto; padding-top: 30px;
}
@media (min-width: 768px) { .forks { grid-template-columns: 1fr 1fr; gap: 28px; padding-top: 44px; } }

.fork {
  display: flex; flex-direction: column; gap: 14px;
  padding: var(--card-pad); background: var(--paper);
  border: 1px solid var(--card-edge); border-top: 4px solid var(--deep-teal);
  text-decoration: none; color: var(--ink);
}
.fork--legacy { border-top-color: var(--green); }
.fork h2 { font-size: var(--card-h); letter-spacing: -0.02em; }
.fork p { font-size: var(--feature); color: var(--muted-ink); }
.fork .go { margin-top: auto; font-family: var(--sans); font-weight: 500;
            font-size: 17px; color: var(--mid-teal); }
@media (min-width: 768px) { .fork { min-height: 244px; } }

/* ---------- landing hero ---------- */
.rule-top { height: 6px; background: var(--deep-teal); }
.hero-brand { display: flex; align-items: center; gap: 28px; }
.hero-brand img { width: 110px; height: 110px; }
.hero-brand div { font-family: var(--sans); font-weight: 700; font-size: 44px; letter-spacing: -0.035em; }
@media (min-width: 768px) {
  .hero-brand img { width: 160px; height: 160px; }
  .hero-brand div { font-size: 64px; letter-spacing: -0.04em; }
}
@media (min-width: 1280px) {
  .hero-brand img { width: 200px; height: 200px; }
  .hero-brand div { font-size: 88px; }
}
.landing { display: flex; flex-direction: column; padding: var(--sec-y) var(--gutter); }
@media (min-width: 768px) { .landing { flex-grow: 1; } }
.landing h1 { margin-top: 32px; max-width: 1080px; line-height: 1.08; }
@media (min-width: 1280px) { .landing h1 { margin-top: 64px; font-size: 58px; } }

/* ---------- footer ---------- */
.site-foot {
  padding: 28px var(--gutter); background: var(--footer); color: #fff;
  display: flex; flex-direction: column; gap: 20px;
}
@media (min-width: 768px) {
  .site-foot { flex-direction: row; align-items: center; justify-content: space-between; padding: 36px var(--gutter); }
}
.site-foot .lockup span { color: #fff; font-size: 20px; }
.site-foot .lockup img { width: 40px; height: 40px; }
.site-foot .lockup { min-height: 44px; }
@media (min-width: 768px) { .site-foot .lockup img { width: 52px; height: 52px; } .site-foot .lockup span { font-size: 24px; } }
.foot-links { display: flex; flex-direction: column; }
@media (min-width: 768px) { .foot-links { flex-direction: row; align-items: center; gap: 28px; } }
.foot-links a { min-height: 44px; display: flex; align-items: center; }
.foot-links a, .foot-links span {
  font-family: var(--sans); font-weight: 500; font-size: 16px;
  color: #b9cace; text-decoration: none; padding: 10px 0;
}
@media (min-width: 768px) { .foot-links a { font-size: 15px; padding: 12px 0; } }

.legal {
  padding: 14px var(--gutter) 18px; background: var(--footer);
  border-top: 1px solid #16404b; display: flex; flex-direction: column; gap: 6px;
}
.legal p { max-width: 1100px; margin: 0; }
.legal .copy { font-size: 13px; line-height: 1.45; color: #b9cace; }
.legal .tm { font-size: 12px; line-height: 1.5; color: var(--legal); }
@media (min-width: 768px) { .legal .copy { font-size: 14px; } .legal .tm { font-size: 13px; } }
.legal .tm b {
  font-family: var(--sans); font-weight: 500; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: #b9cace;
  margin-right: 8px;
}
@media (min-width: 768px) { .legal .tm b { font-size: 11px; } }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- prose pages ---------- */
.page-head { padding: var(--sec-y) var(--gutter); display: flex; flex-direction: column; gap: 22px; }
@media (min-width: 1280px) { .page-head { padding: 72px var(--gutter) 56px; } }
.page-head h1 { max-width: 1200px; }

.prose { display: flex; flex-direction: column; gap: 22px; }
.prose p + p { margin-top: 0; }
.prose p { max-width: 62ch; }

.sec > h2 + .prose, .sec > h2 + .grid { margin-top: 24px; }

.product-name { font-family: var(--sans); font-weight: 600; letter-spacing: -0.01em; color: var(--deep-teal); }

/* ---------- team ---------- */
.grid { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: start; }
@media (min-width: 768px) { .grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (min-width: 1280px) { .grid--3 { grid-template-columns: repeat(3, 1fr); gap: 40px; } }

.person { display: flex; flex-direction: column; gap: 10px; border-top: 2px solid var(--deep-teal); padding-top: 20px; }
.person h3 { margin: 0; font-family: var(--sans); font-weight: 600; font-size: var(--card-h); letter-spacing: -0.02em; }
.person .role { font-family: var(--sans); font-weight: 500; font-size: var(--caption); letter-spacing: 0.01em; color: var(--mid-teal); }
.person p { font-size: var(--feature); }
.person .cred { font-size: var(--caption); color: var(--muted-ink); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 58px; padding: 16px 40px;
  background: var(--deep-teal); border: 1px solid var(--deep-teal); color: #fff;
  font-family: var(--sans); font-weight: 500; font-size: 19px; letter-spacing: -0.01em;
  text-decoration: none; cursor: pointer;
}
.btn:hover { background: var(--footer); border-color: var(--footer); color: #fff; }
.btn[disabled] { background: #e6e2d9; border-color: #ccc5b8; color: var(--muted-ink); cursor: default; }
.btn[aria-busy="true"] { background: var(--nav-ink); border-color: var(--nav-ink); color: #fff; cursor: default; }

/* ---------- forms ---------- */
.field { display: flex; flex-direction: column; gap: 9px; }
.field label { font-family: var(--sans); font-weight: 500; font-size: var(--caption); letter-spacing: 0.01em; color: var(--muted-ink); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 54px; padding: 14px 16px;
  background: #fff; border: 1px solid var(--field);
  font-family: var(--serif); font-size: 18px; color: var(--ink);
}
.field textarea { min-height: 150px; line-height: 1.5; resize: vertical; }
.field input::placeholder { color: var(--placeholder); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--deep-teal); outline-offset: 1px; border-color: var(--deep-teal);
}
.field [aria-invalid="true"] { border: 2px solid var(--brick); }
.field .err { font-size: var(--feature); color: var(--brick); }

.form-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-row { display: flex; flex-direction: column; gap: 26px; }

.contact-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1280px) { .contact-layout { grid-template-columns: 2fr 1fr; gap: 64px; } }

.contact-block { display: flex; flex-direction: column; gap: 10px; border-top: 2px solid var(--deep-teal); padding-top: 18px; }
.contact-block--legacy { border-top-color: var(--green); }
.contact-block .label { font-family: var(--sans); font-weight: 500; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid-teal); }
.contact-block a { font-size: var(--body); color: var(--ink); text-decoration: none; }
.contact-block a:hover { text-decoration: underline; }

.signup { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 768px) { .signup { flex-direction: row; align-items: stretch; } .signup input { width: 380px; } }
.signup input { min-height: 58px; padding: 16px; background: #fff; border: 1px solid var(--field); font-family: var(--serif); font-size: 18px; }
.signup input:focus { outline: 2px solid var(--deep-teal); outline-offset: 1px; border-color: var(--deep-teal); }

/* ---------- form response states ----------
   design\Form-States-Spec.dc.html. Brick #a2472f is 6.04:1 on white and 5.49:1
   on paper, so the error text clears AA as body copy. */
.form-wrap > .err { margin: 10px 0 0; font-size: var(--feature); color: var(--brick); }
.field .err { margin: 0; }
.signup input[aria-invalid="true"] { border: 2px solid var(--brick); }
/* a wrap that is a direct child of a section follows the prose measure; inside
   .contact-layout it is a grid item and fills its column */
.sec > .form-wrap { max-width: 980px; }
.form-alert {
  background: #fff; border-left: 4px solid var(--brick);
  padding: 14px 18px; margin-bottom: 26px;
  font-size: var(--feature); line-height: 1.5;
}
.form-alert b { color: var(--brick); }
.form-done {
  background: #fff; border-top: 3px solid var(--deep-teal);
  padding: 28px var(--card-pad);
}
.form-done .done-h {
  margin: 0 0 8px; font-family: var(--sans); font-weight: 600;
  font-size: var(--card-h); letter-spacing: -0.01em; color: var(--deep-teal);
}
.form-done p { margin: 0; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- cta band ---------- */
.cta { background: var(--deep-teal); color: #fff; padding: var(--sec-y) var(--gutter);
       display: flex; flex-direction: column; gap: 28px; }
@media (min-width: 1280px) { .cta { flex-direction: row; align-items: center; justify-content: space-between; gap: 64px; padding: 72px var(--gutter); } }
.cta p { font-family: var(--sans); font-weight: 600; font-size: var(--h2); line-height: 1.15;
         letter-spacing: -0.025em; color: #fff; max-width: 820px; }
@media (min-width: 1280px) { .cta p { font-size: 40px; } }
.cta .btn { background: #fff; border-color: #fff; color: var(--deep-teal); flex-shrink: 0; }
.cta .btn:hover { background: var(--paper); border-color: var(--paper); color: var(--deep-teal); }

/* ---------- AI adoption: hero lines ---------- */
.lines span { display: block; }

/* ---------- section variants ---------- */
/* a section whose children carry their own gutter, so a figure can bleed */
.sec--bleed { padding-left: 0; padding-right: 0; }
.gut { padding-left: var(--gutter); padding-right: var(--gutter); }

/* ---------- how we work ---------- */
.provide { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
@media (min-width: 1280px) { .provide { grid-template-columns: 1fr 1fr; gap: 32px; } }

.panel {
  background: #fff; border: 1px solid var(--card-edge); border-top: 4px solid var(--deep-teal);
  padding: var(--card-pad); display: flex; flex-direction: column; gap: 28px;
}
.panel--you { border-top-color: var(--green); }
.panel h2 { font-size: var(--h2); }
.panel .block { display: flex; flex-direction: column; gap: 16px; }
.panel .block > .lede { margin-bottom: 2px; }

.sub { font-family: var(--sans); font-weight: 600; font-size: var(--card-h);
       letter-spacing: -0.015em; }
.lede { font-size: var(--feature); color: var(--muted-ink); max-width: 62ch; }

.item { display: flex; flex-direction: column; gap: 8px;
        border-top: 2px solid var(--deep-teal); padding-top: 18px; }
.item--green { border-top-color: var(--green); }
.item .name { font-family: var(--sans); font-weight: 600; font-size: var(--card-h);
              letter-spacing: -0.01em; color: var(--deep-teal); }
.item p { font-size: var(--feature); }

/* ---------- step sequence ---------- */
.steps { display: flex; flex-direction: column; gap: 16px; }
.step { display: grid; grid-template-columns: 46px 1fr; column-gap: 14px; row-gap: 4px;
        border-top: 1px solid var(--hair); padding-top: 16px; }
.step .n { grid-row: 1 / span 2; font-family: var(--sans); font-weight: 700; font-size: 30px;
           line-height: 1; color: var(--mid-teal); }
.step h3 { margin: 0; font-family: var(--sans); font-weight: 600; font-size: var(--card-h);
           letter-spacing: -0.015em; }
.step p { font-size: var(--feature); color: var(--muted-ink); }
.step .bar { display: none; }
@media (min-width: 1280px) {
  .steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 32px; }
  .step { display: flex; flex-direction: column; gap: 12px; border-top: 0; padding-top: 0; }
  .step .n { font-size: 40px; }
  .step .bar { display: block; height: 3px; background: var(--green); }
}
.note { font-size: var(--feature); color: var(--muted-ink); max-width: 72ch; }

/* ---------- diagram ---------- */
.dia-tall { max-width: 460px; margin: 0 auto; }
.dia-wide { display: none; }
@media (min-width: 1280px) {
  .dia-wide { display: block; }
  .dia-tall { display: none; }
}

/* ---------- figures with enlarge ---------- */
.fig { margin: 0; display: flex; flex-direction: column; gap: 20px; }
.fig-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.fig-head .brandname { font-family: var(--sans); font-weight: 700; font-size: var(--product);
                       letter-spacing: -0.02em; color: var(--mid-teal); }
.fig-head .fict { font-size: var(--caption); color: var(--muted-ink); }
.fig-body { background: #0b1020; }
.fig.is-zoomed .fig-body { max-height: 74vh; overflow: auto; }
.fig.is-zoomed .fig-body img { width: 2400px; max-width: none; }
.zoombar { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.zoombar .hint { font-size: var(--caption); color: var(--muted-ink); }
.btn-ghost {
  min-height: 48px; padding: 12px 24px; background: #fff; border: 1px solid var(--mid-teal);
  color: var(--mid-teal); font-family: var(--sans); font-weight: 500; font-size: 16px; cursor: pointer;
}
.btn-ghost:hover { background: var(--deep-teal); border-color: var(--deep-teal); color: #fff; }

/* ---------- where AI fits ---------- */
.chips { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 768px) { .chips { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (min-width: 1280px) { .chips { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; } }
.chip {
  display: flex; gap: 14px; align-items: baseline;
  border-top: 1px solid var(--hair-paper); padding-top: 18px;
  font-family: var(--sans); font-weight: 500; font-size: var(--product); line-height: 1.35;
}
.chip::before { content: ""; width: 9px; height: 9px; background: var(--green); flex-shrink: 0; }

/* ---------- legacy products ---------- */
[id] { scroll-margin-top: 24px; }

.pathbar { display: flex; flex-wrap: wrap; gap: 4px 28px; }
.pathbar a {
  min-height: 44px; display: inline-flex; align-items: center;
  font-family: var(--sans); font-weight: 600; font-size: var(--feature);
  color: var(--deep-teal); text-decoration: none;
  border-bottom: 2px solid var(--green);
}
.pathbar a:hover { color: var(--footer); border-bottom-color: var(--deep-teal); }

.prod-head { display: flex; flex-direction: column; gap: 10px; }
.prod-head .pname {
  font-family: var(--sans); font-weight: 700; font-size: var(--product);
  letter-spacing: -0.02em; color: var(--deep-green);
}
.prod-head .fict { font-size: var(--caption); color: var(--muted-ink); }

.features { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 768px) { .features { grid-template-columns: 1fr 1fr; gap: 16px 32px; } }
.features li { display: flex; gap: 12px; font-size: var(--feature); }
.features li::before {
  content: ""; width: 8px; height: 8px; margin-top: 0.6em;
  background: var(--green); flex-shrink: 0;
}

.shots { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
@media (min-width: 1280px) { .shots--2 { grid-template-columns: 1fr 1fr; gap: 36px; } }
.shot { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.shot figcaption { font-size: var(--feature); color: var(--muted-ink); max-width: 72ch; }
/* legacy captures are low-resolution; each frame is capped at the native pixel
   width of its image so nothing is upscaled into blur */
.shot .frame { border: 1px solid var(--card-edge); background: #fff; padding: 8px; }
.shot img { width: 100%; }

.quote { display: flex; flex-direction: column; gap: 12px; border-top: 2px solid var(--deep-teal); padding-top: 20px; }
.quote blockquote { margin: 0; font-size: var(--body); line-height: 1.5; }
.quote .who { font-family: var(--sans); font-weight: 600; font-size: var(--caption); }
.quote .org { font-size: var(--caption); color: var(--muted-ink); }

.article {
  display: flex; flex-direction: column; gap: 8px; background: #fff;
  border: 1px solid var(--card-edge); border-left: 4px solid var(--deep-teal);
  padding: var(--card-pad); text-decoration: none; color: var(--ink);
}
.article:hover { border-left-color: var(--green); color: var(--ink); }
.article h3 { margin: 0; font-family: var(--sans); font-weight: 600; font-size: var(--card-h); letter-spacing: -0.015em; }
.article .meta { font-size: var(--caption); color: var(--muted-ink); }
.article .dl { font-family: var(--sans); font-weight: 500; font-size: var(--caption); color: var(--mid-teal); margin-top: 6px; }
