/* EarthCape — earthcape.app
   Version 2. Previous version archived in Archives/Version 1/. */

:root {
  --paper:     #f4f2ed;
  --paper-2:   #ebe8e0;
  --surface:   #fbfaf7;
  --ink:       #1c2118;
  --body:      #4a5348;
  --muted:     #7b8474;
  --line:      #dcd8cd;
  --line-soft: #e6e2d8;

  --moss:      #33422c;
  --moss-2:    #46583c;
  --moss-line: #56684a;
  --sand:      #e3d9c6;
  --brand:     #2e7d32;

  --maxw: 1140px;
  --radius: 6px;

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---- gate ---- */

.gate {
  display: none;
  min-height: 100vh;
  place-items: center;
  text-align: center;
  padding: 40px;
}
.gate.show { display: grid; }
.gate-inner { max-width: 420px; }
.gate h1 { font-size: 27px; margin-bottom: 12px; }
.gate p { color: var(--muted); font-size: 15px; }
body.gated > *:not(.gate) { display: none !important; }

/* ---- kicker ---- */

.kicker {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}

/* ---- header ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 242, 237, 0.92);
  backdrop-filter: saturate(1.6) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 66px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { width: 132px; height: auto; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.site-nav > a:not(.btn-solid):not(.btn-line) {
  text-decoration: none;
  font-size: 14.5px;
  color: var(--body);
}
.site-nav > a:not(.btn-solid):not(.btn-line):hover { color: var(--ink); }
.site-nav .btn-solid { margin-left: 4px; }

.btn-solid, .btn-line {
  display: inline-block;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  line-height: 1.2;
}
.btn-solid { background: var(--moss); color: #fff; border-color: var(--moss); }
.btn-solid:hover { background: var(--moss-2); }
.btn-line { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-line:hover { border-color: var(--muted); }

.on-dark .btn-solid { background: #fff; color: var(--moss); border-color: #fff; }
.on-dark .btn-line { border-color: rgba(255,255,255,.34); color: #fff; }

/* ---- hero ---- */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/contours.svg");
  background-size: 1500px auto;
  background-position: 64% 45%;
  background-repeat: no-repeat;
  opacity: 0.55;
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
}
.hero h1 {
  font-size: 51px;
  line-height: 1.16;
  margin: 0 0 22px;
  max-width: 15ch;
}
.hero .lede {
  font-size: 18px;
  line-height: 1.66;
  color: var(--body);
  margin: 0 0 30px;
  max-width: 46ch;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note {
  margin: 22px 0 0;
  font-size: 13.5px;
  color: var(--muted);
}

/* ---- phone ---- */

/* Machined aluminium body: diagonal specular banding, bright top-left edge,
   dark occlusion bottom-right, recessed glass rim. */
.phone {
  position: relative;
  border-radius: 26px;
  padding: 8px;
  background:
    linear-gradient(148deg,
      #e6e8e3 0%,
      #a8afa4 9%,
      #6f776c 22%,
      #9aa295 33%,
      #545c50 46%,
      #848c80 60%,
      #c3c9bf 72%,
      #6b7367 86%,
      #969e91 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -1px 0 rgba(0,0,0,.35),
    inset 1px 0 0 rgba(255,255,255,.22),
    inset -1px 0 0 rgba(0,0,0,.28),
    0 1px 1px rgba(20,24,17,.22),
    0 14px 34px rgba(20,24,17,.20),
    0 40px 80px rgba(20,24,17,.10);
}
/* recessed glass rim */
.phone::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 19px;
  box-shadow:
    inset 0 0 0 1.5px #0f1310,
    inset 0 2px 5px rgba(0,0,0,.55);
  pointer-events: none;
  z-index: 2;
}
/* side buttons: power over volume rocker */
.phone::before {
  content: "";
  position: absolute;
  right: -2px;
  top: 19%;
  width: 2px;
  height: 7%;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(180deg, #b7bdb2, #5b6357);
  box-shadow: 0 calc(11% + 20px) 0 0 #7d8478, 0 calc(11% + 46px) 0 0 #7d8478;
}
.phone img { border-radius: 19px; position: relative; z-index: 1; }
.hero-phone { max-width: 306px; margin-left: auto; }

/* landscape tablet body: thicker bezel, buttons on the top edge */
.phone--tablet { border-radius: 22px; padding: 13px; }
.phone--tablet::after { inset: 13px; border-radius: 11px; }
.phone--tablet::before {
  right: auto;
  left: 12%;
  top: -2px;
  width: 46px;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(90deg, #b7bdb2, #5b6357);
  box-shadow: 66px 0 0 0 #7d8478;
}
.phone--tablet img { border-radius: 11px; }

.phone-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.phone-pair .phone:nth-child(2) { margin-top: 34px; }

/* ---- overview grid ---- */

.overview {
  border-bottom: 1px solid var(--line-soft);
  background: var(--surface);
}
.overview .wrap { padding-top: 34px; padding-bottom: 38px; }
.overview .kicker { margin-bottom: 18px; }
.ovgrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px 18px;
}
.ovcard { position: relative; }
.ovshot {
  display: block;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper-2);
  transition: border-color .15s ease;
}
.ovshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.ovcard > a {
  display: block;
  margin-top: 10px;
  text-decoration: none;
  color: var(--muted);
}
/* The whole card is the hit area; the link keeps the accessible name. */
.ovcard > a::after { content: ""; position: absolute; inset: 0; }
.ovcard b {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 2px;
  transition: color .15s ease;
}
.ovcard span { display: block; font-size: 12.5px; line-height: 1.45; }
.ovcard:hover .ovshot { border-color: var(--brand); }
.ovcard:hover b { color: var(--brand); }
.ovcard > a:focus-visible { outline: none; }
.ovcard:focus-within .ovshot { outline: 2px solid var(--brand); outline-offset: 2px; }

/* ---- fact band ---- */

.facts {
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper-2);
}
.facts ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.facts li {
  padding: 24px 22px;
  border-left: 1px solid var(--line);
}
.facts li:first-child { border-left: 0; padding-left: 0; }
.facts b {
  display: block;
  font-family: var(--mono);
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}
.facts span { font-size: 13.5px; color: var(--muted); }

/* ---- standards band ---- */

.standards { border-bottom: 1px solid var(--line-soft); }
.standards .wrap { padding-top: 30px; padding-bottom: 30px; }
.standards .kicker { margin-bottom: 12px; }
.standards p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 14px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--body);
  line-height: 2.1;
}
.standards p span { white-space: nowrap; }
.standards p i { font-style: normal; color: var(--line); }

/* ---- section ---- */

.sec { border-bottom: 1px solid var(--line-soft); }
.sec .wrap { padding-top: 88px; padding-bottom: 88px; }
.sec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}
.sec.reverse .sec-grid > .sec-body { order: 2; }
.sec h2 {
  font-size: 34px;
  line-height: 1.22;
  margin: 0 0 16px;
  max-width: 19ch;
}
.sec .lede {
  font-size: 17px;
  margin: 0 0 26px;
  max-width: 48ch;
}

.speclist { list-style: none; margin: 0; padding: 0; }
.speclist li {
  border-top: 1px solid var(--line);
  padding: 13px 0;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  font-size: 15px;
  align-items: baseline;
}
.speclist li:last-child { border-bottom: 1px solid var(--line); }
.speclist b { font-weight: 500; color: var(--ink); }
.speclist span { color: var(--body); }

.notelist { list-style: none; margin: 0; padding: 0; font-size: 15.5px; }
.notelist li {
  padding: 7px 0 7px 20px;
  position: relative;
  color: var(--body);
}
.notelist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 1px;
  background: var(--muted);
}

/* ---- dark section ---- */

.sec.dark {
  background: var(--moss);
  border-bottom-color: var(--moss);
  color: #d5ddcf;
}
.sec.dark h2, .sec.dark h3 { color: #fff; }
.sec.dark .kicker { color: #9fb094; }
.sec.dark .lede { color: #cbd5c4; }
.sec.dark .speclist li { border-color: var(--moss-line); }
.sec.dark .speclist b { color: #fff; }
.sec.dark .speclist span { color: #c6d1be; }
.sec.dark .notelist li { color: #cbd5c4; }
.sec.dark .notelist li::before { background: #8b9e80; }
.sec.sandy { background: var(--sand); border-bottom-color: #d3c8b1; }
.sec.sandy .speclist li { border-color: #d1c6af; }

/* ---- video ---- */

.videoblock { max-width: 880px; margin: 0 auto; }
.videoblock h2 { max-width: 26ch; }
.videoblock .lede { max-width: 62ch; margin-bottom: 30px; }
.videoframe {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--moss-line);
}
.videoframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.videocredit {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: #a8b79d;
}

/* ---- spec table ---- */

.spectable .wrap { padding-top: 88px; padding-bottom: 88px; }
.spectable h2 { font-size: 30px; margin: 0 0 8px; }
.spectable > .wrap > p.lede { font-size: 16.5px; margin: 0 0 40px; max-width: 62ch; }
.spec-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 44px;
}
.spec-group h3 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 26px 0 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink);
}
.spec-group dl { margin: 0; font-size: 14.5px; }
.spec-group dt { margin-top: 14px; color: var(--ink); font-weight: 500; }
.spec-group dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

/* ---- gallery ---- */

.gallery { background: var(--paper-2); }
.gallery .wrap { padding-top: 80px; padding-bottom: 80px; }
.gallery h2 { font-size: 30px; margin: 0 0 8px; }
.gallery > .wrap > p { margin: 0 0 40px; color: var(--muted); font-size: 15.5px; }
.gshots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 22px;
}
.gshot figcaption {
  margin-top: 11px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.gshot figcaption b {
  display: block;
  color: var(--ink);
  font-weight: 500;
  font-size: 13.5px;
}
figure { margin: 0; }

/* ---- steps ---- */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 40px; }
.step { border-top: 1px solid var(--ink); padding-top: 16px; }
.step .n {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.step h3 { font-family: var(--sans); font-size: 16px; font-weight: 600; margin: 0 0 7px; }
.step p { margin: 0; font-size: 14.5px; color: var(--body); }

/* ---- faq ---- */

.faq .wrap { padding-top: 80px; padding-bottom: 80px; }
.faq h2 { font-size: 30px; margin: 0 0 30px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 34px 18px 0;
  position: relative;
  font-size: 16.5px;
  color: var(--ink);
  font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 16px;
  font-family: var(--mono);
  font-size: 17px;
  color: var(--muted);
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 0 0 20px; max-width: 76ch; font-size: 15.5px; }

/* ---- install ---- */

.install { background: var(--moss); color: #cbd5c4; }
.install .wrap {
  padding-top: 76px;
  padding-bottom: 76px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.install h2 { color: #fff; font-size: 32px; margin: 0 0 14px; }
.install p { max-width: 52ch; margin: 0 0 28px; color: #cbd5c4; }
.install .phone { max-width: 250px; }
.install .hero-actions a { font-size: 15px; padding: 12px 22px; }
.install .fineprint { margin: 26px 0 0; font-size: 13.5px; color: #9fb094; }
.install .fineprint a { color: #cbd5c4; }

/* ---- footer ---- */

.footer { background: var(--paper); }
.footer .wrap {
  padding-top: 34px;
  padding-bottom: 44px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13.5px;
  color: var(--muted);
}
.footer nav { margin-left: auto; display: flex; gap: 20px; flex-wrap: wrap; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--ink); }

/* ---- doc link ---- */

.doclink {
  display: inline-block;
  margin-top: 26px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
}
.doclink::after { content: " \2192"; color: var(--muted); }
.doclink:hover { border-bottom-color: var(--ink); }
.sec.dark .doclink { color: #fff; border-bottom-color: var(--moss-line); }
.sec.dark .doclink::after { color: #9fb094; }
.sec.dark .doclink:hover { border-bottom-color: #fff; }

/* ---- full-bleed band ---- */

.bleed { position: relative; background: var(--moss); border-bottom: 1px solid var(--moss); }
.bleed img { width: 100%; height: clamp(320px, 46vw, 620px); object-fit: cover; object-position: 50% 42%; }
.bleed-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 64px 0 26px;
  background: linear-gradient(180deg, rgba(20,24,17,0) 0%, rgba(20,24,17,.72) 74%);
}
.bleed-cap .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,.78);
}
.bleed-cap b { font-weight: 500; color: #fff; letter-spacing: 0.02em; }
.bleed-cap i { font-style: normal; color: rgba(255,255,255,.34); }

/* ---- tiles ---- */

.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.tile > .kicker { margin-bottom: 14px; }
.tile h3 { font-size: 25px; line-height: 1.26; margin: 0 0 13px; }
.tile > p { margin: 0 0 22px; font-size: 15.5px; max-width: 44ch; }
.tile .phone { max-width: 100%; }
.tile-shots { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.tile-shots figcaption { margin-top: 9px; font-size: 12.5px; color: var(--muted); line-height: 1.45; }
.sec.dark .tile-shots figcaption { color: #a8b79d; }

/* ---- tier table ---- */

.tier { width: 100%; border-collapse: collapse; font-size: 14.5px; margin-top: 34px; }
.tier caption {
  text-align: left;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 14px;
}
.tier th, .tier td { text-align: left; padding: 12px 16px 12px 0; border-top: 1px solid var(--line); vertical-align: top; }
.tier thead th {
  border-top: 0;
  border-bottom: 1px solid var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 10px;
}
.tier tbody th { font-weight: 500; color: var(--ink); width: 34%; }
.tier td { color: var(--body); }
.tier .yes { color: var(--brand); font-weight: 500; }
.tier .no { color: var(--muted); }
.tier-note { margin: 18px 0 0; font-size: 13.5px; color: var(--muted); }

/* ---- language grid ---- */

.langgrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px 16px;
  margin-top: 40px;
}
.langgrid figure { position: relative; }
.langgrid img { border-radius: 3px; border: 1px solid var(--line); }
.langgrid figcaption {
  margin-top: 9px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--muted);
}
.langgrid figcaption b { display: block; font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--ink); letter-spacing: 0; }
.langlist {
  margin: 34px 0 0;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 2.1;
  color: var(--body);
  display: flex;
  flex-wrap: wrap;
  gap: 0 14px;
}
.langlist i { font-style: normal; color: var(--line); }

/* ---- responsive ---- */

@media (max-width: 1000px) {
  .tiles { grid-template-columns: 1fr; gap: 52px; }
  .langgrid { grid-template-columns: repeat(4, 1fr); }
  .ovgrid { grid-template-columns: repeat(4, 1fr); gap: 24px 16px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 48px; padding-top: 60px; padding-bottom: 60px; }
  .hero h1 { font-size: 42px; max-width: 20ch; }
  .hero-phone { margin: 0; }
  .sec-grid { grid-template-columns: 1fr; gap: 40px; }
  .sec.reverse .sec-grid > .sec-body { order: 0; }
  .sec .wrap { padding-top: 64px; padding-bottom: 64px; }
  .spec-cols { grid-template-columns: 1fr 1fr; gap: 0 36px; }
  .gshots { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
  .facts ul { grid-template-columns: repeat(3, 1fr); }
  .facts li { border-left: 1px solid var(--line); padding-left: 22px; }
  .facts li:first-child, .facts li:nth-child(4) { border-left: 0; padding-left: 0; }
  .site-nav > a:not(.btn-solid) { display: none; }
  .install .wrap { grid-template-columns: 1fr; gap: 44px; }
  .install .phone { max-width: 250px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .hero h1 { font-size: 33px; }
  .hero .lede { font-size: 16.5px; }
  .sec h2 { font-size: 27px; }
  .speclist li { grid-template-columns: 1fr; gap: 3px; }
  .spec-cols { grid-template-columns: 1fr; }
  .gshots { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .facts ul { grid-template-columns: 1fr 1fr; }
  .facts li { padding: 18px 16px; }
  .facts li:nth-child(odd) { border-left: 0; padding-left: 0; }
  .facts li:nth-child(4) { border-left: 1px solid var(--line); padding-left: 16px; }
  .footer .wrap { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer nav { margin-left: 0; gap: 16px; }
  .langgrid { grid-template-columns: 1fr 1fr; }
  .ovgrid { grid-template-columns: 1fr 1fr; gap: 22px 14px; }
  .tier thead { display: none; }
  .tier, .tier caption, .tier tbody, .tier tr, .tier th, .tier td { display: block; width: auto; }
  .tier tr { border-top: 1px solid var(--line); padding: 12px 0; }
  .tier th, .tier td { border-top: 0; padding: 0; }
  .tier tbody th { padding-bottom: 4px; }
  .tier td.no { display: none; }
  .tier td { font-weight: 500; }
  .bleed img { height: 300px; }
}

/* ------------------------------------------------------------------ *
 * About page (/about/) components
 * ------------------------------------------------------------------ */
.abouthero { border-bottom: 1px solid var(--line-soft); background: var(--surface); }
.abouthero .wrap { padding-top: 74px; padding-bottom: 58px; max-width: 900px; }
.abouthero h1 {
  font-family: var(--serif); font-weight: 500; font-size: 44px; line-height: 1.14;
  color: var(--ink); margin: 14px 0 0; letter-spacing: -.012em;
}
.abouthero .lede { font-size: 19px; line-height: 1.62; color: var(--body); margin: 22px 0 0; }

.instlist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; }
.instlist li { padding: 13px 0; border-bottom: 1px solid var(--line); }
.instlist li:first-child { padding-top: 0; }
.instlist b { display: block; font-weight: 500; color: var(--ink); font-size: 15px; }
.instlist span { display: block; font-size: 13px; line-height: 1.5; color: var(--muted); margin-top: 2px; }

.quote { border-left: 3px solid var(--brand); padding: 4px 0 4px 26px; margin: 0; }
.quote p {
  font-family: var(--serif); font-size: 22px; line-height: 1.48; color: var(--ink);
  margin: 0; font-weight: 400;
}
.quote footer { font-size: 13.5px; color: var(--muted); margin-top: 14px; font-style: normal; }
.quote--inset { margin-top: 52px; padding-top: 46px; border-top: 1px solid var(--line); border-left: 0; padding-left: 0; }
.quote--inset .quote-body { border-left: 3px solid var(--brand); padding-left: 26px; }

.chain { margin: 0; }
.chain-row { display: flex; align-items: stretch; gap: 0; }
.node {
  flex: 1; background: rgba(255,255,255,.055); border: 1px solid var(--moss-line);
  border-radius: var(--radius); padding: 20px 18px 18px;
}
.node--you { background: #fff; border-color: #fff; }
.node .ico { display: block; margin-bottom: 13px; }
.node .ico svg { display: block; width: 26px; height: 26px; stroke: #9fb094; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.node--you .ico svg { stroke: var(--brand); }
.node b { display: block; font-weight: 500; font-size: 15.5px; color: #fff; margin-bottom: 6px; }
.node--you b { color: var(--ink); }
.node span { display: block; font-size: 13px; line-height: 1.5; color: #c6d1be; }
.node--you span { color: var(--body); }
.node .tag {
  display: inline-block; margin-top: 12px; font-size: 11px; letter-spacing: .07em;
  text-transform: uppercase; color: var(--brand); border: 1px solid var(--brand);
  border-radius: 999px; padding: 3px 9px;
}
.chev { flex: 0 0 42px; display: flex; align-items: center; justify-content: center; }
.chev svg { width: 21px; height: 21px; stroke: #b3c4a7; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.chain-branch { position: relative; margin-top: 30px; }
.chain-branch::before {
  content: ""; position: absolute; left: 9%; top: -30px; width: 1px; height: 30px;
  border-left: 1px dashed #8b9e80;
}
.branch-note {
  border: 1px dashed var(--moss-line); border-radius: var(--radius);
  padding: 16px 20px; display: flex; gap: 16px; align-items: baseline;
}
.branch-note b { font-weight: 500; color: #fff; font-size: 14.5px; white-space: nowrap; }
.branch-note span { font-size: 13.5px; line-height: 1.55; color: #cbd5c4; }

.stds { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.stds li { padding: 22px 26px 22px 0; border-right: 1px solid var(--line); }
.stds li:last-child { border-right: 0; padding-right: 0; }
.stds li + li { padding-left: 26px; }
.stds b { display: block; font-weight: 500; font-size: 15px; color: var(--ink); }
.stds em { display: block; font-style: normal; font: 500 11px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin: 9px 0 8px; }
.stds span { display: block; font-size: 13.5px; line-height: 1.55; color: var(--body); }

@media (max-width: 860px) {
  .chain-row { flex-direction: column; }
  .chev { flex: 0 0 30px; transform: rotate(90deg); }
  .chain-branch::before { left: 26px; }
  .abouthero h1 { font-size: 33px; }
  .branch-note { flex-direction: column; gap: 6px; }
  .stds { grid-template-columns: 1fr; }
  .stds li, .stds li + li { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .stds li:last-child { border-bottom: 0; }
}
