:root {
  --ink: #06100e;
  --ink-raised: #0a1714;
  --ink-soft: #10201c;
  --paper: #f1eee5;
  --paper-warm: #e8e1d2;
  --mint: #a0f7c7;
  --mint-strong: #49dfa2;
  --mint-dark: #0c7452;
  --cyan: #83e7e7;
  --amber: #ffbd68;
  --white: #f8f8f3;
  --muted-dark: #9aaba5;
  --muted-light: #58645f;
  --line-dark: rgba(225, 255, 242, 0.13);
  --line-strong: rgba(160, 247, 199, 0.34);
  --line-light: rgba(6, 16, 14, 0.16);
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --sans: Inter, Aptos, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --max: 1280px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--mint);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 11px 16px;
  border-radius: 4px;
  background: var(--mint);
  color: var(--ink);
  font-weight: 750;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 22px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  min-height: 68px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(5, 15, 13, 0.62);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-size: 15px;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  color: var(--mint);
}

.brand-mark span {
  position: absolute;
  left: 1px;
  display: block;
  width: 23px;
  height: 8px;
  border: 1.4px solid currentColor;
  border-radius: 2px;
  background: var(--ink);
}

.brand-mark span:first-child {
  top: 0;
}

.brand-mark span:nth-child(2) {
  top: 8px;
  left: 4px;
  width: 20px;
}

.brand-mark span:nth-child(3) {
  top: 16px;
  left: 7px;
  width: 17px;
}

nav {
  display: flex;
  gap: 31px;
  color: #9baba6;
  font-size: 13px;
}

nav a,
body > footer a,
.text-link,
.source-links a {
  transition: color 160ms ease;
}

nav a:hover,
nav a:focus-visible,
body > footer a:hover,
body > footer a:focus-visible,
.source-links a:hover,
.source-links a:focus-visible {
  color: var(--mint);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  justify-self: end;
  padding: 10px 12px 10px 15px;
  border: 1px solid rgba(160, 247, 199, 0.38);
  border-radius: 6px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 720;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-cta i {
  font-style: normal;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  gap: clamp(50px, 6vw, 94px);
  min-height: 960px;
  padding: 168px max(24px, calc((100vw - var(--max)) / 2)) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 18%, rgba(74, 223, 162, 0.1), transparent 30%),
    radial-gradient(circle at 78% 20%, rgba(131, 231, 231, 0.075), transparent 26%),
    linear-gradient(135deg, #06110f 0%, #071410 52%, #05100e 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, black 0, rgba(0, 0, 0, 0.78) 66%, transparent 100%);
}

.hero-grid::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(6, 16, 14, 0.04), rgba(6, 16, 14, 0.68) 74%);
  content: "";
}

.hero-glow {
  position: absolute;
  border: 1px solid rgba(160, 247, 199, 0.11);
  border-radius: 50%;
  box-shadow: inset 0 0 90px rgba(73, 223, 162, 0.025);
  pointer-events: none;
}

.hero-glow::after {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 22px rgba(160, 247, 199, 0.8);
  content: "";
}

.hero-glow-one {
  top: -410px;
  right: -200px;
  width: 860px;
  height: 860px;
}

.hero-glow-one::after {
  bottom: 18%;
  left: 4.3%;
}

.hero-glow-two {
  right: 11%;
  bottom: -640px;
  width: 920px;
  height: 920px;
}

.hero-glow-two::after {
  top: 4.2%;
  right: 27%;
}

.hero-copy,
.hero-visual,
.hero-signals {
  position: relative;
  z-index: 2;
}

.hero-copy {
  align-self: center;
  max-width: 675px;
  padding-bottom: 128px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  flex: 0 0 auto;
  width: 22px;
  height: 1px;
  background: currentColor;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: clamp(53px, 4.85vw, 74px);
  font-weight: 540;
  line-height: 0.95;
  letter-spacing: -0.068em;
}

h1 em,
h2 em,
.cta-section h2 em {
  color: var(--mint);
  font-family: var(--serif);
  font-weight: 400;
}

h1 em {
  display: block;
  margin-top: 6px;
  font-size: 0.92em;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 33px;
  color: #bac8c3;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.63;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 37px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 53px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--mint);
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(73, 223, 162, 0.12);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #c1ffdf;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(160, 247, 199, 0.5);
  background: rgba(160, 247, 199, 0.06);
}

.assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin: 0;
  padding: 0;
  color: #8b9c96;
  font-size: 12px;
  list-style: none;
}

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

.assurances span {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
}

.hero-visual {
  align-self: center;
  margin-bottom: 128px;
  padding: 22px;
  border: 1px solid rgba(230, 255, 244, 0.16);
  border-radius: 12px;
  background:
    radial-gradient(circle at 85% 8%, rgba(131, 231, 231, 0.09), transparent 30%),
    rgba(5, 14, 12, 0.76);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(22px);
}

.visual-topline,
.family-map-label,
.visual-footer,
.archive-core,
.model-node {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.visual-topline {
  margin-bottom: 20px;
  color: #96a6a1;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compression-figure {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    rgba(2, 8, 7, 0.46);
  background-size: 32px 32px;
}

.footprint-chart {
  display: grid;
  gap: 18px;
}

.footprint-scale {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  color: #72837d;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footprint-scale i {
  height: 1px;
  background: linear-gradient(90deg, rgba(160, 247, 199, 0.16), rgba(160, 247, 199, 0.45));
}

.footprint-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 9px;
  font-family: var(--mono);
  font-size: 12px;
}

.footprint-label span {
  color: #a4b5af;
}

.footprint-label strong {
  flex: 0 0 auto;
  color: #edf6f2;
  font-size: 13px;
  font-weight: 500;
}

.footprint-track {
  position: relative;
  height: 62px;
  overflow: hidden;
  border: 1px solid rgba(226, 247, 238, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.025);
}

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

.footprint-before > i {
  position: relative;
  border-right: 1px solid rgba(226, 247, 238, 0.12);
  background: linear-gradient(180deg, rgba(196, 211, 205, 0.12), rgba(196, 211, 205, 0.045));
  font-style: normal;
}

.footprint-before > i:last-child {
  border-right: 0;
}

.footprint-before > i span {
  position: absolute;
  right: 8px;
  bottom: 7px;
  color: #64746e;
  font-family: var(--mono);
  font-size: 10px;
}

.footprint-row small {
  display: block;
  margin-top: 8px;
  color: #7f908a;
  font-size: 11px;
  line-height: 1.45;
}

.footprint-conversion {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 20px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footprint-conversion i {
  font-size: 15px;
  font-style: normal;
}

.footprint-result .footprint-track {
  border-color: rgba(160, 247, 199, 0.28);
  border-style: dashed;
  background: rgba(160, 247, 199, 0.025);
}

.footprint-used {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  width: 28.8%;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(160, 247, 199, 0.75);
  background: linear-gradient(110deg, rgba(73, 223, 162, 0.52), rgba(131, 231, 231, 0.28));
  box-shadow: 10px 0 34px rgba(73, 223, 162, 0.12), inset 0 1px rgba(255, 255, 255, 0.12);
}

.footprint-used span {
  color: #e8fff4;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
}

.footprint-saved {
  position: absolute;
  inset: 0 0 0 28.8%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--mint);
}

.footprint-saved strong {
  font-size: 25px;
  font-weight: 560;
  letter-spacing: -0.045em;
}

.footprint-saved span {
  max-width: 54px;
  color: #a0b6ad;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.15;
  text-transform: uppercase;
}

.storage-card-head,
.storage-after-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.storage-card-head {
  margin-bottom: 13px;
  color: #71817c;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.storage-card-head strong {
  color: #c5d0cc;
  font-size: 11px;
  font-weight: 500;
}

.storage-copies {
  display: grid;
  gap: 5px;
}

.storage-copies i {
  display: grid;
  grid-template-columns: 1fr auto 0.52fr;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.025);
  color: #8b9b95;
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
}

.storage-copies i span:first-child {
  position: relative;
}

.storage-copies i span:first-child::after {
  position: absolute;
  top: 50%;
  right: 10px;
  left: 38px;
  height: 1px;
  background: rgba(160, 247, 199, 0.13);
  content: "";
}

.storage-copies i b {
  padding-inline: 10px;
  color: #5f716a;
  font-weight: 400;
}

.storage-copies .base-only {
  grid-template-columns: 1fr;
  width: 65%;
  border-color: rgba(160, 247, 199, 0.18);
}

.storage-conversion {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 51px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.storage-conversion i {
  font-size: 16px;
  font-style: normal;
}

.storage-after-card {
  min-height: 92px;
  padding: 0 16px;
  border: 1px solid rgba(160, 247, 199, 0.48);
  border-radius: 5px;
  background: linear-gradient(110deg, rgba(73, 223, 162, 0.17), rgba(131, 231, 231, 0.055));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04), 0 0 35px rgba(73, 223, 162, 0.05);
}

.storage-after-card > div {
  display: grid;
  gap: 7px;
}

.storage-after-card span {
  color: #a4b5af;
  font-size: 12px;
}

.storage-after-card strong {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 500;
}

.storage-after-card > b {
  color: var(--mint);
  font-size: clamp(27px, 3vw, 35px);
  font-weight: 560;
  letter-spacing: -0.055em;
}

.live-dot {
  color: var(--mint);
}

.live-dot::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--mint-strong);
  box-shadow: 0 0 12px var(--mint-strong);
  content: "";
  animation: pulse 2.4s ease-in-out infinite;
}

.family-map {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    rgba(2, 8, 7, 0.45);
  background-size: 32px 32px;
}

.family-map-label {
  margin-bottom: 14px;
  color: #71817c;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.family-map-label strong {
  color: #aebbb7;
  font-size: 9px;
  font-weight: 500;
}

.model-nodes {
  position: relative;
  display: grid;
  gap: 5px;
  padding-left: 14px;
}

.model-nodes::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 3px;
  width: 1px;
  background: linear-gradient(var(--mint), rgba(160, 247, 199, 0.15));
  content: "";
}

.model-node {
  position: relative;
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.025);
  color: #879792;
  font-family: var(--mono);
  font-size: 8px;
  animation: node-in 700ms both;
}

.model-node:nth-child(2) { animation-delay: 60ms; }
.model-node:nth-child(3) { animation-delay: 120ms; }
.model-node:nth-child(4) { animation-delay: 180ms; }
.model-node:nth-child(5) { animation-delay: 240ms; }

.model-node i {
  position: absolute;
  top: 50%;
  left: -14px;
  width: 8px;
  height: 1px;
  background: rgba(160, 247, 199, 0.65);
}

.model-node b {
  color: #cbd4d1;
  font-weight: 500;
}

.node-four { margin-inline: 2px; }
.node-three { margin-inline: 4px; }
.node-two { margin-inline: 6px; }
.node-one { margin-inline: 8px; }

.archive-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 17px 0;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.archive-flow i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--mint), transparent);
}

.archive-core {
  position: relative;
  min-height: 92px;
  padding: 0 16px;
  overflow: hidden;
  border: 1px solid rgba(160, 247, 199, 0.47);
  border-radius: 5px;
  background: linear-gradient(110deg, rgba(73, 223, 162, 0.16), rgba(131, 231, 231, 0.06));
}

.archive-core > div:not(.core-orbit) {
  display: grid;
  gap: 7px;
}

.archive-core span {
  color: #a2b4ae;
  font-size: 9px;
}

.archive-core strong {
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 500;
}

.archive-core > b {
  color: var(--mint);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 560;
  letter-spacing: -0.055em;
}

.core-orbit {
  position: absolute;
  top: 50%;
  right: 17%;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(160, 247, 199, 0.08);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.core-orbit i {
  position: absolute;
  border: 1px solid rgba(160, 247, 199, 0.08);
  border-radius: 50%;
}

.core-orbit i:first-child { inset: 28px; }
.core-orbit i:nth-child(2) { inset: 55px; }
.core-orbit i:last-child {
  top: 49%;
  left: -3px;
  width: 6px;
  height: 6px;
  border: 0;
  background: var(--mint);
  box-shadow: 0 0 14px var(--mint);
}

.visual-footer {
  margin-top: 17px;
  color: #8a9b95;
  font-family: var(--mono);
  font-size: 11px;
}

.visual-footer span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
}

.visual-footer i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
}

.hero-signals {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  align-self: end;
  margin: 0 calc(-1 * max(24px, calc((100vw - var(--max)) / 2)));
  border-top: 1px solid var(--line-dark);
  background: rgba(4, 12, 10, 0.68);
  backdrop-filter: blur(18px);
}

.hero-signals article {
  min-height: 176px;
  margin: 0;
  padding: 25px clamp(24px, 3vw, 48px);
  border-right: 1px solid var(--line-dark);
}

.hero-signals article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 8px 20px;
}

.hero-signals article:last-child {
  border-right: 0;
}

.hero-signals article > span {
  grid-column: 1 / -1;
  color: #879891;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-signals strong {
  color: var(--mint);
  font-size: clamp(26px, 2.6vw, 39px);
  font-weight: 540;
  letter-spacing: -0.055em;
}

.hero-signals small {
  max-width: 235px;
  padding-bottom: 4px;
  color: #899a94;
  font-size: 12px;
  line-height: 1.45;
}

.hero-signals small b {
  display: block;
  margin-bottom: 2px;
  color: #c0cdc8;
  font-size: 13px;
  font-weight: 700;
}

.hero-signals small i {
  display: block;
  margin-top: 5px;
  color: #84968f;
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
}

.evidence-section,
.landscape-section,
.product-section {
  position: relative;
  padding: 142px max(24px, calc((100vw - var(--max)) / 2));
}

.why-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: end;
  padding: 133px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--paper);
  color: var(--ink);
}

.why-section .section-index {
  color: #7c857f;
}

.why-section .eyebrow {
  color: var(--mint-dark);
}

.why-section h2 {
  max-width: 780px;
}

.why-section h2 em {
  color: var(--mint-dark);
}

.why-section > p {
  margin-bottom: 1px;
  color: var(--muted-light);
  font-size: 15px;
  line-height: 1.76;
}

.section-index {
  position: absolute;
  top: 58px;
  right: max(24px, calc((100vw - var(--max)) / 2));
  color: #73867e;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-section {
  background:
    radial-gradient(circle at 100% 10%, rgba(255, 189, 104, 0.065), transparent 32%),
    #0d1815;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  column-gap: clamp(55px, 8vw, 120px);
  margin-bottom: 72px;
}

.section-heading .eyebrow {
  grid-column: 1;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(43px, 5vw, 69px);
  font-weight: 530;
  line-height: 1.01;
  letter-spacing: -0.06em;
}

.section-heading h2 {
  grid-column: 1;
  max-width: 760px;
}

.section-heading h2 em,
.landscape-heading h2 em,
.method-intro h2 em {
  font-style: italic;
}

.section-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 500px;
  margin-bottom: 1px;
  color: #9dad98;
  font-size: 15px;
  line-height: 1.75;
}

.comparison-card {
  padding: clamp(28px, 4.2vw, 57px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    rgba(3, 10, 8, 0.5);
  background-size: 44px 44px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.16);
}

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

.mono-label {
  color: var(--amber);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.09em;
}

.comparison-head h3 {
  margin: 10px 0 0;
  font-size: clamp(23px, 2.5vw, 31px);
  font-weight: 580;
  letter-spacing: -0.045em;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(160, 247, 199, 0.36);
  border-radius: 999px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.status-chip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
}

.bars {
  display: grid;
  gap: 27px;
}

.bar-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 32px;
}

.bar-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 12px;
}

.bar-copy span {
  color: #9ca9a5;
  font-size: 13px;
}

.bar-copy b {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
}

.bar-track {
  position: relative;
  height: 30px;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 25% 100%;
  background-color: rgba(255, 255, 255, 0.025);
}

.bar {
  position: relative;
  display: block;
  width: var(--width);
  height: 100%;
  transform-origin: left;
  animation: bar-grow 900ms 160ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.bar-source {
  background: #51605b;
}

.bar-cdc {
  background:
    radial-gradient(rgba(7, 16, 14, 0.28) 0.8px, transparent 0.8px),
    var(--amber);
  background-size: 5px 5px;
}

.bar-ta {
  overflow: hidden;
  background: linear-gradient(90deg, var(--mint-strong), var(--cyan));
  box-shadow: 0 0 26px rgba(73, 223, 162, 0.2);
}

.bar-ta i {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.35), transparent 65%);
  transform: translateX(-130%);
  animation: scan 4s 1.1s infinite ease-in-out;
}

.featured-row .bar-copy b,
.featured-row .bar-copy span {
  color: var(--mint);
}

.comparison-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 59px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.comparison-stats > div {
  display: grid;
  gap: 8px;
  padding: 25px 20px;
  border-right: 1px solid var(--line-dark);
}

.comparison-stats > div:first-child {
  padding-left: 0;
}

.comparison-stats > div:last-child {
  border-right: 0;
}

.comparison-stats span {
  color: #788982;
  font-family: var(--mono);
  font-size: 11px;
}

.comparison-stats strong {
  font-size: 23px;
  font-weight: 550;
  letter-spacing: -0.04em;
}

.comparison-stats > div:first-child strong {
  color: var(--mint);
}

.fine-print {
  max-width: 850px;
  margin: 17px 0 0;
  color: #81928c;
  font-size: 12px;
  line-height: 1.65;
}

.landscape-section {
  background:
    radial-gradient(circle at 82% 9%, rgba(131, 231, 231, 0.075), transparent 30%),
    #07120f;
}

.landscape-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: end;
  margin-bottom: 74px;
}

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

.landscape-heading > p {
  margin-bottom: 1px;
  color: #94a49f;
  font-size: 15px;
  line-height: 1.75;
}

.direct-benchmark-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  min-width: 0;
}

.direct-panel {
  min-width: 0;
  padding: clamp(24px, 2.7vw, 35px);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: rgba(2, 8, 6, 0.52);
  transition: border-color 220ms ease, transform 220ms ease;
}

.direct-panel:hover {
  border-color: rgba(160, 247, 199, 0.27);
  transform: translateY(-3px);
}

.direct-panel header {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: end;
  min-height: auto;
  padding-bottom: 24px;
}

.direct-panel header > * {
  min-width: 0;
}

.direct-panel header div span {
  color: var(--amber);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.direct-panel h3 {
  margin: 7px 0 0;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 580;
  letter-spacing: -0.045em;
}

.direct-panel header p {
  margin: 0;
  color: #758680;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.55;
  text-align: right;
}

.direct-scale {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-left: 154px;
  padding: 10px 0;
  border-top: 1px solid var(--line-dark);
  color: #758881;
  font-family: var(--mono);
  font-size: 11px;
}

.direct-scale span:last-child {
  text-align: right;
}

.direct-row {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 19px;
  align-items: center;
  min-height: 58px;
}

.direct-row > span {
  color: #96a69f;
  font-size: 11px;
  line-height: 1.35;
}

.direct-row > i {
  min-width: 0;
  height: 31px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 33.333% 100%;
  background-color: rgba(255, 255, 255, 0.018);
  font-style: normal;
}

.direct-row > i > b {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: var(--stored);
  min-width: 65px;
  height: 100%;
  padding-right: 7px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}

.direct-raw { background: #96a19c; }
.direct-zstd { background: #c8bba5; }
.direct-cdc {
  background:
    radial-gradient(rgba(7, 16, 14, 0.22) 0.7px, transparent 0.7px),
    #dfc297;
  background-size: 5px 5px;
}
.direct-zip,
.direct-zip-audit {
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 5px, rgba(7, 16, 14, 0.12) 5px, rgba(7, 16, 14, 0.12) 6px),
    #c7d0ac;
}
.direct-zip-audit { opacity: 0.78; }
.direct-ta {
  background: linear-gradient(90deg, var(--mint-strong), var(--cyan));
  box-shadow: 0 0 20px rgba(73, 223, 162, 0.16);
}

.winner-row > span {
  color: var(--mint);
  font-weight: 700;
}

.direct-panel footer {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(160, 247, 199, 0.2);
}

.direct-panel footer strong {
  color: var(--mint);
  font-size: 20px;
  font-weight: 620;
}

.direct-panel footer span {
  color: #758680;
  font-size: 11px;
}

.landscape-foot {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  margin-top: 31px;
}

.landscape-caveat {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 20px;
}

.landscape-caveat span,
.source-links > span {
  color: var(--amber);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.landscape-caveat p {
  margin: 0;
  color: #788a83;
  font-size: 12px;
  line-height: 1.65;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 10px 14px;
}

.source-links > span {
  width: 100%;
}

.source-links a {
  color: #abb9b4;
  font-size: 11px;
  text-decoration: underline;
  text-decoration-color: rgba(171, 185, 180, 0.34);
  text-underline-offset: 4px;
}

.benchmark-status {
  margin: 27px 0 0;
  color: #74867f;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.6;
}

.benchmark-status code {
  color: #73867e;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(70px, 10vw, 155px);
  padding: 143px max(24px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 5% 100%, rgba(73, 223, 162, 0.17), transparent 32%),
    var(--paper);
  color: var(--ink);
}

.method-section .eyebrow {
  color: var(--mint-dark);
}

.method-intro h2 {
  margin-bottom: 28px;
  font-size: clamp(42px, 4.5vw, 63px);
}

.method-intro h2 em {
  color: var(--mint-dark);
}

.method-intro > p {
  margin-bottom: 28px;
  color: var(--muted-light);
  font-size: 15px;
  line-height: 1.76;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: #0c674b;
  font-size: 13px;
  font-weight: 750;
}

.text-link:hover,
.text-link:focus-visible {
  color: #063f2e;
}

.baseline-ledger {
  align-self: center;
  border-top: 1px solid var(--line-light);
}

.ledger-head,
.ledger-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(300px, 1.2fr);
  gap: 28px;
  align-items: center;
}

.ledger-head {
  padding: 14px 0;
  color: #65706b;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ledger-row {
  min-height: 88px;
  border-top: 1px solid var(--line-light);
}

.ledger-row > span {
  display: grid;
  gap: 5px;
}

.ledger-row b {
  font-size: 14px;
}

.ledger-row small {
  color: #65716c;
  font-size: 12px;
}

.ledger-row strong {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 560;
  text-align: right;
  white-space: nowrap;
}

.ledger-measure {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px;
  gap: 14px;
  align-items: center;
}

.ledger-track {
  position: relative;
  height: 34px;
  overflow: hidden;
  border: 1px solid rgba(4, 31, 23, 0.1);
  border-radius: 2px;
  background:
    linear-gradient(90deg, transparent 24.8%, rgba(4, 31, 23, 0.07) 25%, transparent 25.2%, transparent 49.8%, rgba(4, 31, 23, 0.07) 50%, transparent 50.2%, transparent 74.8%, rgba(4, 31, 23, 0.07) 75%, transparent 75.2%),
    rgba(4, 31, 23, 0.025);
  font-style: normal;
}

.ledger-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--size);
  border-right: 1px solid rgba(4, 31, 23, 0.18);
  background: rgba(43, 60, 54, 0.24);
  transform-origin: left;
  animation: bar-grow 0.9s var(--ease) both;
}

.gear-fill {
  background: rgba(75, 91, 84, 0.34);
}

.zip-fill {
  background: rgba(71, 118, 99, 0.32);
}

.ta-fill {
  border-right-color: rgba(8, 111, 76, 0.64);
  background: linear-gradient(90deg, rgba(24, 168, 112, 0.78), rgba(43, 201, 144, 0.56));
  box-shadow: 8px 0 25px rgba(22, 143, 98, 0.12);
}

.hero-metric strong {
  color: #8a4d20;
}

.accent-row {
  border-top-color: rgba(12, 116, 82, 0.32);
}

.accent-row > span b {
  color: var(--mint-dark);
}

.accent-row strong {
  color: var(--mint-dark);
}

.ledger-foot {
  display: grid;
  gap: 7px;
  padding-top: 16px;
  color: #65716c;
  font-size: 11px;
  line-height: 1.5;
}

.product-section {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.016) 0, rgba(255, 255, 255, 0.016) 1px, transparent 1px, transparent 18px),
    #07110f;
}

.product-heading {
  margin-bottom: 68px;
}

.platform-map {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr;
  align-items: center;
  margin-bottom: 55px;
  padding: 34px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
}

.platform-step,
.platform-core {
  display: grid;
  gap: 7px;
  min-height: 104px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(3, 9, 8, 0.48);
}

.platform-core {
  border-color: rgba(160, 247, 199, 0.4);
  background: linear-gradient(135deg, rgba(73, 223, 162, 0.12), rgba(131, 231, 231, 0.04));
  box-shadow: 0 0 45px rgba(73, 223, 162, 0.06);
}

.platform-map > i {
  height: 1px;
  background: linear-gradient(90deg, rgba(160, 247, 199, 0.13), var(--mint), rgba(160, 247, 199, 0.13));
}

.platform-step > span,
.platform-core > span {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-step strong,
.platform-core strong {
  font-size: 19px;
  font-weight: 580;
}

.platform-step small,
.platform-core small {
  color: #768680;
  font-size: 12px;
  line-height: 1.5;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.product-grid article:nth-child(-n + 2) {
  grid-column: span 3;
}

.product-grid article:nth-child(n + 3) {
  grid-column: span 2;
}

.product-grid article {
  position: relative;
  min-height: 275px;
  padding: 26px;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.014);
  transition: background 180ms ease;
}

.product-grid article::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(160, 247, 199, 0.08);
  border-radius: 50%;
  content: "";
  transition: transform 300ms ease, border-color 300ms ease;
}

.product-grid article:hover {
  background: rgba(160, 247, 199, 0.035);
}

.product-grid article:hover::after {
  border-color: rgba(160, 247, 199, 0.2);
  transform: scale(1.15);
}

.card-index {
  display: block;
  margin-bottom: 86px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
}

.product-grid h3 {
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: 580;
  letter-spacing: -0.035em;
}

.product-grid p {
  max-width: 290px;
  color: #82938d;
  font-size: 13px;
  line-height: 1.65;
}

.honesty-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(65px, 9vw, 125px);
  padding: 123px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--amber);
  color: var(--ink);
}

.honesty-section .eyebrow {
  color: #65400f;
}

.honesty-section h2 {
  max-width: 650px;
  font-size: clamp(39px, 4.5vw, 62px);
}

.honesty-list {
  align-self: end;
  border-top: 1px solid rgba(7, 16, 14, 0.25);
}

.honesty-list p {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 20px;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid rgba(7, 16, 14, 0.25);
  font-size: 13px;
  line-height: 1.55;
}

.honesty-list span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 148px max(24px, calc((100vw - 960px) / 2));
  background:
    radial-gradient(circle at 50% 10%, rgba(73, 223, 162, 0.13), transparent 34%),
    #081411;
  text-align: center;
}

.cta-section .eyebrow {
  justify-content: center;
}

.cta-section h2 {
  margin-bottom: 24px;
  font-size: clamp(52px, 6.2vw, 84px);
}

.cta-section h2 em {
  display: block;
  font-style: italic;
}

.cta-section > p {
  max-width: 650px;
  margin-inline: auto;
  margin-bottom: 32px;
  color: #96a7a1;
  font-size: 15px;
  line-height: 1.7;
}

.cta-section > small {
  display: block;
  margin-top: 20px;
  color: #687a73;
  font-family: var(--mono);
  font-size: 11px;
}

.cta-rings {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(160, 247, 199, 0.055);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cta-rings i {
  position: absolute;
  border: 1px solid rgba(160, 247, 199, 0.055);
  border-radius: 50%;
}

.cta-rings i:first-child { inset: 95px; }
.cta-rings i:nth-child(2) { inset: 190px; }
.cta-rings i:last-child {
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border: 0;
  background: var(--mint);
  box-shadow: 0 0 20px var(--mint);
  animation: pulse 2.4s ease-in-out infinite;
}

body > footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 20px;
  padding: 64px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line-dark);
  background: #040b09;
  color: #71827c;
  font-size: 11px;
}

.footer-brand {
  color: #edf5f1;
}

body > footer > p {
  justify-self: end;
  margin: 0;
}

body > footer > div {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  align-items: center;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 9px rgba(160, 247, 199, 0.6);
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.88); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes node-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes bar-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes scan {
  0%, 55% { transform: translateX(-130%); }
  90%, 100% { transform: translateX(130%); }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding-top: 155px;
  }

  .hero-copy {
    max-width: 840px;
    padding-bottom: 80px;
  }

  .hero-visual {
    width: min(100%, 680px);
    margin: 0 0 85px;
  }

  .hero-signals {
    margin-inline: calc(-1 * max(24px, calc((100vw - var(--max)) / 2)));
  }

  .section-heading,
  .landscape-heading,
  .why-section,
  .method-section,
  .honesty-section {
    grid-template-columns: 1fr;
    gap: 43px;
  }

  .section-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
    max-width: 660px;
  }

  .direct-benchmark-grid {
    grid-template-columns: 1fr;
  }

  .direct-panel {
    padding: 35px;
  }

  .landscape-foot {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .method-intro {
    max-width: 760px;
  }

  .baseline-ledger {
    width: 100%;
  }

  .platform-map {
    grid-template-columns: 1fr 48px 1fr 48px 1fr;
    padding: 25px;
  }

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

  .product-grid article:nth-child(n) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 14px;
    width: calc(100% - 28px);
    min-height: 61px;
    padding-inline: 13px;
    border-radius: 8px;
  }

  .brand {
    font-size: 13px;
  }

  .brand-mark {
    transform: scale(0.88);
    transform-origin: left center;
  }

  .header-cta {
    gap: 9px;
    padding: 9px 10px;
    font-size: 11px;
  }

  .hero {
    padding: 128px 18px 0;
  }

  .hero-grid {
    background-size: 42px 42px;
  }

  .hero-copy {
    padding-bottom: 65px;
  }

  .eyebrow {
    margin-bottom: 21px;
    font-size: 10px;
  }

  h1 {
    margin-bottom: 28px;
    font-size: clamp(47px, 13.1vw, 64px);
    line-height: 0.94;
  }

  h1 em {
    margin-top: 10px;
    font-size: 0.88em;
  }

  .hero-lede {
    margin-bottom: 29px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .hero-visual {
    margin-bottom: 68px;
    padding: 12px;
    border-radius: 9px;
  }

  .compression-figure {
    padding: 14px;
  }

  .footprint-chart {
    gap: 16px;
  }

  .footprint-label {
    gap: 10px;
    font-size: 11px;
  }

  .footprint-track {
    height: 60px;
  }

  .footprint-saved {
    gap: 6px;
  }

  .footprint-saved strong {
    font-size: 21px;
  }

  .footprint-saved span {
    font-size: 10px;
  }

  .family-map {
    padding: 14px;
  }

  .model-node {
    min-height: 34px;
    padding-inline: 8px;
    font-size: 7px;
  }

  .archive-core {
    min-height: 86px;
    padding-inline: 11px;
  }

  .archive-core > b {
    font-size: 25px;
  }

  .core-orbit {
    display: none;
  }

  .visual-footer span:last-child {
    display: none;
  }

  .hero-signals {
    grid-template-columns: 1fr;
    margin-inline: -18px;
  }

  .hero-signals article {
    min-height: 142px;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-signals article {
    grid-template-columns: 0.68fr 1.32fr;
  }

  .hero-signals strong {
    font-size: 36px;
  }

  .hero-signals small {
    justify-self: end;
    text-align: right;
  }

  .evidence-section,
  .landscape-section,
  .why-section,
  .product-section {
    padding: 105px 18px 96px;
  }

  .section-index {
    top: 38px;
    right: 18px;
  }

  .section-heading,
  .landscape-heading {
    margin-bottom: 54px;
  }

  .why-section {
    display: grid;
  }

  .why-section > p {
    font-size: 15px;
  }

  h2,
  .method-intro h2 {
    font-size: clamp(40px, 12.2vw, 56px);
    line-height: 1.01;
  }

  .section-heading > p:last-child,
  .landscape-heading > p,
  .method-intro > p {
    font-size: 15px;
  }

  .comparison-card {
    margin-inline: -4px;
    padding: 24px 18px;
    border-radius: 8px;
  }

  .comparison-head {
    display: grid;
    margin-bottom: 43px;
  }

  .status-chip {
    width: max-content;
  }

  .bar-row {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .bar-track {
    height: 26px;
  }

  .comparison-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 45px;
  }

  .comparison-stats > div {
    min-height: 95px;
    padding: 20px 13px;
    border-bottom: 1px solid var(--line-dark);
  }

  .comparison-stats > div:first-child,
  .comparison-stats > div:nth-child(3) {
    padding-left: 0;
  }

  .comparison-stats > div:nth-child(2),
  .comparison-stats > div:last-child {
    border-right: 0;
  }

  .comparison-stats strong {
    font-size: 20px;
  }

  .direct-panel {
    padding: 22px 15px;
  }

  .direct-panel header {
    display: grid;
  }

  .direct-panel header p {
    text-align: left;
  }

  .direct-scale {
    margin-left: 116px;
  }

  .direct-row {
    grid-template-columns: 98px 1fr;
    gap: 18px;
  }

  .direct-row > span {
    font-size: 11px;
  }

  .direct-row > i > b {
    min-width: 52px;
    padding-right: 4px;
    font-size: 11px;
  }

  .direct-panel footer {
    display: grid;
  }

  .landscape-caveat {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .method-section {
    padding: 101px 18px;
  }

  .ledger-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 0;
  }

  .ledger-head {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .ledger-head span:last-child {
    text-align: right;
  }

  .ledger-measure {
    grid-template-columns: minmax(0, 1fr) 82px;
    gap: 10px;
  }

  .platform-map {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .platform-map > i {
    width: 1px;
    height: 26px;
    margin-left: 50%;
    background: linear-gradient(rgba(160, 247, 199, 0.13), var(--mint), rgba(160, 247, 199, 0.13));
  }

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

  .product-grid article {
    min-height: 225px;
  }

  .card-index {
    margin-bottom: 58px;
  }

  .honesty-section {
    padding: 98px 18px;
  }

  .honesty-list p {
    grid-template-columns: 77px 1fr;
    gap: 15px;
  }

  .cta-section {
    padding: 116px 18px;
  }

  .cta-section h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .cta-section > p {
    font-size: 15px;
  }

  .cta-rings {
    width: 520px;
    height: 520px;
  }

  body > footer {
    grid-template-columns: 1fr;
    padding: 55px 18px;
  }

  body > footer > p {
    justify-self: start;
  }

  body > footer > div {
    display: grid;
    gap: 15px;
    margin-top: 25px;
  }

  .footer-status {
    grid-row: 1;
  }
}

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

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