:root {
  color-scheme: light;
  --ink: #171512;
  --muted: #5b625f;
  --paper: #f6ebd4;
  --paper-light: #fffaf0;
  --line: #d7c092;
  --charcoal: #20262b;
  --charcoal-2: #11161a;
  --gold: #c3973f;
  --capability: #b23a32;
  --safety: #19735f;
  --influence: #4d5498;
  --compute: #2f6f9f;
  --trust: #806c2c;
  --font-title: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.45;
}

.landing-experience {
  min-height: 100vh;
  background: var(--paper);
}

main {
  background:
    linear-gradient(180deg, #f5ead2 0%, #edf0e8 42%, #f7e2c2 100%);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

:focus-visible {
  outline: 3px solid #f5c84b;
  outline-offset: 3px;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(18, 22, 26, .96);
  color: #fff8e8;
  border-bottom: 1px solid rgba(255, 248, 232, .16);
  backdrop-filter: blur(14px);
}

.top-nav.compact {
  position: static;
}

.brand {
  color: #fff8e8;
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.nav-actions a,
.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 14px;
  background: #fff7e6;
  color: #171512;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    background .18s ease,
    border-color .18s ease,
    color .18s ease,
    transform .18s ease,
    box-shadow .18s ease;
}

.nav-actions .nav-primary,
.button.primary {
  border-color: #d84c3f;
  background: var(--capability);
  color: #fff8f3;
}

.nav-actions .nav-secondary,
.button.subtle {
  border-color: #76a997;
  background: #e6f2ec;
  color: #102b24;
}

.nav-actions a:hover,
.button:hover {
  box-shadow: 0 8px 18px rgba(18, 22, 26, .14);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 88svh;
  background: var(--charcoal-2);
  color: #fff8e8;
  border-bottom: 1px solid rgba(255, 248, 232, .18);
}

.hero {
  min-height: 88vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 250, 240, .94), transparent 38%),
    linear-gradient(115deg, #fbefd3 0%, #f8edd7 46%, #f0d8b2 100%);
  border-bottom: 1px solid rgba(126, 92, 46, .32);
}

.hero-scene {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(520px, calc(82svh - 72px), 700px);
  overflow: hidden;
}

.hero-backdrop,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  overflow: hidden;
}

.hero-backdrop img {
  display: block;
  width: 100%;
  height: 108%;
  object-fit: cover;
  object-position: 62% center;
  transform-origin: center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(14, 17, 19, .91) 0%, rgba(17, 22, 26, .78) 34%, rgba(17, 22, 26, .26) 68%, rgba(17, 22, 26, .12) 100%),
    linear-gradient(180deg, rgba(14, 17, 19, .28) 0%, rgba(14, 17, 19, .08) 48%, rgba(14, 17, 19, .74) 100%);
}

.hero-inner,
.about-section,
.loop-section,
.component-section,
.showcase-section,
.path-section,
.simple-page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero-board {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 34px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 52px 0 64px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  padding: 28px 0 44px;
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
  padding: 22px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #926822;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.hero-dashboard .eyebrow {
  color: #ffd06f;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  color: #171512;
  font-family: var(--font-title);
  font-size: 58px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  overflow-wrap: break-word;
}

.hero h1 {
  margin-bottom: 12px;
  color: #fff8e8;
  font-size: clamp(54px, 8.2vw, 98px);
  text-shadow: 0 4px 28px rgba(0, 0, 0, .34);
}

.hero-tagline {
  max-width: 720px;
  margin-bottom: 18px;
  color: #ffe7ad;
  font-family: var(--font-title);
  font-size: clamp(29px, 3.7vw, 46px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-board h1 {
  margin-bottom: 22px;
  color: #171512;
  font-size: 58px;
  text-shadow: none;
}

.hero-board .eyebrow {
  color: #835f1d;
}

h2 {
  margin-bottom: 16px;
  color: #171512;
  font-family: var(--font-title);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  color: #171512;
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
}

.lede {
  max-width: 720px;
  margin-bottom: 0;
  color: #42423b;
  font-size: 21px;
  line-height: 1.35;
  overflow-wrap: break-word;
}

.hero .lede {
  max-width: 650px;
  color: rgba(255, 248, 232, .9);
  text-shadow: 0 2px 16px rgba(0, 0, 0, .36);
}

.hero-board .lede {
  max-width: 720px;
  color: #42423b;
  text-shadow: none;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-facts span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  min-height: 38px;
  border: 1px solid rgba(255, 248, 232, .22);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(14, 17, 19, .38);
  color: rgba(255, 248, 232, .88);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero-facts strong {
  color: #fff;
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 700;
}

.hero-board .hero-facts span {
  border: 1px solid rgba(126, 92, 46, .22);
  background: rgba(255, 250, 240, .72);
  color: #514837;
  backdrop-filter: none;
}

.hero-board .hero-facts strong {
  color: #111;
}

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

.hero-actions .button {
  min-height: 48px;
  padding: 13px 18px;
}

.inline-actions {
  margin-top: 24px;
}

.hero-product-shot {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(126, 92, 46, .24);
  border-radius: 10px;
  background: #fff4dc;
  box-shadow: 0 28px 62px rgba(98, 72, 32, .24);
}

.hero-product-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, .2), transparent 22%),
    linear-gradient(180deg, rgba(255, 250, 240, .04), rgba(105, 71, 28, .08));
}

.hero-product-shot img {
  display: block;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center right;
}

.hero-dashboard {
  display: grid;
  gap: 16px;
  min-width: 0;
  border: 1px solid rgba(255, 248, 232, .2);
  border-radius: 8px;
  padding: 18px;
  background: rgba(17, 22, 26, .74);
  color: #fff8e8;
  box-shadow: 0 22px 44px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
}

.dashboard-title {
  max-width: 280px;
  font-family: var(--font-title);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.02;
}

.metric-stack {
  display: grid;
  gap: 12px;
}

.metric-row {
  display: grid;
  gap: 7px;
}

.metric-row div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 248, 232, .72);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.metric-row strong {
  color: #fff8e8;
}

.metric-bar {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 248, 232, .14);
}

.metric-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.metric-row.capability .metric-bar span {
  background: #e05a4c;
}

.metric-row.safety .metric-bar span {
  background: #42b090;
}

.metric-row.trust .metric-bar span {
  background: #e4b94e;
}

.gap-readout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(224, 90, 76, .34);
  border-radius: 7px;
  padding: 12px;
  background: rgba(178, 58, 50, .26);
}

.gap-readout span {
  color: rgba(255, 248, 232, .76);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.gap-readout strong {
  font-family: var(--font-title);
  font-size: 34px;
  line-height: 1;
}

.about-section,
.loop-section,
.showcase-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy p,
.showcase-section p,
.section-heading p {
  color: var(--muted);
  font-size: 20px;
}

.section-copy {
  max-width: 520px;
  color: var(--muted);
  font-size: 19px;
}

.round-diagram {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  min-width: 0;
}

.round-core {
  display: grid;
  align-content: center;
  justify-items: center;
  min-width: 0;
  border: 1px solid rgba(32, 38, 43, .15);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(32, 38, 43, .96), rgba(23, 21, 18, .96));
  color: #fff8e8;
  text-align: center;
}

.round-core img {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
}

.round-core strong {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.round-core span {
  margin-top: 8px;
  color: rgba(255, 248, 232, .68);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.round-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.round-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 6px 12px;
  align-items: start;
  min-width: 0;
  border: 1px solid rgba(32, 38, 43, .13);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 250, 240, .88);
  box-shadow: 0 10px 24px rgba(49, 39, 25, .06);
}

.round-flow li::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  width: 14px;
  height: 2px;
  background: rgba(126, 92, 46, .32);
}

.round-flow li:nth-child(2n)::after,
.round-flow li:last-child::after {
  display: none;
}

.flow-index {
  position: absolute;
  right: 12px;
  top: 12px;
  color: rgba(32, 38, 43, .36);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.round-flow img {
  grid-row: span 2;
  width: 38px;
  height: 38px;
}

.round-flow strong {
  padding-right: 34px;
  color: #171512;
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.1;
}

.round-flow em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.35;
}

.component-section,
.path-section {
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

.component-section {
  width: min(1180px, calc(100% - 36px));
  max-width: 1180px;
  margin: 0 auto;
  background: transparent;
  color: var(--ink);
}

.component-section .section-heading p,
.component-section .tension-panel p,
.component-section .consequence-rail p {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.tension-map {
  display: grid;
  gap: 18px;
}

.tension-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 176px minmax(0, 1fr);
  align-items: stretch;
  min-height: 320px;
  border: 1px solid rgba(32, 38, 43, .14);
  border-radius: 8px;
  overflow: hidden;
  background: #fffaf0;
  box-shadow: 0 16px 34px rgba(49, 39, 25, .09);
}

.tension-panel {
  display: grid;
  align-content: start;
  min-width: 0;
  padding: 28px;
}

.tension-panel img {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
}

.tension-panel span,
.gap-core span {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tension-panel p {
  max-width: 420px;
  margin-bottom: 24px;
  font-size: 18px;
}

.capability-panel {
  border-top: 8px solid var(--capability);
}

.safety-panel {
  border-top: 8px solid var(--safety);
}

.capability-panel span {
  color: var(--capability);
}

.safety-panel span {
  color: var(--safety);
}

.track-line {
  width: 100%;
  height: 12px;
  margin-top: auto;
  overflow: hidden;
  border-radius: 999px;
  background: #eadfc9;
}

.track-line i {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.capability-panel .track-line i {
  background: var(--capability);
}

.safety-panel .track-line i {
  background: var(--safety);
}

.gap-core {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  min-width: 0;
  border-right: 1px solid rgba(255, 248, 232, .16);
  border-left: 1px solid rgba(255, 248, 232, .16);
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(178, 58, 50, .96), rgba(91, 43, 50, .96));
  color: #fff8e8;
  text-align: center;
}

.gap-core span {
  margin-bottom: 0;
  color: rgba(255, 248, 232, .72);
}

.gap-core strong {
  max-width: 124px;
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.consequence-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.consequence-rail div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 6px 14px;
  align-items: start;
  min-width: 0;
  border: 1px solid rgba(32, 38, 43, .13);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 250, 240, .74);
}

.consequence-rail img {
  grid-row: span 2;
  width: 42px;
  height: 42px;
}

.consequence-rail strong {
  color: var(--ink);
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.1;
}

.consequence-rail p {
  margin-bottom: 0;
  font-size: 15px;
}

.showcase-section figure {
  margin: 0;
}

.showcase-section img {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-light);
  box-shadow: 0 16px 34px rgba(49, 39, 25, .12);
}

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

.path-item {
  display: grid;
  gap: 8px;
  min-width: 0;
  border: 1px solid var(--line);
  border-top: 6px solid var(--safety);
  border-radius: 8px;
  padding: 18px;
  background: #fffaf0;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(49, 39, 25, .06);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.path-item.primary-path {
  border-top-color: var(--capability);
}

.path-item:nth-child(3) {
  border-top-color: var(--influence);
}

.path-item strong {
  color: var(--ink);
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
}

.path-item span {
  color: var(--muted);
  font-size: 16px;
}

.path-item:hover {
  border-color: #bda36f;
  box-shadow: 0 12px 28px rgba(49, 39, 25, .1);
  transform: translateY(-3px);
}

.codex-credit {
  margin: 0;
  padding: 18px 0 20px;
  background:
    linear-gradient(180deg, #1d2227, #171512);
  color: #fff8e8;
  border-top: 1px solid rgba(255, 248, 232, .1);
}

.codex-credit-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.codex-credit-copy {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  border: 1px solid rgba(255, 248, 232, .12);
  border-radius: 999px;
  padding: 5px 7px 5px 13px;
  background: rgba(255, 248, 232, .045);
  color: rgba(255, 248, 232, .86);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 232, .06),
    0 8px 22px rgba(0, 0, 0, .18);
}

.credit-phrase {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.token-word {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  color: #fff4dc;
  font-family: var(--font-title);
  font-weight: 700;
}

.token-heart {
  display: inline-flex;
  width: .92em;
  height: .92em;
  margin: 0 .01em;
  vertical-align: -.08em;
}

.token-heart svg {
  width: 100%;
  height: 100%;
  fill: #d9342b;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, .22));
}

.codex-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-left: 1px solid rgba(255, 248, 232, .14);
  padding-left: 8px;
}

.codex-mark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .24);
}

.codex-word {
  color: rgba(255, 248, 232, .82);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
}

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

.simple-page {
  max-width: 860px;
  padding: 72px 0;
}

.simple-page p {
  color: var(--muted);
  font-size: 18px;
}

.simple-page .lede {
  color: #42423b;
}

.simple-page .hero-actions .button {
  border-color: var(--line);
}

.packet-section {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.packet-section h2 {
  font-size: 40px;
}

.packet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.packet-card {
  display: grid;
  gap: 8px;
  min-height: 136px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--influence);
  border-radius: 8px;
  padding: 16px;
  background: #fffaf0;
  text-decoration: none;
}

.packet-card strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
}

.packet-card span {
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-dashboard {
    width: min(520px, 100%);
  }

  .about-section,
  .loop-section,
  .showcase-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .round-diagram {
    grid-template-columns: 1fr;
  }

  .round-core {
    min-height: 172px;
  }

  .tension-main {
    grid-template-columns: 1fr;
  }

  .gap-core {
    min-height: 132px;
    border-top: 1px solid rgba(255, 248, 232, .16);
    border-right: 0;
    border-bottom: 1px solid rgba(255, 248, 232, .16);
    border-left: 0;
  }

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

@media (max-width: 760px) {
  .top-nav {
    position: static;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: auto;
    gap: 12px;
    padding: 14px 18px;
  }

  .nav-actions {
    display: flex;
    flex: 1 1 280px;
    flex-wrap: wrap;
    gap: 7px;
    width: auto;
    max-width: none;
    justify-content: flex-start;
  }

  .nav-actions a {
    min-width: 0;
    min-height: 34px;
    padding: 8px 10px;
    font-size: 13px;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-scene {
    min-height: min(690px, calc(100svh - 116px));
    align-items: end;
  }

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

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(14, 17, 19, .18) 0%, rgba(14, 17, 19, .76) 38%, rgba(14, 17, 19, .92) 100%),
      linear-gradient(90deg, rgba(14, 17, 19, .76), rgba(14, 17, 19, .3));
  }

  .hero-inner,
  .hero-board,
  .about-section,
  .loop-section,
  .showcase-section,
  .path-section,
  .simple-page {
    width: min(354px, calc(100% - 36px));
    margin-left: 18px;
    margin-right: auto;
  }

  .component-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-inner {
    gap: 18px;
    padding: 26px 0 34px;
  }

  .hero-board {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 46px 0 62px;
  }

  .hero-copy {
    padding: 0;
  }

  h1 {
    font-size: 38px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-board h1 {
    font-size: 38px;
  }

  .hero-tagline {
    font-size: 25px;
  }

  .hero .lede {
    font-size: 16px;
    line-height: 1.32;
  }

  .hero-board .lede {
    font-size: 18px;
    line-height: 1.35;
  }

  h2 {
    font-size: 31px;
  }

  .lede,
  .about-copy p,
  .showcase-section p,
  .section-heading p {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 340px;
  }

  .hero-actions .button {
    min-height: 44px;
    padding: 11px 12px;
    font-size: 15px;
  }

  .hero-actions .button.primary {
    grid-column: 1 / -1;
  }

  .hero-board .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-board .hero-actions .button.primary {
    grid-column: auto;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: 340px;
    margin-top: 20px;
  }

  .hero-facts span {
    min-height: 34px;
    padding: 7px 9px;
  }

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

  .hero-product-shot img {
    min-height: 300px;
    object-position: center right;
  }

  .hero-dashboard {
    display: none;
  }

  .about-section,
  .loop-section,
  .component-section,
  .showcase-section,
  .path-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .round-flow,
  .path-grid,
  .packet-grid {
    grid-template-columns: 1fr;
  }

  .round-flow li::after {
    display: none;
  }

  .codex-credit-copy {
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
