:root {
  --page-bg: #f7f7f2;
  --surface: #ffffff;
  --surface-soft: #eef3ee;
  --surface-blue: #eef3f7;
  --ink: #1f2722;
  --muted: #5f6a64;
  --green: #173f2d;
  --green-strong: #0f2d20;
  --sage: #dce7dd;
  --blue: #365f86;
  --line: rgba(31, 39, 34, 0.12);
  --line-strong: rgba(31, 39, 34, 0.2);
  --shadow: 0 18px 44px rgba(28, 39, 32, 0.08);
  --container: 72rem;
  --measure: 46rem;
  --radius: 8px;
  --section-space: 4.9rem;
  --section-space-lg: 5.6rem;
  --card-pad: 1.35rem;
  --card-pad-lg: 1.55rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page-bg);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 247, 242, 0.88)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 11.8rem,
      rgba(23, 63, 45, 0.035) 11.8rem,
      rgba(23, 63, 45, 0.035) 11.85rem
    );
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  max-width: var(--measure);
}

.problem-layout {
  max-width: var(--measure);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.7rem;
  z-index: 30;
  transform: translateY(-140%);
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  padding: 1rem 0;
  color: #f7f7f2;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-label,
.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.header-link {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(15, 45, 32, 0.32);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.hero-section {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #16271f;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 28, 22, 0.88), rgba(13, 28, 22, 0.58) 48%, rgba(13, 28, 22, 0.24)),
    linear-gradient(180deg, rgba(13, 28, 22, 0.62), rgba(13, 28, 22, 0.22) 34%, rgba(13, 28, 22, 0.78));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 8.5rem 0 4.5rem;
  color: #fff;
}

.hero-content .eyebrow {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.82);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 13ch;
  margin-top: 1rem;
  font-size: 3.35rem;
}

h2 {
  max-width: 15ch;
  font-size: 2.3rem;
}

h3 {
  font-size: 1.28rem;
}

.hero-subtitle {
  max-width: 41rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.button {
  min-height: 3.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 22rem);
  padding: 0.9rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.button-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 28px rgba(15, 45, 32, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-strong);
  box-shadow: 0 20px 34px rgba(15, 45, 32, 0.25);
  transform: translateY(-1px);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(12px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.14);
}

.button-light {
  background: #f7f7f2;
  color: var(--green-strong);
  box-shadow: 0 18px 34px rgba(5, 18, 12, 0.22);
}

.button-light:hover,
.button-light:focus-visible {
  background: #fff;
  box-shadow: 0 22px 38px rgba(5, 18, 12, 0.28);
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.hero-helper {
  max-width: 37rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
  line-height: 1.55;
}

.section {
  padding: var(--section-space) 0;
}

.section-compact {
  padding: 1rem 0 0;
}

.section-heading {
  max-width: var(--measure);
  margin: 0 auto 1.85rem;
  text-align: center;
}

.section-heading-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading-left h2 {
  max-width: 18ch;
  margin-inline: 0;
}

.section-heading .eyebrow,
.problem-section .eyebrow,
.author-section .eyebrow,
.ethics-section .eyebrow,
.beta-copy .eyebrow {
  color: var(--blue);
}

.section-heading h2,
.problem-section h2,
.author-section h2,
.ethics-section h2,
.beta-copy h2 {
  margin-top: 0.75rem;
}

.section-copy {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.62;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 7.25rem;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: 1rem;
  background: var(--surface);
}

.trust-strip strong {
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.copy-stack {
  display: grid;
  gap: 1.05rem;
}

.copy-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.66;
}

.lead-line {
  color: var(--green) !important;
  font-weight: 700;
}

.problem-section .copy-stack {
  max-width: 40rem;
}

.outcome-section,
.mechanism-section,
.faq-section {
  background: var(--surface-soft);
}

.outcome-heading,
.mechanism-heading,
.process-heading,
.faq-heading,
.fit-heading {
  display: grid;
  gap: 0.7rem;
  max-width: 64rem;
  margin: 0 auto 1.6rem;
}

.outcome-heading h2,
.mechanism-heading h2,
.process-heading h2,
.faq-heading h2,
.fit-heading h2 {
  max-width: 18ch;
  margin-top: 0.15rem;
  margin-inline: 0;
}

.outcome-heading p:not(.eyebrow),
.mechanism-heading p:not(.eyebrow),
.process-heading p:not(.eyebrow),
.faq-heading p:not(.eyebrow),
.fit-heading p:not(.eyebrow) {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.three-grid {
  display: grid;
  gap: 1rem;
  max-width: 64rem;
  margin-inline: auto;
}

.panel,
.map-board,
.beta-exchange,
.fit-block,
.application-form,
.thank-you-state,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel {
  min-height: 100%;
  padding: var(--card-pad);
}

.panel-number {
  display: block;
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 800;
}

.panel p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.map-layout,
.beta-layout,
.author-layout,
.ethics-layout,
.application-layout {
  display: grid;
  gap: 2rem;
}

.map-layout,
.beta-layout,
.ethics-layout,
.application-layout {
  max-width: 64rem;
}

.map-board {
  padding: var(--card-pad);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 243, 247, 0.92));
}

.map-summary {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.map-kicker {
  margin: 0;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.map-intro {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.map-list,
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.map-list li,
.check-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink);
  line-height: 1.58;
}

.map-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--green);
}

.map-sample {
  margin-top: 1.15rem;
  padding: 1rem;
  border: 1px solid rgba(54, 95, 134, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.map-sample span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.map-sample p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.principle-list,
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.principle-list,
.process-list {
  max-width: 64rem;
  margin-inline: auto;
}

.principle-list li {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
}

.principle-list strong {
  color: var(--green);
  font-size: 1.08rem;
}

.principle-list span {
  color: var(--muted);
}

.beta-section {
  background: #1d3027;
  color: #fff;
}

.beta-copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.beta-copy p {
  max-width: 44rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.beta-price {
  color: #fff !important;
  font-weight: 800;
}

.beta-actions {
  display: flex;
  margin-top: 1.35rem;
}

.beta-exchange {
  align-self: center;
  padding: var(--card-pad-lg);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.beta-exchange h3 {
  margin-bottom: 1rem;
}

.beta-exchange .check-list {
  gap: 0.95rem;
}

.beta-exchange .check-list li {
  padding-left: 1.55rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.58;
}

.beta-exchange .check-list li::before {
  top: 0.78rem;
  background: #c7ddd0;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: var(--card-pad);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.process-list > li > span {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: var(--radius);
  background: var(--surface-blue);
  color: var(--blue);
  font-weight: 800;
}

.process-list h3,
.process-list p {
  margin: 0;
}

.process-list p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.map-section,
.process-section,
.fit-section,
.author-section,
.application-section {
  position: relative;
}

.map-section::before,
.process-section::before,
.fit-section::before,
.author-section::before,
.application-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 2rem), 64rem);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(31, 54, 44, 0.08) 10%,
    rgba(31, 54, 44, 0.18) 50%,
    rgba(31, 54, 44, 0.08) 90%,
    transparent
  );
}

.fit-layout {
  display: grid;
  gap: 1rem;
  max-width: 64rem;
}

.fit-block {
  padding: var(--card-pad-lg);
}

.fit-block h2 {
  max-width: 18ch;
  margin-bottom: 1.1rem;
  font-size: 1.7rem;
}

.fit-block-muted {
  background: var(--surface-blue);
}

.author-section {
  background: var(--surface);
}

.author-layout {
  max-width: 64rem;
  align-items: center;
  gap: 1.4rem;
  padding: var(--card-pad-lg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.author-avatar {
  justify-self: start;
  width: 6.8rem;
  height: 6.8rem;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--sage);
  box-shadow: 0 18px 36px rgba(28, 39, 32, 0.12);
}

.author-copy {
  display: grid;
  gap: 0.8rem;
  min-width: 0;
}

.author-copy h2 {
  margin-top: 0;
}

.author-copy .copy-stack {
  gap: 0.9rem;
}

.ethics-section {
  background: #eef3ee;
}

.faq-list {
  display: grid;
  gap: 0.95rem;
  max-width: 64rem;
  margin-inline: auto;
}

.faq-list details {
  padding: 1.1rem 1.15rem;
}

.faq-list summary {
  min-height: 3rem;
  display: flex;
  align-items: center;
  padding-right: 1.85rem;
  position: relative;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  line-height: 1.4;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--green);
  font-size: 1.25rem;
}

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

.faq-list p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.application-section {
  background: var(--page-bg);
}

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.footer-inner {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.footer-copy {
  display: grid;
  gap: 0.5rem;
  max-width: 42rem;
}

.footer-label,
.footer-note {
  margin: 0;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-text {
  margin: 0;
  color: var(--ink);
  line-height: 1.6;
}

.footer-note {
  color: var(--muted);
  font-size: 0.76rem;
}

.footer-nav {
  display: grid;
  gap: 0.6rem;
}

.footer-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--green);
}

.application-shell {
  min-width: 0;
}

.application-form {
  display: grid;
  gap: 1.2rem;
  padding: var(--card-pad-lg);
}

.hidden-field {
  display: none;
}

.form-intro,
.field-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field label,
.field legend {
  padding: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fcfcfb;
  color: var(--ink);
  padding: 0.9rem 1rem;
}

.field input {
  min-height: 3.45rem;
}

.field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7a857f;
}

.field input:focus,
.field textarea:focus,
.button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(54, 95, 134, 0.18);
  outline-offset: 3px;
}

.feedback-choice {
  margin: 0;
  padding: 0;
  border: 0;
}

.radio-group {
  display: grid;
  gap: 0.7rem;
}

.radio-group label {
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  cursor: pointer;
}

.radio-group input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--green);
}

.form-actions {
  display: grid;
  gap: 0.75rem;
}

.form-status {
  margin: 0;
  color: #8d3026;
  font-weight: 800;
}

.thank-you-state {
  padding: var(--card-pad-lg);
}

.thank-you-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--green);
  font-weight: 900;
}

.thank-you-state p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.mobile-sticky-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 20;
  display: none;
  justify-content: center;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(247, 247, 242, 0.92);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.mobile-sticky-cta .button {
  max-width: 22rem;
  min-height: 3.2rem;
}

.mobile-sticky-cta.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
}

@media (max-width: 699px) {
  body.sticky-cta-ready {
    padding-bottom: 5.1rem;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  .section {
    padding: 3.85rem 0;
  }

  .hero-section {
    min-height: auto;
    align-items: start;
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 28, 22, 0.88), rgba(13, 28, 22, 0.62)),
      linear-gradient(180deg, rgba(13, 28, 22, 0.5), rgba(13, 28, 22, 0.18) 28%, rgba(13, 28, 22, 0.84));
  }

  .hero-content {
    padding: clamp(7.75rem, 15svh, 10rem) 0 3.15rem;
  }

  h1 {
    max-width: 10.8ch;
    margin-top: 0.75rem;
    font-size: clamp(3.05rem, 13vw, 4.05rem);
    line-height: 1.02;
  }

  .hero-subtitle {
    margin-top: 1.15rem;
    font-size: 1.04rem;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    justify-items: center;
    gap: 0.9rem;
    width: 100%;
    margin-top: 1.65rem;
  }

  .hero-actions .button {
    width: min(100%, 23rem);
  }

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

  .hero-helper {
    max-width: 24rem;
    margin: 1.15rem auto 0;
    text-align: center;
    line-height: 1.55;
  }

  .trust-strip div {
    min-height: 6.4rem;
  }

  .section-heading-left {
    text-align: center;
  }

  .section-heading-left h2,
  .section-heading-left .section-copy {
    margin-inline: auto;
  }

  .map-layout {
    gap: 1.25rem;
  }

  .form-actions {
    justify-items: center;
  }

  .form-actions .button {
    width: min(100%, 22rem);
    margin-inline: auto;
  }

  .problem-layout,
  .outcome-heading,
  .mechanism-heading,
  .process-heading,
  .faq-heading,
  .fit-heading,
  .ethics-layout > :first-child {
    text-align: center;
  }

  .problem-layout h2,
  .outcome-heading h2,
  .mechanism-heading h2,
  .process-heading h2,
  .faq-heading h2,
  .fit-heading h2,
  .ethics-layout > :first-child h2 {
    margin-inline: auto;
  }

  .problem-section .copy-stack,
  .outcome-heading p:not(.eyebrow),
  .mechanism-heading p:not(.eyebrow),
  .process-heading p:not(.eyebrow),
  .faq-heading p:not(.eyebrow),
  .fit-heading p:not(.eyebrow) {
    margin-inline: auto;
    text-align: center;
  }

  .author-layout {
    justify-items: center;
    text-align: center;
    gap: 1.1rem;
  }

  .author-avatar {
    justify-self: center;
  }

  .author-copy {
    justify-items: center;
  }

  .author-copy .copy-stack {
    justify-items: center;
    text-align: center;
  }

  .author-copy .copy-stack p {
    max-width: 28rem;
  }

  .site-footer {
    padding-bottom: 6rem;
  }

  .footer-inner,
  .footer-copy,
  .footer-nav {
    justify-items: center;
    text-align: center;
  }
}

@media (min-width: 700px) {
  .container {
    width: min(var(--container), calc(100% - 3rem));
  }

  h1 {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .hero-content {
    padding-bottom: 5.5rem;
  }

  .button {
    width: auto;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1.2fr) auto;
    gap: 2rem;
  }

  .footer-nav {
    justify-items: end;
    text-align: right;
  }

  .trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .problem-layout {
    max-width: 64rem;
  }

  .outcome-heading,
  .mechanism-heading,
  .process-heading,
  .faq-heading,
  .fit-heading {
    margin-bottom: 1.75rem;
  }

  .map-layout,
  .beta-layout,
  .ethics-layout,
  .application-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }

  .map-layout,
  .beta-layout,
  .ethics-layout,
  .application-layout {
    gap: 2.5rem;
  }

  .author-layout {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.5rem;
    padding: 1.7rem;
  }

  .author-layout h2 {
    max-width: none;
  }

  .principle-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
  }

  .principle-list li {
    min-height: 11rem;
    padding: 1rem;
    border: 0;
    border-radius: 0;
    background: var(--surface);
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fit-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 1040px) {
  h1 {
    font-size: 5.35rem;
  }

  .hero-subtitle {
    font-size: 1.22rem;
  }

  .section {
    padding: var(--section-space-lg) 0;
  }
}

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

  .button,
  .mobile-sticky-cta {
    transition: none;
  }
}
