:root {
  --bg: #eef3ec;
  --bg-deep: #e3ece0;
  --surface: #fbfdfa;
  --ink: #0e1a14;
  --ink-soft: #3d564a;
  --muted: #5b7367;
  --line: #d4e4d6;
  --forest: #1e4d3b;
  --forest-2: #16382c;
  --mint: #dcead9;
  --signal: #00b85d;
  --signal-2: #00964c;
  --signal-soft: #d4f3e4;
  --shadow: 0 18px 50px rgba(14, 26, 20, 0.08);
  --radius: 22px;
  --font: "Work Sans", "Segoe UI", sans-serif;
  --display: "Fraunces", "Iowan Old Style", serif;
  --header: 72px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.011em;
  overflow-x: clip;
}

body.view-invest {
  padding-top: 0;
  height: 100dvh;
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 12px;
  top: 8px;
  z-index: 80;
  background: var(--surface);
  padding: 8px 12px;
  border-radius: 8px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: var(--header);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  padding: 12px 20px;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.js .site-header {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.js .site-header.is-visible,
.js .site-header:focus-within {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@keyframes header-reveal {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@supports (animation-timeline: scroll()) {
  .js .site-header {
    animation: header-reveal linear both;
    animation-timeline: scroll();
    animation-range: 55vh 90vh;
    pointer-events: auto;
  }

  .js .site-header.is-visible {
    transform: translateY(-100%);
    opacity: 0;
  }

  .js .site-header:focus-within {
    animation: none;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-lockup {
  display: block;
  height: 28px;
  width: auto;
  max-width: min(186px, 54vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.brand-lockup-footer {
  height: 24px;
  max-width: 168px;
  margin-bottom: 16px;
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 18px;
  margin-left: auto;
  flex: 1 1 240px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}

.header-nav a:not(.header-cta) {
  display: none;
  text-decoration: none;
}

.header-nav a:not(.header-cta):hover {
  color: var(--ink);
}

.header-cta {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

@media (min-width: 768px) {
  .header-nav a:not(.header-cta) {
    display: inline;
  }
}

.section,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  scroll-margin-top: calc(var(--header) + 12px);
}

#view-home {
  position: relative;
}

.nav-sentinel {
  position: absolute;
  top: 70vh;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100dvh;
  min-height: 100svh;
  margin: 0;
  padding: 48px 20px;
  overflow: hidden;
  color: #f7faf8;
  background-color: #243848;
  background-image: url("data:image/webp;base64,UklGRooAAABXRUJQVlA4IH4AAADwBACdASowABsAPu1wr1KppiQipWsxMB2JYwC9WAtzmoOwrpuNBnDA/reB+jxznUAA/nZKuc+wf4g/XJWHyIHpLP1o6jg2C6YU635NT0ytyrkdDK/fQjRKSMkcOagf5T2eyYhgRBUUQHyjuNEJubSH/vekujHTwBArb2T0YAA=");
  background-size: cover;
  background-position: center center;
}

.hero picture {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(8, 16, 26, 0.50) 0%,
      rgba(8, 16, 26, 0.28) 28%,
      rgba(8, 16, 26, 0.10) 52%,
      rgba(8, 16, 26, 0.16) 100%
    );
}

.hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  width: min(720px, 100%);
  transform: translateY(-10vh);
}

.hero h1 {
  max-width: 16ch;
  color: #fff;
  text-shadow: 0 2px 24px rgba(8, 16, 22, 0.35);
}

.hero .lede {
  max-width: 36rem;
  color: rgba(247, 250, 248, 0.88);
}

.hero-cta {
  margin-top: 28px;
}

.hero .btn:focus-visible {
  outline-color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 550;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
}

h3 {
  font-size: 1.15rem;
}

.lede,
.section-lede {
  max-width: 38rem;
  color: var(--ink-soft);
}

.lede {
  margin: 18px 0 0;
  font-size: 1.12rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--signal);
  color: var(--ink);
  text-decoration: none;
  font-weight: 650;
}

.btn:hover {
  background: var(--signal-2);
}

.btn.hero-cta {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}

.btn.hero-cta:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 28px rgba(8, 16, 22, 0.28);
}

@media (max-width: 767px) {
  .hero {
    place-items: start center;
    padding-top: calc(88px + env(safe-area-inset-top, 0px));
  }

  .hero-inner {
    transform: none;
  }

  .btn.hero-cta,
  .btn.hero-cta:hover,
  .btn.hero-cta:active {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 10px 28px rgba(8, 16, 22, 0.28);
  }
}

.btn.secondary {
  background: transparent;
  color: var(--signal-2);
  border: 1px solid var(--signal);
}

.btn.secondary:hover {
  background: var(--signal-soft);
}

.section {
  padding: 72px 0;
}

.section-lede {
  margin: 16px 0 0;
}

.media-slot {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  background: color-mix(in srgb, var(--mint) 55%, var(--forest) 12%);
  border: 1px solid color-mix(in srgb, var(--forest) 16%, var(--line));
}

.media-slot img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-slot:has(img) {
  background: var(--forest-2);
  border-color: transparent;
}

.media-slot:has(img) .media-slot-label {
  display: none;
}

.media-why img {
  object-position: 36% 48%;
}

.media-platform img {
  object-position: 32% 52%;
}

.media-real-estate img {
  object-position: center 58%;
}

.media-agriculture img {
  object-position: center 56%;
}

.media-businesses img {
  object-position: 60% 46%;
}

.media-infrastructure img {
  object-position: center 64%;
}

.media-slot-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.media-slot-feature {
  width: 100%;
  min-height: 240px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
}

.why,
.building {
  display: grid;
  gap: 28px;
  align-items: start;
}

.why {
  padding-top: 88px;
  padding-bottom: 96px;
}

.why h2 {
  max-width: 14ch;
  font-size: clamp(2.1rem, 5.4vw, 3.4rem);
}

.why .section-lede {
  max-width: 36rem;
}

.why-scope {
  margin: 16px 0 0;
  max-width: 36rem;
  color: var(--ink);
  font-weight: 500;
}

.starting {
  width: 100%;
  max-width: none;
  padding: 48px 20px 64px;
  background: var(--surface);
  border-block: 1px solid var(--line);
  scroll-margin-top: calc(var(--header) + 12px);
}

.starting-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.starting-media {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: var(--forest-2);
}

.starting-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 42%;
}

.starting h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 5.2vw, 3.2rem);
}

.credit-flow {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.credit-flow li {
  display: grid;
  grid-template-columns: 1.75rem minmax(0, 1fr);
  gap: 4px 12px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.35;
}

.credit-flow-num {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.starting-close {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.vision-grid,
.example-grid,
.panel {
  background: transparent;
}

.vision-grid,
.example-grid {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  perspective: 920px;
}

.vision-grid li,
.example-grid li,
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.vision-grid li,
.example-grid li {
  position: relative;
  display: grid;
  padding: 0;
}

.example-grid li {
  overflow: hidden;
  transform:
    translate3d(var(--tilt-x, 0px), var(--tilt-y, 0px), 0)
    rotateX(var(--tilt-rx, 0deg))
    rotateY(var(--tilt-ry, 0deg));
  transform-origin: center center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.example-grid li.is-tilting {
  z-index: 2;
  transition: transform 0.12s ease-out, box-shadow 0.2s ease;
  box-shadow: 0 16px 32px rgba(14, 26, 20, 0.1);
}

.example-grid li::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    380px circle at var(--glare-x, 50%) var(--glare-y, 50%),
    rgba(255, 255, 255, 0.12),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.example-grid li.is-tilting::after {
  opacity: 1;
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  .example-grid li,
  .example-grid li.is-tilting {
    transform: none;
    transition: none;
    box-shadow: var(--shadow);
  }

  .example-grid li::after,
  .example-grid li.is-tilting::after {
    display: none;
  }
}

.vision-grid .media-slot,
.example-grid .media-slot {
  aspect-ratio: 16 / 10;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
}

.card-body {
  padding: 20px 24px 26px;
}

.vision-grid li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 1px;
  height: 14px;
  background: color-mix(in srgb, var(--forest) 28%, var(--line));
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  margin-bottom: 16px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--signal-soft);
  color: var(--signal-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.vision-grid p,
.example-grid p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.muted-band {
  width: 100%;
  max-width: none;
  padding: 80px 20px;
  background: var(--bg-deep);
}

.muted-band h2,
.muted-band .eyebrow,
.muted-band .section-lede,
.muted-band .vision-grid {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.example-cta {
  display: grid;
  justify-items: start;
  gap: 12px;
  margin-top: 40px;
  max-width: 38rem;
}

.example-cta p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  letter-spacing: -0.03em;
  color: var(--ink);
}

.example-cta .example-cta-copy {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
  color: var(--ink-soft);
}

.example-cta .btn {
  margin-top: 8px;
}

.build-points {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 38rem;
}

.build-points li {
  position: relative;
  padding: 14px 0 14px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.build-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.3em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
}

.build-close {
  margin: 28px 0 0;
  max-width: 28rem;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: var(--signal-2);
}

.close-cta {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 96px 20px;
  background: var(--forest);
  color: #f7faf8;
  scroll-margin-top: calc(var(--header) + 12px);
}

.close-cta-inner {
  width: min(680px, 100%);
  margin: 0 auto;
  text-align: center;
}

.close-cta h2 {
  color: #fff;
}

.close-cta-lede {
  margin: 16px 0 0;
  color: rgba(247, 250, 248, 0.82);
}

.close-cta-btn {
  margin-top: 32px;
  background: var(--signal);
  color: var(--ink);
}

.close-cta-btn:hover {
  background: var(--signal-2);
}

.close-cta-note {
  margin: 16px 0 0;
  font-size: 0.92rem;
  color: rgba(247, 250, 248, 0.64);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.panel {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.panel label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.panel input:not([type="checkbox"]),
.panel textarea,
.panel select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
}

.panel select {
  min-height: 48px;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'><path d='M4 6l4 4 4-4' stroke='%231e4d3b' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
}

.choice-set {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 10px;
}

.choice-set legend {
  padding: 0;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.choice-set legend span {
  font-weight: 500;
  color: var(--muted);
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.check input {
  width: 16px;
  height: 16px;
  padding: 0;
  accent-color: var(--signal);
}

.panel textarea {
  resize: vertical;
  min-height: 88px;
}

.form-note {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--signal-soft);
  color: var(--signal-2);
  font-size: 14px;
}

.site-footer {
  padding: 28px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer p:last-child {
  max-width: 42rem;
  margin: 0;
}

.flow {
  min-height: 100dvh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.flow[hidden] {
  display: none;
}

.flow-header {
  position: sticky;
  top: 0;
  z-index: 20;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header);
  padding: 12px 20px;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.flow-kicker {
  margin: 0 auto 0 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.flow-progress {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.flow-shell {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 28px;
  overflow: auto;
  min-height: 0;
}

.flow-shell::before,
.flow-shell::after {
  content: "";
  flex: 1 0 12px;
}

.flow-stage {
  width: 100%;
}

.flow-stage .eyebrow,
.flow-stage .lede {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.flow-stage h1 {
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 6vw, 3.4rem);
  text-align: center;
}

.flow-stage .lede {
  margin-bottom: 28px;
  max-width: 36rem;
}

.choice-grid {
  display: grid;
  gap: 14px;
}

.choice-card {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 22px 22px 24px;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: inherit;
  cursor: pointer;
}

.choice-card input[type="radio"],
.choice-card input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  appearance: none;
}

.choice-card-main {
  display: grid;
  gap: 8px;
  cursor: pointer;
}

.choice-card .other-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
  cursor: text;
}

.choice-card:has(input[value="other"]:checked) .other-input {
  border-color: var(--signal);
}

.choice-card h2 {
  font-size: 1.2rem;
}

.choice-card p {
  margin: 0;
  color: var(--ink-soft);
}

.choice-card:hover {
  border-color: color-mix(in srgb, var(--signal) 35%, var(--line));
}

.choice-card:has(input:checked),
.choice-card:has(input:checked):hover {
  border-color: var(--signal);
  background: var(--signal-soft);
  box-shadow: none;
}

.choice-card:has(input[type="checkbox"]:disabled) {
  opacity: 0.45;
  cursor: not-allowed;
}

.flow-panel {
  max-width: 28rem;
  margin-inline: auto;
}

.panel .optional {
  font-weight: 500;
  color: var(--muted);
}

.likelihood {
  width: min(36rem, 100%);
  margin: 8px auto 0;
}

.likelihood-value {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  text-align: center;
}

.likelihood input[type="range"] {
  width: 100%;
  height: 28px;
  margin: 0;
  accent-color: var(--signal);
  cursor: pointer;
}

.likelihood-ticks,
.likelihood-ends {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.likelihood-ends {
  margin-top: 6px;
  font-weight: 500;
}

.early-access {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.early-access input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--signal);
}

.early-access:has(input:checked) {
  border-color: var(--signal);
  background: var(--signal-soft);
}

.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#survey-turnstile:empty {
  display: none;
}

.flow-error {
  flex: 1 0 100%;
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fdecea;
  color: #8a1f1f;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.choice-grid.is-invalid .choice-card {
  border-color: color-mix(in srgb, #c4453c 50%, var(--line));
}

.panel input.is-invalid {
  border-color: #c4453c;
}

.btn[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}

.flow-nav {
  position: relative;
  z-index: 15;
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.flow-nav .btn {
  min-width: 10.5rem;
  justify-content: center;
}

.flow-done h1 {
  max-width: 12ch;
}

@media (min-width: 768px) {
  .site-header,
  .flow-header {
    padding: 12px 32px;
  }

  .flow-shell {
    width: min(960px, calc(100% - 64px));
  }

  .flow-nav {
    padding-left: 32px;
    padding-right: 32px;
  }

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

  .choice-grid.scale {
    grid-template-columns: repeat(5, 1fr);
  }

  .section:not(.muted-band),
  .site-footer {
    width: min(1120px, calc(100% - 64px));
  }

  .hero {
    min-height: 100dvh;
    padding: 64px 32px;
    background-position: center 42%;
  }

  .hero-media {
    object-position: center 42%;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 16, 22, 0.34) 0%,
      rgba(8, 16, 22, 0.46) 48%,
      rgba(8, 16, 22, 0.58) 100%
    );
  }

  .hero-inner {
    transform: translateY(-12vh);
  }

  .muted-band,
  .starting,
  .close-cta {
    padding-left: 32px;
    padding-right: 32px;
  }

  .why,
  .building {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    column-gap: 56px;
    row-gap: 8px;
    align-items: stretch;
  }

  .why-intro,
  .building-intro {
    grid-column: 1;
    grid-row: 1;
  }

  .why .media-slot-feature,
  .building .media-slot-feature {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
    align-self: center;
  }

  .why-rest,
  .building-rest {
    grid-column: 1;
    grid-row: 2;
  }

  .starting {
    padding-top: 88px;
    padding-bottom: 96px;
  }

  .starting-media {
    aspect-ratio: 16 / 10;
  }

  .starting-media img {
    object-position: 72% 42%;
  }

  .vision-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .vision-grid li:not(:last-child)::after {
    display: none;
  }

  .example-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (min-width: 960px) {
  .starting-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 1.05fr);
    column-gap: 56px;
    align-items: center;
  }

  .starting-media {
    aspect-ratio: 4 / 5;
  }

  .starting-media img {
    object-position: 58% 48%;
  }

  .starting-copy {
    padding-block: 12px;
  }

  .credit-flow {
    margin-top: 36px;
  }

  .credit-flow li {
    padding: 16px 0;
    font-size: 1.08rem;
  }

  .starting-close {
    margin-top: 32px;
  }
}

@media (min-width: 1100px) {
  .starting-inner {
    column-gap: 80px;
  }

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

  .choice-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .choice-grid.scale {
    grid-template-columns: repeat(5, 1fr);
  }
}
