:root {
  --forest-950: #1a3520;
  --forest-900: #203a24;
  --forest-800: #24492b;
  --forest-700: #2b5933;
  --leaf-600: #427049;
  --sprout-500: #508046;
  --sage-300: #c9d5bd;
  --sage-200: #d9e2cd;
  --sage-100: #e1e8d6;
  --canvas: #f0f3e8;
  --paper: #ffffff;
  --ink-muted: #5e6a61;
  --warning: #b07022;
  --line: rgba(26, 53, 32, 0.14);
  --shadow: 0 28px 80px rgba(26, 53, 32, 0.12);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--forest-950);
  background: var(--canvas);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(80, 128, 70, 0.48);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--paper);
  background: var(--forest-950);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(26, 53, 32, 0.08);
  background: rgba(240, 243, 232, 0.9);
  box-shadow: 0 10px 36px rgba(26, 53, 32, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.brand span {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--forest-900);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  text-decoration: none;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover {
  color: var(--sprout-500);
}

.site-nav .nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--forest-700);
}

.site-nav .nav-cta:hover {
  background: var(--forest-950);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--forest-950);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 170px 0 58px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 31%, rgba(217, 226, 205, 0.78), transparent 29%),
    linear-gradient(180deg, #f7f9f2 0%, var(--canvas) 70%);
}

.hero::before {
  position: absolute;
  right: -7vw;
  bottom: 6%;
  width: 38vw;
  height: 38vw;
  min-width: 480px;
  min-height: 480px;
  border: 1px solid rgba(66, 112, 73, 0.09);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  top: -170px;
  left: -170px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(225, 232, 214, 0.7);
  filter: blur(30px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 68px;
}

.hero-copy {
  max-width: 720px;
  padding-bottom: 28px;
}

.eyebrow,
.kicker {
  margin: 0 0 22px;
  color: var(--leaf-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sprout-500);
  box-shadow: 0 0 0 6px rgba(80, 128, 70, 0.1);
}

.hero h1,
.section-heading h2,
.discover-copy h2,
.principles-intro h2,
.early-access-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.048em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(50px, 5vw, 74px);
  line-height: 1;
}

.hero-lede {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--ink-muted);
  font-size: 19px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--paper);
  background: var(--forest-700);
  box-shadow: 0 12px 28px rgba(43, 89, 51, 0.2);
}

.button-primary:hover {
  background: var(--forest-950);
  box-shadow: 0 16px 32px rgba(26, 53, 32, 0.24);
}

.button-quiet {
  border-color: var(--line);
  color: var(--forest-900);
  background: rgba(255, 255, 255, 0.48);
}

.button-quiet:hover {
  border-color: rgba(26, 53, 32, 0.24);
  background: var(--paper);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--forest-800);
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-list li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sprout-500);
  content: "";
}

.hero-composition {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
  isolation: isolate;
}

.hero-composition::before {
  position: absolute;
  z-index: -3;
  top: 50%;
  left: 50%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(97, 137, 89, 0.12), transparent 68%);
  content: "";
  transform: translate(-50%, -50%);
}

.composition-layer {
  position: absolute;
  border: 1px solid rgba(66, 112, 73, 0.13);
  border-radius: 50%;
}

.layer-outer {
  z-index: -2;
  width: 410px;
  height: 410px;
  background: rgba(225, 232, 214, 0.2);
}

.layer-middle {
  z-index: -1;
  width: 310px;
  height: 310px;
  background: rgba(217, 226, 205, 0.34);
  box-shadow: 0 30px 90px rgba(26, 53, 32, 0.06);
}

.layer-inner {
  width: 210px;
  height: 210px;
  border-color: rgba(66, 112, 73, 0.11);
  background: rgba(255, 255, 255, 0.48);
}

.hero-avatar-orb {
  position: relative;
  z-index: 3;
  width: 96px;
  height: 96px;
  margin: 0;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(26, 53, 32, 0.14);
}

.hero-avatar-orb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.hero-foot {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 70px;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 600;
}

.hero-foot p {
  margin: 0;
}

.hero-rule {
  height: 1px;
  background: var(--line);
}

.section {
  padding: 132px 0;
}

.section-heading {
  margin-bottom: 64px;
}

.section-heading.centered {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.discover-copy h2,
.principles-intro h2,
.early-access-card h2 {
  font-size: clamp(44px, 5vw, 68px);
}

.section-heading > p:not(.kicker),
.discover-copy > p,
.early-access-card > p:not(.kicker, .availability) {
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.75;
}

.section-heading.centered > p:not(.kicker) {
  max-width: 690px;
  margin: 26px auto 0;
}

.brief-section {
  background: #f8f9f4;
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.brief-card {
  position: relative;
  min-height: 460px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 0 18px 55px rgba(26, 53, 32, 0.05);
}

.brief-card.featured {
  color: var(--paper);
  border-color: transparent;
  background: var(--forest-950);
  transform: translateY(18px);
}

.card-number {
  color: var(--leaf-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.featured .card-number,
.featured .card-label {
  color: var(--sage-200);
}

.mini-chart,
.pipeline-visual,
.evidence-visual {
  height: 122px;
  margin: 42px 0 36px;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 9px;
}

.mini-chart span {
  width: 12%;
  height: var(--height);
  border-radius: 8px 8px 3px 3px;
  background: var(--sage-200);
}

.mini-chart span:last-child {
  background: var(--sprout-500);
}

.pipeline-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pipeline-visual::before {
  position: absolute;
  right: 4%;
  left: 4%;
  height: 1px;
  background: rgba(217, 226, 205, 0.3);
  content: "";
}

.pipeline-visual span {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 4px solid var(--forest-950);
  border-radius: 50%;
  background: var(--sage-300);
  box-shadow: 0 0 0 1px rgba(217, 226, 205, 0.35);
}

.pipeline-visual span:nth-child(-n + 3) {
  background: #8eb284;
}

.evidence-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 0 6px;
}

.evidence-line {
  width: 84%;
  height: 12px;
  border-radius: 99px;
  background: var(--sage-200);
}

.evidence-line.short {
  width: 61%;
}

.evidence-check {
  position: absolute;
  right: 4px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--sprout-500);
  font-size: 23px;
  font-weight: 800;
}

.card-label {
  margin: 0 0 10px;
  color: var(--leaf-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brief-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 31px;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.brief-card > p:last-child {
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.7;
}

.brief-card.featured > p:last-child {
  color: var(--sage-200);
}

.product-section {
  background: var(--canvas);
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1.12fr 0.58fr;
  align-items: end;
  gap: 80px;
}

.section-heading.split h2 {
  max-width: 760px;
}

.section-heading.split > p {
  margin: 0 0 5px;
}

.product-showcase {
  overflow: hidden;
  border: 1px solid rgba(26, 53, 32, 0.08);
  border-radius: 32px;
  background: var(--paper);
  box-shadow: 0 32px 100px rgba(26, 53, 32, 0.1);
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
}

.product-tab {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--ink-muted);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  text-align: left;
}

.product-tab span {
  font-size: 10px;
  letter-spacing: 0.1em;
  opacity: 0.55;
}

.product-tab:hover {
  color: var(--forest-950);
}

.product-tab.is-active {
  border-bottom-color: var(--sprout-500);
  color: var(--forest-950);
}

.product-panels {
  min-height: 670px;
}

.product-panel {
  display: grid;
  min-height: 670px;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: 44px;
  padding: 70px 9%;
  background:
    radial-gradient(circle at 81% 48%, rgba(217, 226, 205, 0.82), transparent 35%),
    var(--paper);
}

.product-panel[hidden] {
  display: none;
}

.panel-copy {
  max-width: 510px;
}

.panel-eyebrow {
  margin: 0 0 15px;
  color: var(--leaf-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.2vw, 58px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.panel-copy > p:not(.panel-eyebrow) {
  margin: 24px 0 0;
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--forest-800);
  font-size: 14px;
  font-weight: 650;
}

.check-list li::before {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-700);
  background: var(--sage-100);
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.product-visual {
  width: min(100%, 450px);
  min-height: 480px;
  justify-self: center;
  padding: 28px;
  border: 1px solid rgba(26, 53, 32, 0.1);
  border-radius: 28px;
  color: var(--forest-950);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 80px rgba(26, 53, 32, 0.13);
}

.visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--leaf-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.visual-topline i {
  color: var(--ink-muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.dashboard-visual > h4 {
  margin: 25px 0 20px;
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.metric-strip > div {
  padding: 13px;
  border-radius: 13px;
  background: var(--sage-100);
}

.metric-strip small,
.metric-strip strong {
  display: block;
}

.metric-strip small {
  margin-bottom: 4px;
  color: var(--ink-muted);
  font-size: 9px;
  font-weight: 700;
}

.metric-strip strong {
  font-size: 15px;
}

.outlook-card {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.outlook-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.outlook-label span {
  font-size: 11px;
  font-weight: 800;
}

.outlook-label small {
  color: var(--ink-muted);
  font-size: 9px;
}

.outlook-line {
  position: relative;
  display: flex;
  height: 74px;
  align-items: end;
  justify-content: space-between;
  margin-top: 12px;
}

.outlook-line::before {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.outlook-line span {
  position: relative;
  z-index: 1;
  width: 9px;
  border-radius: 99px 99px 3px 3px;
  background: var(--sprout-500);
}

.outlook-line span:nth-child(1) {
  height: 68px;
}

.outlook-line span:nth-child(2) {
  height: 61px;
}

.outlook-line span:nth-child(3) {
  height: 55px;
}

.outlook-line span:nth-child(4) {
  height: 47px;
}

.outlook-line span:nth-child(5) {
  height: 40px;
  background: #7fa377;
}

.outlook-line span:nth-child(6) {
  height: 32px;
  background: #97b390;
}

.outlook-line span:nth-child(7) {
  height: 25px;
  background: #adc4a7;
}

.decision-cue {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 14px;
  padding: 15px;
  border-radius: 15px;
  color: var(--paper);
  background: var(--forest-950);
}

.cue-mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-950);
  background: var(--sage-200);
  font-weight: 900;
}

.decision-cue small,
.decision-cue strong {
  display: block;
}

.decision-cue small {
  margin-bottom: 2px;
  color: #a8bea2;
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.decision-cue strong {
  font-size: 11px;
  line-height: 1.4;
}

.discover-visual {
  display: grid;
  align-content: start;
  gap: 12px;
  background:
    radial-gradient(circle at 100% 0%, var(--sage-100), transparent 42%),
    rgba(255, 255, 255, 0.94);
}

.discovery-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.discovery-item.is-featured {
  display: block;
  margin-top: 8px;
  padding: 22px;
}

.discovery-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: var(--leaf-600);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discovery-meta small {
  color: var(--ink-muted);
  font-size: 9px;
  letter-spacing: 0;
  text-transform: none;
}

.discovery-item h4 {
  margin: 27px 0 9px;
  font-family: var(--serif);
  font-size: 29px;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.discovery-item p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 11px;
}

.evidence-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  padding: 6px 9px;
  border-radius: 99px;
  color: var(--leaf-600);
  background: var(--sage-100);
  font-size: 9px;
  font-weight: 750;
}

.evidence-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sprout-500);
}

.discovery-item > div > small,
.discovery-item > div > strong {
  display: block;
}

.discovery-item > div > small {
  margin-bottom: 3px;
  color: var(--ink-muted);
  font-size: 9px;
  text-transform: uppercase;
}

.discovery-item > div > strong {
  font-size: 12px;
}

.discovery-item > span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-700);
  background: var(--sage-100);
  font-size: 13px;
  font-weight: 850;
}

.capital-visual {
  background: var(--forest-950);
  color: var(--canvas);
}

.capital-visual .visual-topline {
  border-color: rgba(217, 226, 205, 0.17);
  color: #a8bea2;
}

.capital-visual .visual-topline i {
  color: var(--sage-200);
}

.capital-target {
  padding: 29px 0;
}

.capital-target small,
.capital-target strong {
  display: block;
}

.capital-target small {
  color: #a8bea2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capital-target strong {
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 62px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.capital-target p {
  max-width: 310px;
  margin: 13px 0 0;
  color: var(--sage-200);
  font-size: 12px;
  line-height: 1.55;
}

.coverage-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 11px;
}

.coverage-row span {
  color: var(--sage-200);
}

.coverage-track {
  height: 9px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(217, 226, 205, 0.14);
}

.coverage-track span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: #8dae83;
}

.pipeline-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 28px;
}

.pipeline-row > div {
  padding: 15px 12px;
  border: 1px solid rgba(217, 226, 205, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.pipeline-row i {
  display: block;
  width: 7px;
  height: 7px;
  margin-bottom: 17px;
  border-radius: 50%;
  background: #8dae83;
}

.pipeline-row small,
.pipeline-row strong {
  display: block;
}

.pipeline-row small {
  color: #a8bea2;
  font-size: 9px;
}

.pipeline-row strong {
  margin-top: 2px;
  font-size: 19px;
}

.roadmap-visual {
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
    var(--sage-100);
}

.roadmap-path {
  position: relative;
  display: grid;
  gap: 11px;
  margin-top: 24px;
}

.roadmap-path::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 20px;
  width: 1px;
  background: var(--sage-300);
  content: "";
}

.roadmap-step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
}

.roadmap-step > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--sage-300);
  border-radius: 50%;
  color: var(--leaf-600);
  background: var(--paper);
  font-size: 10px;
  font-weight: 850;
}

.roadmap-step.is-complete > span {
  color: var(--paper);
  border-color: var(--sprout-500);
  background: var(--sprout-500);
}

.roadmap-step.is-current {
  border-color: rgba(43, 89, 51, 0.35);
  box-shadow: 0 12px 32px rgba(26, 53, 32, 0.08);
}

.roadmap-step.is-current > span {
  color: var(--paper);
  border-color: var(--forest-700);
  background: var(--forest-700);
}

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

.roadmap-step small {
  margin-bottom: 3px;
  color: var(--leaf-600);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roadmap-step strong {
  font-size: 12px;
  line-height: 1.35;
}

.roadmap-foot {
  margin-top: 18px;
  color: var(--ink-muted);
  font-size: 10px;
  text-align: center;
}

.discover-section {
  background: #f8f9f4;
}

.discover-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 110px;
}

.discover-copy h2 {
  max-width: 650px;
}

.discover-copy > p {
  max-width: 610px;
  margin: 28px 0 0;
}

.source-key {
  display: grid;
  gap: 15px;
  margin-top: 38px;
}

.source-key > div {
  display: grid;
  grid-template-columns: 10px 78px 1fr;
  align-items: center;
  gap: 11px;
}

.source-key strong {
  font-size: 13px;
}

.source-key small {
  color: var(--ink-muted);
  font-size: 12px;
}

.source-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.source-dot.verified {
  background: var(--sprout-500);
}

.source-dot.reported {
  background: var(--warning);
}

.source-dot.inferred {
  border: 1px solid var(--leaf-600);
  background: transparent;
}

.signal-stack {
  position: relative;
  min-height: 530px;
}

.signal-stack::before {
  position: absolute;
  top: -70px;
  right: -90px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: var(--sage-100);
  content: "";
}

.signal-card {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 22px 70px rgba(26, 53, 32, 0.1);
}

.signal-primary {
  top: 20px;
  left: 0;
  width: min(100%, 520px);
  padding: 34px;
  border-radius: 26px;
}

.signal-topline,
.signal-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 700;
}

.signal-type {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--leaf-600);
  background: var(--sage-100);
  text-transform: uppercase;
}

.signal-primary h3 {
  max-width: 430px;
  margin: 32px 0 0;
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.signal-primary > p {
  margin: 19px 0 29px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.7;
}

.signal-meta {
  justify-content: flex-start;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.signal-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.signal-secondary {
  right: -12px;
  bottom: 56px;
  display: flex;
  width: 335px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
}

.signal-tertiary {
  bottom: -5px;
  left: 38px;
  display: flex;
  width: 310px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border-radius: 18px;
}

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

.signal-secondary small,
.signal-tertiary small {
  margin-bottom: 3px;
  color: var(--ink-muted);
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
}

.signal-secondary strong,
.signal-tertiary strong {
  font-size: 12px;
  line-height: 1.35;
}

.signal-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  color: var(--paper);
  background: var(--leaf-600);
}

.signal-icon svg {
  width: 20px;
  height: 20px;
}

.arrow-up {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-700);
  background: var(--sage-100);
  font-weight: 800;
}

.principles-section {
  color: var(--canvas);
  background:
    radial-gradient(circle at 85% 18%, rgba(80, 128, 70, 0.2), transparent 26%),
    var(--forest-950);
}

.kicker.light {
  color: #9eb895;
}

.principles-intro {
  display: grid;
  max-width: 850px;
  grid-template-columns: 1fr;
  margin-bottom: 70px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(217, 226, 205, 0.16);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(217, 226, 205, 0.15);
}

.principle {
  min-height: 330px;
  padding: 34px;
  background: var(--forest-950);
}

.principle > span {
  color: #9eb895;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.principle h3 {
  max-width: 270px;
  margin: 82px 0 0;
  font-family: var(--serif);
  font-size: 29px;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.principle p {
  margin: 18px 0 0;
  color: var(--sage-200);
  font-size: 14px;
  line-height: 1.7;
}

.privacy-band {
  display: grid;
  grid-template-columns: 80px 1fr 1.25fr;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
  padding: 28px;
  border: 1px solid rgba(217, 226, 205, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.privacy-mark img {
  border-radius: 20px;
}

.privacy-band small,
.privacy-band strong {
  display: block;
}

.privacy-band small {
  margin-bottom: 4px;
  color: #9eb895;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-band strong {
  font-family: var(--serif);
  font-size: 25px;
}

.privacy-band p {
  margin: 0;
  color: var(--sage-200);
  font-size: 13px;
  line-height: 1.7;
}

.early-access-section {
  position: relative;
  overflow: hidden;
  background: var(--canvas);
}

.early-access-card {
  position: relative;
  padding: 92px 8%;
  overflow: hidden;
  border-radius: 34px;
  background: var(--sage-100);
  text-align: center;
}

.early-access-card::before {
  position: absolute;
  top: -160px;
  left: 50%;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(66, 112, 73, 0.12);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.early-access-card > *:not(.sprout-shape) {
  position: relative;
  z-index: 2;
}

.early-access-card h2 {
  max-width: 800px;
  margin-inline: auto;
}

.early-access-card > p:not(.kicker, .availability) {
  max-width: 630px;
  margin: 25px auto 0;
}

.early-access-card .button {
  margin-top: 32px;
}

.availability {
  margin: 16px 0 0;
  color: var(--ink-muted);
  font-size: 12px;
}

.sprout-shape {
  position: absolute;
  right: -12px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  opacity: 0.14;
  transform: rotate(-8deg);
}

.sprout-leaf {
  position: absolute;
  top: 25px;
  left: 70px;
  width: 120px;
  height: 80px;
  border-radius: 100% 0 100% 0;
  background: var(--forest-700);
  transform: rotate(27deg);
}

.sprout-stem {
  position: absolute;
  top: 95px;
  left: 119px;
  width: 12px;
  height: 170px;
  border-radius: 99px;
  background: var(--forest-700);
  transform: rotate(-18deg);
}

.site-footer {
  padding: 0 0 44px;
  background: var(--canvas);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.footer-brand span {
  font-size: 24px;
}

.footer-grid > p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 12px;
}

.footer-grid > p:nth-child(2) {
  text-align: left;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
}

.footer-links a {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: var(--forest-700);
}

.copyright {
  text-align: right;
}

.legal-nav a[aria-current="page"]:not(.nav-cta) {
  color: var(--sprout-500);
}

.legal-page {
  min-height: 100vh;
  padding: 152px 0 104px;
  background:
    radial-gradient(circle at 86% 8%, rgba(217, 226, 205, 0.7), transparent 25%),
    linear-gradient(180deg, #f8f9f4 0%, var(--canvas) 42%);
}

.legal-shell {
  width: min(980px, calc(100% - 48px));
  margin-inline: auto;
}

.legal-hero {
  max-width: 820px;
  padding-bottom: 54px;
}

.legal-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 86px);
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
}

.legal-hero > p:not(.kicker) {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.7;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  color: var(--leaf-600);
  font-size: 12px;
  font-weight: 750;
}

.legal-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-meta span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sprout-500);
  content: "";
}

.legal-notice {
  margin-bottom: 62px;
  padding: 26px 28px;
  border: 1px solid rgba(26, 53, 32, 0.12);
  border-radius: 22px;
  background: var(--forest-950);
  box-shadow: 0 20px 60px rgba(26, 53, 32, 0.1);
}

.legal-notice strong {
  display: block;
  margin-bottom: 7px;
  color: #a8bea2;
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-notice p {
  margin: 0;
  color: var(--sage-200);
  font-size: 15px;
  line-height: 1.7;
}

.legal-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: start;
  gap: 66px;
}

.legal-toc {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 9px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.legal-toc strong {
  margin-bottom: 5px;
  color: var(--forest-950);
  font-size: 12px;
}

.legal-toc a {
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 650;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--forest-700);
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  padding: 0 0 44px;
  scroll-margin-top: 112px;
}

.legal-content section + section {
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.legal-content p,
.legal-content li {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.82;
}

.legal-content p {
  margin: 0;
}

.legal-content p + p,
.legal-content ul + p {
  margin-top: 18px;
}

.legal-content ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.legal-content a {
  color: var(--forest-700);
  font-weight: 700;
  text-underline-offset: 3px;
}

.legal-emphasis {
  padding: 20px;
  border-left: 3px solid var(--sprout-500);
  border-radius: 0 14px 14px 0;
  color: var(--forest-900) !important;
  background: rgba(225, 232, 214, 0.66);
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.inline-contact {
  display: inline-grid;
  gap: 2px;
  margin: 15px 0;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.inline-contact strong {
  color: var(--forest-950);
  font-size: 14px;
}

.inline-contact a {
  font-size: 14px;
}

.legal-footer {
  padding-top: 36px;
}

.contact-hero {
  max-width: 760px;
}

.contact-action {
  margin-bottom: 56px;
}

.contact-email-button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.contact-guidance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 112px;
}

.contact-guidance article {
  min-height: 235px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
}

.contact-guidance article > span {
  color: var(--leaf-600);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.contact-guidance h3 {
  margin: 50px 0 10px;
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.contact-guidance p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.7;
}

.faq-section {
  padding-top: 20px;
  scroll-margin-top: 100px;
}

.faq-heading {
  margin-bottom: 42px;
}

.faq-heading h2 {
  font-size: clamp(42px, 5vw, 62px);
}

.faq-list {
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  color: var(--forest-950);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 2px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-700);
  background: var(--sage-100);
  content: "+";
  font-family: var(--sans);
  font-size: 19px;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin: 0 0 25px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.75;
}

.faq-list summary:focus-visible {
  padding-left: 12px;
  border-radius: 8px;
  outline: none;
  background: rgba(225, 232, 214, 0.58);
  box-shadow: inset 3px 0 0 var(--sprout-500);
}

.contact-links {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 88px;
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
}

.contact-links h2 {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: -0.035em;
}

.contact-links > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .site-nav {
    gap: 20px;
  }

  .hero {
    padding-top: 150px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(48px, 5.7vw, 64px);
  }

  .hero-composition {
    min-height: 460px;
  }

  .hero-composition::before {
    width: 410px;
    height: 410px;
  }

  .layer-outer {
    width: 360px;
    height: 360px;
  }

  .layer-middle {
    width: 274px;
    height: 274px;
  }

  .layer-inner {
    width: 188px;
    height: 188px;
  }

  .hero-avatar-orb {
    width: 88px;
    height: 88px;
  }

  .brief-card {
    padding: 26px;
  }

  .brief-card h3 {
    font-size: 27px;
  }

  .product-panel {
    grid-template-columns: minmax(0, 1fr) 320px;
    padding-inline: 6%;
  }

  .product-visual {
    min-height: 450px;
    padding: 22px;
  }

  .discover-grid {
    gap: 56px;
  }

  .signal-primary {
    width: 92%;
  }

  .signal-secondary {
    right: 0;
  }

  .principle {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: auto minmax(150px, 1fr) auto;
  }

  .copyright {
    grid-column: 2 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .header-inner {
    min-height: 72px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
    cursor: pointer;
  }

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

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

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 80px 9vw;
    background: rgba(240, 243, 232, 0.98);
    opacity: 0;
    transform: translateY(-14px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a {
    font-family: var(--serif);
    font-size: clamp(30px, 8vw, 44px);
    letter-spacing: -0.035em;
    line-height: 1.15;
  }

  .site-nav .nav-cta {
    margin-top: 18px;
    padding: 16px 21px;
    font-family: var(--sans);
    font-size: 14px;
  }

  .hero {
    min-height: 0;
    padding: 118px 0 44px;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-copy {
    max-width: 660px;
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(40px, 7vw, 52px);
  }

  .hero-composition {
    width: min(100%, 520px);
    min-height: 370px;
    justify-self: center;
  }

  .hero-composition::before {
    width: min(78vw, 370px);
    height: min(78vw, 370px);
  }

  .hero-foot {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    text-align: center;
  }

  .hero-rule {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading.split,
  .discover-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.split {
    gap: 26px;
  }

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

  .brief-card {
    min-height: 0;
  }

  .brief-card.featured {
    transform: none;
  }

  .mini-chart,
  .pipeline-visual,
  .evidence-visual {
    height: 92px;
    margin: 28px 0;
  }

  .product-showcase {
    border-radius: 24px;
  }

  .product-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }

  .product-tab {
    min-height: 62px;
    padding: 10px 14px;
  }

  .product-panels {
    min-height: 0;
  }

  .product-panel {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 48px 6%;
    overflow: hidden;
    text-align: left;
  }

  .product-visual {
    width: 100%;
    max-width: 520px;
    min-height: 0;
  }

  .discover-grid {
    gap: 64px;
  }

  .signal-stack {
    display: grid;
    width: min(100%, 560px);
    min-height: 0;
    gap: 12px;
    margin-inline: auto;
  }

  .signal-stack::before {
    display: none;
  }

  .signal-card,
  .signal-primary,
  .signal-secondary,
  .signal-tertiary {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .signal-secondary,
  .signal-tertiary {
    padding: 16px;
  }

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

  .principle {
    min-height: 0;
  }

  .principle h3 {
    max-width: 520px;
    margin-top: 42px;
  }

  .privacy-band {
    grid-template-columns: 64px 1fr;
  }

  .privacy-mark img {
    width: 64px;
    height: 64px;
    border-radius: 17px;
  }

  .privacy-band p {
    grid-column: 1 / -1;
  }

  .legal-page {
    padding: 118px 0 78px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-toc strong {
    grid-column: 1 / -1;
  }

  .contact-guidance {
    grid-template-columns: 1fr;
    margin-bottom: 80px;
  }

  .contact-guidance article {
    min-height: 0;
  }

  .contact-guidance h3 {
    margin-top: 30px;
  }

  .contact-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .header-inner {
    min-height: 68px;
  }

  .hero {
    padding: 104px 0 36px;
  }

  .eyebrow {
    max-width: 290px;
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.14em;
    line-height: 1.5;
  }

  .hero h1 {
    max-width: 500px;
    font-size: clamp(36px, 10.5vw, 43px);
    line-height: 1;
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
  }

  .trust-list {
    gap: 8px 16px;
    margin-top: 24px;
    font-size: 12px;
  }

  .hero-composition {
    width: 100%;
    min-height: 290px;
    margin-top: 6px;
  }

  .hero-composition::before {
    width: min(86vw, 300px);
    height: min(86vw, 300px);
  }

  .layer-outer {
    width: min(78vw, 272px);
    height: min(78vw, 272px);
  }

  .layer-middle {
    width: min(59vw, 206px);
    height: min(59vw, 206px);
  }

  .layer-inner {
    width: min(41vw, 144px);
    height: min(41vw, 144px);
  }

  .hero-avatar-orb {
    width: 72px;
    height: 72px;
    padding: 6px;
  }

  .hero-foot {
    gap: 8px;
    margin-top: 30px;
    padding-top: 24px;
    font-size: 12px;
  }

  .product-panel {
    gap: 30px;
    padding: 38px 18px;
  }

  .product-visual {
    min-height: 0;
    padding: 18px;
    border-radius: 22px;
  }

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

  .metric-strip > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .metric-strip small {
    margin: 0;
  }

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

  .pipeline-row > div {
    display: grid;
    grid-template-columns: 10px 1fr auto;
    align-items: center;
    gap: 8px;
  }

  .pipeline-row i {
    margin: 0;
  }

  .pipeline-row strong {
    margin: 0;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .discover-copy h2,
  .principles-intro h2,
  .early-access-card h2 {
    font-size: clamp(36px, 10.5vw, 46px);
  }

  .panel-copy h3 {
    font-size: clamp(34px, 9.5vw, 42px);
  }

  .section-heading > p:not(.kicker),
  .discover-copy > p,
  .early-access-card > p:not(.kicker, .availability) {
    font-size: 16px;
  }

  .brief-card {
    min-height: 0;
    padding: 24px;
  }

  .source-key > div {
    grid-template-columns: 10px 1fr;
  }

  .source-key small {
    grid-column: 2;
  }

  .signal-stack {
    min-height: 0;
  }

  .signal-primary {
    width: 100%;
    padding: 24px;
  }

  .signal-primary h3 {
    font-size: 28px;
  }

  .privacy-band {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 22px;
  }

  .privacy-mark img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
  }

  .early-access-card {
    padding: 60px 20px;
    border-radius: 26px;
  }

  .early-access-card::before {
    display: none;
  }

  .legal-page {
    padding: 104px 0 62px;
  }

  .legal-shell {
    width: calc(100% - 32px);
  }

  .legal-hero {
    padding-bottom: 38px;
  }

  .legal-hero h1 {
    font-size: clamp(40px, 12vw, 48px);
  }

  .legal-hero > p:not(.kicker) {
    font-size: 16px;
  }

  .legal-notice {
    margin-bottom: 44px;
    padding: 22px;
  }

  .legal-layout {
    gap: 34px;
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }

  .legal-toc strong {
    grid-column: auto;
  }

  .legal-content section {
    padding-bottom: 34px;
  }

  .legal-content section + section {
    padding-top: 34px;
  }

  .legal-content h2 {
    font-size: 29px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 14px;
    line-height: 1.75;
  }

  .contact-email-button {
    width: 100%;
  }

  .contact-action {
    margin-bottom: 42px;
  }

  .contact-guidance {
    gap: 12px;
    margin-bottom: 68px;
  }

  .contact-guidance article {
    padding: 22px;
  }

  .faq-heading {
    margin-bottom: 30px;
  }

  .faq-list summary {
    padding: 20px 42px 20px 0;
    font-size: 20px;
  }

  .faq-list details p {
    font-size: 14px;
  }

  .contact-links {
    margin-top: 68px;
  }

  .contact-links > div:last-child {
    width: 100%;
    flex-direction: column;
  }

  .contact-links .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: left;
  }

  .footer-grid > p:nth-child(2),
  .copyright {
    text-align: left;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
