:root {
  --ink: #090b0e;
  --ink-soft: #12171d;
  --cream: #fbf6ee;
  --cream-2: #f2e7d7;
  --paper: #fffdf9;
  --brown: #30241b;
  --brown-soft: #6e5b4c;
  --terra: #d46738;
  --terra-dark: #a9441e;
  --terra-light: #f0a27a;
  --cyan: #7fabb0;
  --sage: #879f78;
  --lilac: #a88ac8;
  --line: rgba(48, 36, 27, 0.13);
  --line-light: rgba(255, 255, 255, 0.14);
  /* research.html referenced these but they were never defined — every rule using
     them silently fell back to inherited color. Defined here from the palette. */
  --on-dark: #fbf6ee;
  --on-dark-dim: rgba(251, 246, 238, 0.62);
  --brown-dim: #6e5b4c;
  --card: #fffdf9;
  --hud-amber: #f2a93b;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SFMono-Regular", "Roboto Mono", Menlo, Consolas, monospace;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 140ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: 28px;
}

.section {
  padding-block: 108px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--terra-dark);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.cyan {
  color: var(--terra-light);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 22px;
  color: var(--brown);
  font-size: clamp(2.35rem, 4.8vw, 4.7rem);
  line-height: 0.98;
}

h2 em {
  color: var(--terra);
  font-weight: inherit;
}

.section-heading {
  width: min(100%, 680px);
  margin-bottom: 58px;
}

.section-heading > p:last-child,
.technology-head > p,
.local-intro > p {
  color: var(--brown-soft);
  font-size: 1.14rem;
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  color: #fff;
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark .paw {
  width: 26px;
  height: 26px;
  flex: none;
  color: var(--terra);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav .nav-cta {
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(9, 11, 14, 0.45);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
  transition: transform 160ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  opacity: 0.7;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 8, 11, 0.98) 0%, rgba(6, 8, 11, 0.9) 34%, rgba(6, 8, 11, 0.38) 68%, rgba(6, 8, 11, 0.78) 100%),
    linear-gradient(0deg, rgba(6, 8, 11, 0.98) 0%, transparent 44%, rgba(6, 8, 11, 0.45) 100%);
}

.hero-glow {
  position: absolute;
  inset: auto 12% 10% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(127, 171, 176, 0.08);
  filter: blur(100px);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.58fr);
  gap: 72px;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 76px;
}

.hero-copy {
  max-width: 750px;
}

.hero h1 {
  max-width: 13.5ch;
  margin: 0 0 28px;
  font-size: clamp(4rem, 7.4vw, 7rem);
  line-height: 0.88;
}

.hero h1 em {
  display: inline-block;
  color: var(--terra);
  font-weight: inherit;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.62;
}

.hero-actions,
.research-actions,
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.button-primary {
  background: #b94f26;
  color: #fff;
}

.button-primary:hover {
  background: var(--terra-dark);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.button-dark {
  background: var(--brown);
  color: #fff;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.hero-proof span {
  padding: 7px 10px;
  border: 1px solid rgba(127, 171, 176, 0.33);
  border-radius: 5px;
  color: var(--terra-light);
  background: rgba(127, 171, 176, 0.05);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-phone {
  position: relative;
  width: min(100%, 350px);
  margin: 70px 0 0 auto;
}

.phone-shell {
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 46px;
  background: #050607;
  box-shadow: 0 48px 90px -40px #000, 0 0 0 6px rgba(255, 255, 255, 0.03);
}

.phone-shell img {
  width: 100%;
  border-radius: 37px;
}

.hero-phone figcaption {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(135, 159, 120, 0.17);
}

.hero-foot {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Funding-review status */
.review-strip {
  border-bottom: 1px solid var(--line-light);
  background: #10151b;
  color: #fff;
}

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

.review-grid article {
  min-height: 190px;
  padding: 30px 26px;
  border-right: 1px solid var(--line-light);
}

.review-grid article:first-child {
  border-left: 1px solid var(--line-light);
}

.review-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--terra-light);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-grid strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.review-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
  line-height: 1.55;
}

/* Thesis */
.thesis {
  position: relative;
  background:
    radial-gradient(760px 400px at 12% 16%, rgba(212, 103, 56, 0.12), transparent 65%),
    var(--cream);
}

.thesis-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: start;
}

.thesis h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.thesis-copy {
  padding-top: 40px;
}

.thesis-copy p {
  max-width: 590px;
  color: var(--brown-soft);
  font-size: 1.08rem;
}

.thesis-copy .large {
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
  line-height: 1.32;
}

/* Product */
.product {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.product-grid {
  display: grid;
  gap: 28px;
}

.product-story {
  display: grid;
  min-height: 690px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--cream);
  box-shadow: 0 30px 70px -54px rgba(48, 36, 27, 0.7);
}

.product-story-coach {
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.72fr);
}

.product-story-care {
  grid-template-columns: minmax(390px, 0.78fr) minmax(0, 0.92fr);
}

.product-copy {
  align-self: center;
  padding: clamp(36px, 6vw, 76px);
}

.number {
  display: block;
  margin-bottom: 36px;
  color: rgba(48, 36, 27, 0.25);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.16em;
}

.product-copy h3,
.vision-copy h3 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4.15rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.product-copy > p {
  max-width: 540px;
  color: var(--brown-soft);
  font-size: 1.07rem;
}

.quiet-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.quiet-list li {
  position: relative;
  padding-left: 20px;
  color: var(--brown);
  font-size: 0.95rem;
  font-weight: 650;
}

.quiet-list li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terra);
}

.product-copy blockquote {
  margin: 34px 0 0;
  padding: 20px 22px;
  border-left: 3px solid var(--lilac);
  border-radius: 0 14px 14px 0;
  background: rgba(168, 138, 200, 0.1);
  color: #5d4477;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
}

.screen-card {
  position: relative;
  overflow: hidden;
  margin: 32px;
  border: 1px solid rgba(48, 36, 27, 0.12);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 42px 80px -50px rgba(48, 36, 27, 0.85);
}

.screen-tall {
  align-self: center;
  border-radius: 30px;
}

.screen-tall img {
  width: 100%;
}

.screen-wide {
  align-self: center;
  margin-right: 0;
}

.screen-wide img {
  width: 100%;
}

.screen-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 8px;
  border-radius: 5px;
  background: rgba(255, 253, 249, 0.88);
  color: var(--brown-soft);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.vision-band {
  position: relative;
  display: grid;
  min-height: 540px;
  overflow: hidden;
  grid-template-columns: 1.08fr 0.92fr;
  border-radius: 32px;
  background:
    radial-gradient(600px 400px at 35% 40%, rgba(127, 171, 176, 0.1), transparent 70%),
    var(--ink-soft);
  color: #fff;
}

.vision-frame {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background:
    linear-gradient(rgba(127, 171, 176, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 171, 176, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
}

.vision-video-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  overflow: hidden;
  background: #05070a;
  isolation: isolate;
}

.vision-video-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -24px;
  background:
    linear-gradient(rgba(5, 7, 10, 0.54), rgba(5, 7, 10, 0.82)),
    url("assets/telemetry-outdoor-poster.jpg") center / cover;
  filter: blur(18px) saturate(0.72);
  opacity: 0.72;
}

.vision-video {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: contain;
  object-position: center top;
  background: transparent;
}

.vision-video-wrap::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9, 11, 14, 0.34), transparent 22%, transparent 78%, rgba(9, 11, 14, 0.34)),
    linear-gradient(0deg, rgba(9, 11, 14, 0.18), transparent 24%);
}

.vision-video-label {
  position: absolute;
  bottom: 22px;
  left: 24px;
  z-index: 3;
  padding: 7px 10px;
  border: 1px solid rgba(127, 171, 176, 0.4);
  border-radius: 6px;
  background: rgba(5, 7, 10, 0.8);
  color: var(--terra-light);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.vision-frame::after {
  content: "BEHAVIOR TELEMETRY · EARLY MODEL WORK";
  position: absolute;
  bottom: 24px;
  left: 28px;
  color: rgba(127, 171, 176, 0.6);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.corner {
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: rgba(127, 171, 176, 0.52);
}

.top-left { top: 28px; left: 28px; border-top: 1px solid; border-left: 1px solid; }
.top-right { top: 28px; right: 28px; border-top: 1px solid; border-right: 1px solid; }
.bottom-left { bottom: 28px; left: 28px; border-bottom: 1px solid; border-left: 1px solid; }
.bottom-right { right: 28px; bottom: 28px; border-right: 1px solid; border-bottom: 1px solid; }

.vision-dog {
  position: absolute;
  inset: 14% 8%;
}

.vision-dog svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: rgba(127, 171, 176, 0.68);
  stroke-width: 2;
}

.joint {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 18px rgba(127, 171, 176, 0.8);
}

.j1 { top: 47%; left: 20%; }
.j2 { top: 34%; left: 42%; }
.j3 { top: 27%; left: 57%; }
.j4 { top: 40%; left: 74%; }
.j5 { top: 21%; left: 88%; }

.vision-copy {
  align-self: center;
  padding: clamp(36px, 6vw, 76px);
}

.vision-copy h3 {
  color: #fff;
}

.vision-copy > p {
  color: rgba(255, 255, 255, 0.68);
}

.vision-proof {
  margin: 26px 0 24px;
  padding: 20px;
  border: 1px solid rgba(231, 128, 77, 0.34);
  border-radius: 16px;
  background: rgba(231, 128, 77, 0.08);
}

.vision-proof-kicker {
  margin: 0 0 8px;
  color: var(--terra-light);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vision-proof > strong {
  display: block;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.08;
}

.vision-proof-timeline {
  display: grid;
  grid-template-columns: max-content minmax(30px, 1fr) max-content;
  gap: 10px;
  align-items: center;
  margin: 18px 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vision-proof-timeline b {
  color: var(--terra-light);
}

.vision-proof-timeline i {
  position: relative;
  height: 1px;
  background: rgba(231, 128, 77, 0.48);
}

.vision-proof-timeline i::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--terra-light);
  border-right: 1px solid var(--terra-light);
  transform: rotate(45deg);
}

.vision-proof > p:last-of-type {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.55;
}

.vision-replay {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(231, 128, 77, 0.48);
  border-radius: 999px;
  color: #fff;
  background: rgba(231, 128, 77, 0.12);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.vision-replay:hover,
.vision-replay:focus-visible {
  border-color: var(--terra-light);
  background: rgba(231, 128, 77, 0.22);
}

/* Local */
.local {
  background:
    radial-gradient(800px 500px at 82% 8%, rgba(135, 159, 120, 0.14), transparent 68%),
    var(--cream-2);
}

.local-intro,
.technology-head {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 54px;
}

.local-intro h2,
.technology-head h2 {
  margin-bottom: 0;
}

.concept-figure {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(48, 36, 27, 0.13);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 36px 90px -64px rgba(48, 36, 27, 0.85);
}

.concept-figure img {
  width: 100%;
  border-radius: 20px;
}

.concept-scroll {
  overflow: hidden;
  border-radius: 20px;
}

.concept-label {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 9px;
  background: rgba(48, 36, 27, 0.88);
  color: #fff;
  backdrop-filter: blur(10px);
}

.concept-label span {
  color: #f5b18d;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.concept-label strong {
  font-size: 13px;
}

.concept-figure figcaption {
  padding: 13px 8px 3px;
  color: var(--brown-soft);
  font-size: 12px;
  text-align: center;
}

.village-loop-figure {
  position: relative;
  margin: 28px 0 0;
  padding: 12px;
  border: 1px solid rgba(48, 36, 27, 0.13);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 36px 90px -64px rgba(48, 36, 27, 0.85);
}

.village-loop-figure img {
  width: 100%;
  border-radius: 20px;
}

.village-loop-scroll {
  overflow: hidden;
  border-radius: 20px;
}

.village-loop-figure figcaption {
  padding: 13px 8px 3px;
  color: var(--brown-soft);
  font-size: 12px;
  text-align: center;
}

.mobile-swipe-hint {
  display: none;
}

.local-status {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 24px;
}

.local-status article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.72);
}

.status-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 8px;
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-label.working {
  color: #53694a;
  background: rgba(135, 159, 120, 0.19);
}

.status-label.building {
  color: #8f3b1c;
  background: rgba(212, 103, 56, 0.14);
}

.local-status h3 {
  margin-bottom: 9px;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.local-status article > p:last-child {
  margin-bottom: 0;
  color: var(--brown-soft);
}

.source-matrix {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.76);
}

.source-matrix-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: end;
  padding: 25px 28px;
  border-bottom: 1px solid var(--line);
}

.source-matrix-head .eyebrow {
  margin-bottom: 0;
}

.source-matrix-head > p:last-child {
  margin-bottom: 0;
  color: var(--brown-soft);
  font-size: 0.92rem;
}

.source-row {
  display: grid;
  grid-template-columns: 0.62fr 0.92fr 1.46fr;
  gap: 22px;
  align-items: baseline;
  padding: 16px 28px;
  border-bottom: 1px solid var(--line);
}

.source-row:last-child {
  border-bottom: 0;
}

.source-row strong {
  color: var(--brown);
}

.source-row span {
  color: var(--terra-dark);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.source-row small {
  color: var(--brown-soft);
  font-size: 0.86rem;
}

.warning-example {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(212, 103, 56, 0.3);
  border-radius: 20px;
  background: var(--paper);
}

.warning-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.6rem;
}

.warning-example span {
  color: var(--terra-dark);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.warning-example p {
  margin: 2px 0 0;
}

.concept-share {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brown-soft);
  background: var(--cream);
  font-size: 13px;
  font-weight: 650;
}

.environment-details {
  margin-top: 28px;
}

.environment-summary {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(280px, 1.25fr) minmax(220px, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid rgba(48, 36, 27, 0.18);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.86);
  box-shadow: 0 16px 44px -34px rgba(48, 36, 27, 0.65);
  cursor: pointer;
  list-style: none;
}

.environment-summary::-webkit-details-marker {
  display: none;
}

.environment-summary-kicker {
  color: var(--terra-dark);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.environment-summary strong {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.25;
}

.environment-summary-sources {
  color: var(--brown-soft);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.environment-summary-action {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-self: end;
  color: var(--terra-dark);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.environment-summary-action b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(169, 68, 30, 0.24);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 500;
  transition: transform 180ms ease;
}

.environment-details[open] .environment-summary-action b {
  transform: rotate(45deg);
}

.environment-shell {
  margin-top: 12px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 30px 80px -56px rgba(48, 36, 27, 0.55);
}

.environment-heading {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 32px;
}

.environment-heading h3 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.environment-heading > p {
  margin: 0;
  color: var(--brown-soft);
}

.env-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: start;
}

.env-map {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}

.env-map-viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 26 / 18;
  border: 1px solid rgba(127, 171, 176, 0.24);
  border-radius: 20px;
  background: radial-gradient(120% 120% at 30% 18%, #172431 0%, var(--ink) 72%);
  box-shadow: 0 24px 50px -30px rgba(10, 12, 16, 0.86);
}

.env-map-viewport svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.env-map-chip {
  position: absolute;
  z-index: 2;
  padding: 6px 9px;
  border: 1px solid rgba(127, 171, 176, 0.32);
  border-radius: 6px;
  background: rgba(8, 12, 18, 0.78);
  color: var(--terra-light);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.env-map-chip.tl {
  top: 12px;
  left: 12px;
}

.env-map-chip.br {
  right: 12px;
  bottom: 12px;
  border-color: rgba(242, 169, 59, 0.42);
  color: #f2a93b;
}

.env-map figcaption {
  color: var(--brown-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.env-live {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 7px;
  color: #526d48;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.env-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #72ae60;
  box-shadow: 0 0 0 3px rgba(114, 174, 96, 0.2);
}

.env-signals {
  display: flex;
  flex-direction: column;
}

.env-signals-h {
  margin: 0 0 12px;
  color: var(--brown-soft);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sig-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.sig {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.sig:first-child {
  border-top: 1px solid var(--line);
}

.sig-k {
  color: var(--brown);
  font-weight: 700;
}

.sig-v {
  color: var(--terra-dark);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-align: right;
}

.sig-cap {
  margin: 0;
  color: var(--brown-soft);
  font-size: 0.92rem;
  line-height: 1.62;
}

.env-scenario {
  margin-top: 28px;
  padding: 23px 26px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--terra);
  border-radius: 0 18px 18px 0;
  background: var(--paper);
}

.env-scenario-tag {
  margin: 0 0 9px;
  color: var(--terra-dark);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.env-scenario-body {
  max-width: 78ch;
  margin: 0;
  color: var(--brown);
  font-size: 1.02rem;
  line-height: 1.62;
}

.env-status {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.es-col {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
}

.es-built {
  border-left: 3px solid var(--sage);
}

.es-next {
  border-left: 3px solid var(--cyan);
}

.es-h {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.es-built .es-h {
  color: #526d48;
}

.es-next .es-h {
  color: var(--terra-dark);
}

.es-col ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.es-col li {
  color: var(--brown-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* Technology */
.technology {
  background: var(--ink-soft);
  color: #fff;
}

.technology h2 {
  color: #fff;
}

.technology-head > p {
  color: rgba(255, 255, 255, 0.62);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.metric-grid article {
  min-height: 230px;
  padding: 34px 26px;
  border-right: 1px solid var(--line-light);
}

.metric-grid article:last-child {
  border-right: 0;
}

.metric {
  display: block;
  margin-bottom: 38px;
  color: var(--terra);
  font-family: var(--mono);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.metric-grid h3 {
  margin-bottom: 8px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.metric-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
}

.receipt-grid {
  display: grid;
  gap: 28px;
  margin-top: 58px;
}

.receipt-block {
  padding: 30px;
  border: 1px solid var(--line-light);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.receipt-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 24px;
}

.receipt-heading .eyebrow {
  margin-bottom: 5px;
}

.receipt-heading h3 {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 600;
}

.receipt-video {
  position: relative;
  overflow: hidden;
  margin: 0 0 26px;
  border: 1px solid rgba(127, 171, 176, 0.28);
  border-radius: 18px;
  background: #050709;
}

.receipt-video video {
  width: 100%;
  aspect-ratio: 960 / 496;
  object-fit: cover;
  background: #050709;
}

.receipt-video figcaption {
  padding: 10px 14px;
  border-top: 1px solid var(--line-light);
  color: var(--terra-light);
  background: rgba(5, 7, 9, 0.96);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.receipt-table {
  width: 100%;
  border-top: 1px solid var(--line-light);
}

.receipt-row {
  display: grid;
  grid-template-columns: minmax(155px, 0.72fr) minmax(115px, 0.42fr) minmax(280px, 1.5fr);
  gap: 24px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.receipt-row:last-child {
  border-bottom: 0;
}

.receipt-row strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 650;
}

.receipt-row.receipt-header {
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.receipt-value {
  color: var(--terra);
  font-family: var(--mono);
  font-weight: 750;
  white-space: nowrap;
}

.technology-note {
  display: flex;
  gap: 42px;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
}

.technology-note p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
}

.technology-note strong {
  color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--terra-dark);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(3px);
}

.text-link.light {
  color: var(--terra-light);
}

/* Platform */
.platform {
  background: var(--cream);
}

.platform-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 100px;
}

.platform-grid h2 {
  position: sticky;
  top: 100px;
}

.platform-points {
  border-top: 1px solid var(--line);
}

.platform-points article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.platform-points article > span {
  padding-top: 4px;
  color: var(--terra);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.11em;
}

.platform-points h3 {
  margin-bottom: 9px;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.platform-points p {
  margin-bottom: 0;
  color: var(--brown-soft);
}

/* Research */
.research {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(700px 360px at 50% 0, rgba(212, 103, 56, 0.13), transparent 70%),
    var(--cream-2);
}

.research-inner {
  max-width: 850px;
  text-align: center;
}

.research-inner h2 {
  max-width: 13ch;
  margin-inline: auto;
}

.research-inner > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto 30px;
  color: var(--brown-soft);
  font-size: 1.08rem;
}

.research-actions {
  justify-content: center;
}

/* About/footer */
.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  max-width: 940px;
  grid-template-columns: 150px 1fr;
  gap: 62px;
  align-items: start;
}

.founder-mark {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  box-shadow: 0 28px 60px -36px rgba(169, 68, 30, 0.8);
}

.founder-mark svg {
  width: 58%;
}

.about h2 {
  max-width: 12ch;
}

.about-grid p:not(.eyebrow) {
  max-width: 640px;
  color: var(--brown-soft);
  font-size: 1.08rem;
}

.about-actions {
  margin-top: 30px;
}

.site-footer {
  padding-block: 34px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.56);
}

.footer-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.footer-wordmark {
  color: #fff;
  font-size: 16px;
}

.footer-wordmark .paw {
  width: 22px;
  height: 22px;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 980px) {
  .section {
    padding-block: 84px;
  }

  .hero {
    min-height: 840px;
  }

  .hero-grid {
    min-height: 840px;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 8.2vw, 5.7rem);
  }

  .thesis-grid,
  .local-intro,
  .technology-head,
  .platform-grid {
    gap: 50px;
  }

  .product-story-coach,
  .product-story-care {
    grid-template-columns: 1fr 0.85fr;
  }

  .screen-card {
    margin-left: 0;
  }

  .vision-band {
    grid-template-columns: 1fr 0.95fr;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-grid article:nth-child(2) {
    border-right: 0;
  }

  .review-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .metric-grid article:nth-child(2) {
    border-right: 0;
  }

  .metric-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .environment-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .environment-heading h3 {
    max-width: 17ch;
  }
}

@media (max-width: 760px) {
  .container {
    padding-inline: 22px;
  }

  .section {
    padding-block: 70px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(9, 11, 14, 0.96);
    box-shadow: 0 24px 60px -30px #000;
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .site-nav .nav-cta {
    padding: 12px 14px;
    border: 0;
    border-radius: 10px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .hero {
    min-height: auto;
  }

  .hero-video {
    object-position: 58% center;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(6, 8, 11, 0.99) 0%, rgba(6, 8, 11, 0.88) 52%, rgba(6, 8, 11, 0.62) 100%),
      linear-gradient(90deg, rgba(6, 8, 11, 0.86), rgba(6, 8, 11, 0.32));
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 132px;
    padding-bottom: 82px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(3.6rem, 15vw, 5.2rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-phone {
    width: min(84%, 330px);
    margin: 0 auto;
  }

  .hero-foot {
    display: none;
  }

  .review-grid article {
    min-height: 170px;
  }

  .thesis-grid,
  .local-intro,
  .technology-head,
  .platform-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .thesis-copy {
    padding-top: 0;
  }

  .product-story,
  .product-story-coach,
  .product-story-care {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .product-story-care .screen-wide {
    order: 2;
  }

  .product-story-care .product-copy {
    order: 1;
  }

  .screen-card,
  .screen-wide {
    margin: 0 18px 18px;
  }

  .screen-tall {
    max-height: none;
  }

  .vision-band {
    grid-template-columns: 1fr;
  }

  .vision-frame {
    min-height: 330px;
  }

  .vision-video-wrap,
  .vision-video {
    min-height: 520px;
  }

  .vision-copy {
    padding-top: 18px;
  }

  .vision-proof-timeline {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .vision-proof-timeline i {
    width: 100%;
  }

  .local-status {
    grid-template-columns: 1fr;
  }

  .environment-shell {
    padding: 24px;
    border-radius: 22px;
  }

  .environment-summary {
    grid-template-columns: 1fr 1fr;
  }

  .environment-summary-action {
    justify-self: start;
  }

  .env-grid,
  .env-status {
    grid-template-columns: 1fr;
  }

  .env-grid {
    gap: 26px;
  }

  .source-matrix-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .source-row {
    grid-template-columns: 1fr 1fr;
  }

  .source-row small {
    grid-column: 1 / -1;
  }

  .warning-example {
    grid-template-columns: auto 1fr;
  }

  .concept-share {
    grid-column: 1 / -1;
    width: 100%;
  }

  .technology-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .receipt-heading {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .receipt-row {
    grid-template-columns: 1fr auto;
    gap: 7px 16px;
  }

  .receipt-row > :last-child {
    grid-column: 1 / -1;
  }

  .receipt-row.receipt-header {
    display: none;
  }

  .platform-grid h2 {
    position: static;
  }

  .about-grid {
    grid-template-columns: 82px 1fr;
    gap: 28px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .header-inner {
    min-height: 74px;
  }

  .wordmark {
    font-size: 17px;
  }

  .wordmark .paw {
    width: 23px;
    height: 23px;
  }

  .hero-grid {
    padding-top: 116px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 14.7vw, 4.5rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof span {
    flex: 1 1 auto;
    text-align: center;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-grid article,
  .review-grid article:first-child,
  .review-grid article:nth-child(2) {
    min-height: 0;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
  }

  .review-grid article:last-child {
    border-bottom: 0;
  }

  h2 {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .product-story,
  .vision-band,
  .concept-figure,
  .village-loop-figure {
    border-radius: 22px;
  }

  .product-copy,
  .vision-copy {
    padding: 32px 26px;
  }

  .product-copy h3,
  .vision-copy h3 {
    font-size: 2.4rem;
  }

  .screen-tall {
    max-height: none;
  }

  .concept-figure {
    padding: 6px;
  }

  .concept-figure img {
    border-radius: 17px;
  }

  .concept-label {
    position: static;
    margin-bottom: 6px;
    max-width: 100%;
  }

  .concept-label strong {
    font-size: 11px;
  }

  .village-loop-figure {
    padding: 6px;
  }

  .village-loop-scroll {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-color: var(--terra) transparent;
  }

  .village-loop-figure img {
    width: 900px;
    max-width: none;
    border-radius: 17px;
  }

  .mobile-swipe-hint {
    display: block;
    margin-bottom: 4px;
    color: var(--terra-dark);
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .environment-summary {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .receipt-block {
    padding: 24px 20px;
  }

  .source-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .source-row small {
    grid-column: auto;
  }

  .metric-grid article,
  .metric-grid article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .metric-grid article:last-child {
    border-bottom: 0;
  }

  .metric {
    margin-bottom: 18px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .founder-mark {
    width: 76px;
  }

  .about-actions .button {
    width: 100%;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Counted-assets band — figures traceable to files in the build */
.asset-band {
  margin: 34px 0 0;
  padding: 26px 28px;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  background: rgba(5, 7, 10, 0.55);
}
.asset-band-h {
  margin: 0 0 18px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra-light);
}
.asset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.asset-grid li {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.asset-grid .an {
  font-size: 1.72rem;
  font-weight: 600;
  line-height: 1;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.asset-grid .al {
  font-size: 0.83rem;
  line-height: 1.4;
  color: rgba(251, 246, 238, 0.62);
}
.asset-band-note {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(251, 246, 238, 0.5);
  max-width: 78ch;
}
@media (max-width: 620px) {
  .asset-band { padding: 20px 18px; }
  .asset-grid { gap: 16px 18px; }
  .asset-grid .an { font-size: 1.45rem; }
}

/* Live Water Watch — functioning product surface, not an illustrative image */
.live-watch {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(127, 171, 176, 0.24);
  border-radius: 34px;
  background:
    radial-gradient(800px 500px at 92% -14%, rgba(127, 171, 176, 0.15), transparent 65%),
    radial-gradient(620px 440px at -8% 110%, rgba(212, 103, 56, 0.14), transparent 68%),
    #0b0e12;
  color: var(--on-dark);
  box-shadow: 0 42px 100px -64px rgba(9, 11, 14, 0.95);
}

.live-watch::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(127, 171, 176, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 171, 176, 0.11) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 76% 45%, #000, transparent 72%);
}

.live-watch > * {
  position: relative;
  z-index: 1;
}

.live-watch-topline {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(251, 246, 238, 0.5);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.actual-system {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: #a9d797;
}

.actual-system i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #86c970;
  box-shadow: 0 0 0 4px rgba(134, 201, 112, 0.13), 0 0 18px rgba(134, 201, 112, 0.58);
}

.live-watch-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.68fr);
  gap: clamp(38px, 7vw, 94px);
  align-items: end;
  margin: 48px 0 34px;
}

.live-watch-heading .eyebrow {
  color: var(--terra-light);
}

.live-watch-heading h3 {
  max-width: 13ch;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.live-watch-heading > p {
  margin: 0;
  color: rgba(251, 246, 238, 0.66);
  font-size: 1.02rem;
  line-height: 1.65;
}

.scenario-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.scenario-button {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 17px 19px;
  border: 1px solid var(--line-light);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(251, 246, 238, 0.7);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.scenario-button:hover {
  transform: translateY(-1px);
  border-color: rgba(127, 171, 176, 0.46);
  background: rgba(127, 171, 176, 0.07);
}

.scenario-button.is-selected {
  border-color: rgba(212, 103, 56, 0.72);
  background: rgba(212, 103, 56, 0.11);
  color: #fff;
}

.scenario-button span {
  flex: none;
  color: var(--terra-light);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.scenario-button strong {
  overflow: hidden;
  font-size: 0.92rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.incident-console {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(127, 171, 176, 0.2);
  border-radius: 24px;
  background: rgba(4, 6, 8, 0.58);
  transition: opacity 180ms ease;
}

.incident-console.is-loading {
  opacity: 0.68;
}

.signal-rail {
  padding: 30px 24px;
  border-right: 1px solid rgba(127, 171, 176, 0.16);
}

.signal-step {
  position: relative;
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 13px;
  min-height: 88px;
  color: rgba(251, 246, 238, 0.82);
}

.signal-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 31px;
  bottom: 0;
  left: 15px;
  width: 1px;
  background: rgba(127, 171, 176, 0.28);
}

.signal-step > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(127, 171, 176, 0.44);
  border-radius: 50%;
  background: #111a20;
  color: #b7e1e5;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
}

.signal-step strong,
.signal-step small {
  display: block;
}

.signal-step strong {
  padding-top: 3px;
  font-size: 0.88rem;
}

.signal-step small {
  margin-top: 3px;
  color: rgba(251, 246, 238, 0.46);
  font-size: 0.74rem;
  line-height: 1.4;
}

.signal-step.is-live > span {
  border-color: rgba(134, 201, 112, 0.62);
  color: #bce5ad;
  box-shadow: 0 0 0 4px rgba(134, 201, 112, 0.06);
}

.signal-step.is-next {
  color: rgba(251, 246, 238, 0.42);
}

.signal-step.is-next > span {
  border-style: dashed;
  color: rgba(251, 246, 238, 0.43);
  background: transparent;
}

.incident-card {
  min-width: 0;
  padding: clamp(28px, 4.5vw, 52px);
  background: var(--paper);
  color: var(--brown);
}

.incident-section-label {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-bottom: 20px;
}

.incident-section-label > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: none;
  place-items: center;
  border: 1px solid rgba(212, 103, 56, 0.34);
  border-radius: 50%;
  color: var(--terra-dark);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 850;
}

.incident-section-label strong,
.incident-section-label small {
  display: block;
}

.incident-section-label strong {
  color: var(--brown);
  font-size: 0.88rem;
}

.incident-section-label small {
  margin-top: 1px;
  color: var(--brown-soft);
  font-size: 0.7rem;
}

.incident-card-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.incident-classification,
.incident-kind {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.incident-classification {
  color: #8d3a1d;
  background: rgba(212, 103, 56, 0.13);
}

.incident-classification.is-advisory {
  color: #6e3b00;
  background: rgba(242, 169, 59, 0.2);
}

.incident-kind {
  color: #4f6b47;
  background: rgba(135, 159, 120, 0.16);
}

.incident-card h4 {
  max-width: 24ch;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}

.incident-summary {
  max-width: 74ch;
  margin-bottom: 28px;
  color: var(--brown-soft);
  font-size: 1rem;
  line-height: 1.68;
}

.incident-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.incident-facts div {
  min-width: 0;
  padding: 16px 14px 16px 0;
}

.incident-facts div + div {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.incident-facts dt {
  margin-bottom: 4px;
  color: var(--brown-soft);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.incident-facts dd {
  overflow-wrap: anywhere;
  margin: 0;
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.35;
}

.personalized-output {
  margin: 8px 0 25px;
  padding: clamp(20px, 3.2vw, 30px);
  border: 1px solid rgba(212, 103, 56, 0.24);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(212, 103, 56, 0.1), rgba(255, 255, 255, 0.56));
}

.incident-section-label.is-output {
  margin-bottom: 17px;
}

.incident-section-label.is-output > span {
  color: #fff;
  background: var(--terra);
  border-color: var(--terra);
}

.owner-context {
  margin-bottom: 12px;
  padding: 15px 17px;
  border: 1px solid rgba(88, 72, 59, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
}

.owner-context span,
.personalization-note {
  color: var(--brown-soft);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.owner-context p {
  margin: 5px 0 0;
  color: var(--brown);
  font-size: 0.92rem;
  font-weight: 680;
  line-height: 1.5;
}

.incident-action {
  padding: 19px 21px;
  border-left: 3px solid var(--terra);
  border-radius: 0 13px 13px 0;
  background: rgba(255, 248, 238, 0.82);
}

.incident-action span,
.incident-source span {
  display: block;
  margin-bottom: 5px;
  color: var(--terra-dark);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.incident-action p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.44;
}

.personalization-note {
  margin: 14px 0 0;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.incident-source {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.incident-source small {
  color: var(--brown-soft);
  font-size: 0.75rem;
}

.incident-source a {
  display: inline-flex;
  flex: none;
  gap: 7px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brown);
  background: var(--cream);
  font-size: 0.78rem;
  font-weight: 780;
  text-decoration: none;
}

.incident-source a:hover {
  border-color: rgba(212, 103, 56, 0.46);
  color: var(--terra-dark);
}

.incident-more {
  margin: 19px 0 0;
  color: var(--terra-dark);
  font-size: 0.78rem;
  font-weight: 740;
}

.incident-coverage {
  margin: 19px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--brown-soft);
  font-size: 0.74rem;
  line-height: 1.55;
}

.delivery-boundary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.delivery-boundary > div {
  padding: 19px 21px;
  border: 1px solid var(--line-light);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.delivery-boundary > div:last-child {
  border-style: dashed;
}

.delivery-boundary span {
  display: block;
  margin-bottom: 7px;
  color: #bce5ad;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.delivery-boundary > div:last-child span {
  color: var(--terra-light);
}

.delivery-boundary p {
  margin: 0;
  color: rgba(251, 246, 238, 0.56);
  font-size: 0.82rem;
  line-height: 1.55;
}

.plan-composer {
  margin-top: clamp(58px, 9vw, 112px);
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(620px 360px at 100% 0, rgba(212, 103, 56, 0.1), transparent 68%),
    var(--paper);
}

.plan-composer-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.68fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: end;
  margin-bottom: 34px;
}

.plan-composer-intro h3 {
  max-width: 13ch;
  margin: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.7vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.97;
}

.plan-composer-intro > p {
  margin: 0;
  color: var(--brown-soft);
  line-height: 1.7;
}

.plan-build {
  display: grid;
  grid-template-columns: minmax(230px, 0.43fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: #fffdf9;
}

.plan-inputs {
  padding: 28px 23px;
  background: #121316;
  color: var(--on-dark);
}

.plan-kicker {
  margin: 0 0 17px;
  color: var(--terra-light);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-inputs article {
  padding: 18px 0;
  border-top: 1px solid rgba(251, 246, 238, 0.12);
}

.plan-inputs article > span {
  display: block;
  margin-bottom: 5px;
  color: #a9d797;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-inputs strong {
  display: block;
  font-size: 0.93rem;
  line-height: 1.35;
}

.plan-inputs article p {
  margin: 7px 0 0;
  color: rgba(251, 246, 238, 0.5);
  font-size: 0.77rem;
  line-height: 1.55;
}

.plan-output {
  min-width: 0;
  padding: clamp(25px, 4vw, 45px);
}

.plan-output-head {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 25px;
}

.plan-output-head > div > span,
.plan-refusal span {
  display: block;
  margin-bottom: 6px;
  color: var(--terra-dark);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-output h4 {
  margin: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.plan-state {
  flex: none;
  padding: 7px 9px;
  border-radius: 6px;
  color: #4f6b47;
  background: rgba(135, 159, 120, 0.16);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-output ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-output li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 13px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.plan-output li > span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--terra);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 850;
}

.plan-output li strong {
  color: var(--brown);
  font-size: 0.95rem;
  line-height: 1.4;
}

.plan-output li p {
  margin: 4px 0 0;
  color: var(--brown-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.plan-refusal {
  margin-top: 16px;
  padding: 16px 18px;
  border-left: 3px solid #8b4030;
  border-radius: 0 12px 12px 0;
  background: rgba(139, 64, 48, 0.07);
}

.plan-refusal p {
  margin: 0;
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 680;
  line-height: 1.55;
}

.plan-provenance {
  margin: 15px 0 0;
  color: var(--brown-soft);
  font-size: 0.69rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .live-watch-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .live-watch-heading h3 {
    max-width: 16ch;
  }

  .scenario-picker {
    grid-template-columns: 1fr;
  }

  .incident-console {
    grid-template-columns: 1fr;
  }

  .signal-rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(127, 171, 176, 0.16);
  }

  .signal-step {
    display: block;
    min-height: 0;
  }

  .signal-step:not(:last-child)::after {
    display: none;
  }

  .signal-step > span {
    margin-bottom: 9px;
  }

  .incident-facts {
    grid-template-columns: 1fr 1fr;
  }

  .incident-facts div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .incident-facts div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .plan-composer-intro,
  .plan-build {
    grid-template-columns: 1fr;
  }

  .plan-composer-intro {
    gap: 18px;
  }
}

@media (max-width: 620px) {
  .live-watch {
    margin-inline: -10px;
    padding: 24px 16px 18px;
    border-radius: 24px;
  }

  .live-watch-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .live-watch-heading {
    margin: 36px 0 26px;
  }

  .live-watch-heading h3 {
    font-size: 2.65rem;
  }

  .scenario-button {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .scenario-button strong {
    width: 100%;
  }

  .signal-rail {
    grid-template-columns: 1fr 1fr;
  }

  .signal-step {
    padding: 3px;
  }

  .incident-card {
    padding: 28px 20px;
  }

  .incident-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .incident-card h4 {
    font-size: 2.25rem;
  }

  .incident-facts {
    grid-template-columns: 1fr;
  }

  .incident-facts div,
  .incident-facts div + div,
  .incident-facts div:nth-child(3),
  .incident-facts div:nth-child(4) {
    padding: 12px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .incident-facts div:first-child {
    border-top: 0;
  }

  .incident-source {
    align-items: flex-start;
    flex-direction: column;
  }

  .incident-source a {
    width: 100%;
    justify-content: center;
  }

  .delivery-boundary {
    grid-template-columns: 1fr;
  }

  .plan-composer {
    margin-top: 52px;
    padding: 26px 16px 18px;
    border-radius: 24px;
  }

  .plan-composer-intro h3 {
    font-size: 2.6rem;
  }

  .plan-output-head {
    flex-direction: column;
    gap: 11px;
  }
}
