:root {
  color-scheme: light;
  --ink: #12100d;
  --ink-2: #2a231c;
  --muted: #675c50;
  --paper: #fff8ea;
  --panel: #fffdf7;
  --cream: #ffe8b4;
  --sky: #bdefff;
  --mint: #b9ffd4;
  --orange: #e87722;
  --yellow: #fff06b;
  --rose: #ffd4e2;
  --line: #12100d;
  --dark: #12100d;
  --shadow: 0 12px 0 rgba(18, 16, 13, .18);
  --max: 1160px;
  --rail-width: 76px;
  --header-height: 78px;
  --radius: 8px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

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

body {
  min-height: 100%;
  margin: 0;
  padding-left: var(--rail-width);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(18, 16, 13, .06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 16, 13, .06) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px, 34px 34px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--orange);
  color: #fff;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-underline-offset: .18em;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 90;
  top: .8rem;
  left: .8rem;
  transform: translateY(-140%);
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--yellow);
  padding: .7rem 1rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms var(--ease);
}

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

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 3px solid var(--line);
  background: rgba(255, 248, 234, .94);
  padding: 0 max(1rem, calc((100vw - var(--max)) / 2));
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  width: 46px;
  height: 46px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--mint);
  box-shadow: 0 4px 0 var(--line);
}

.brand span {
  display: grid;
  gap: .12rem;
}

.brand strong,
.footer-brand span {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: .95;
}

.brand small {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 900;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .35rem;
}

.top-nav a {
  border-radius: 999px;
  padding: .55rem .85rem;
  color: var(--ink-2);
  font-weight: 900;
  text-decoration: none;
}

.top-nav a:hover,
.top-nav a[aria-current="page"] {
  background: var(--ink);
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 46px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  padding: .78rem 1rem;
  box-shadow: 0 6px 0 var(--line);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform 150ms var(--ease), box-shadow 150ms var(--ease), background 150ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 0 var(--line);
}

.button:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--line);
}

.button svg {
  width: 1.1rem;
  height: 1.1rem;
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-light {
  background: var(--panel);
  color: var(--ink);
}

.button-quiet {
  background: transparent;
  box-shadow: none;
  color: var(--ink-2);
}

.button-quiet:hover {
  background: var(--panel);
  box-shadow: 0 6px 0 var(--line);
}

.side-rail {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: var(--rail-width);
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  border-right: 3px solid var(--line);
  background: #fffdf7;
  padding: calc(var(--header-height) + 1.2rem) .7rem 1rem;
}

.side-rail a {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 5px 0 var(--line);
  text-decoration: none;
  transition: transform 150ms var(--ease), box-shadow 150ms var(--ease), background 150ms var(--ease);
}

.side-rail a:nth-child(2n) {
  background: var(--sky);
}

.side-rail a:nth-child(3n) {
  background: var(--cream);
}

.side-rail a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--line);
  background: var(--mint);
}

.side-rail a.is-current {
  background: var(--orange);
  color: #fff;
}

.side-rail svg {
  width: 22px;
  height: 22px;
}

.side-rail a::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + .65rem);
  top: 50%;
  min-width: max-content;
  transform: translateY(-50%) translateX(-4px);
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: .35rem .6rem;
  font-size: .75rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms var(--ease), transform 140ms var(--ease);
}

.side-rail a:hover::after,
.side-rail a:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

main {
  overflow: hidden;
}

#calculator,
#features,
#pro,
#waitlist {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.hero-section {
  min-height: clamp(600px, calc(86svh - var(--header-height)), 760px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .68fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  border-bottom: 3px solid var(--line);
  padding: clamp(2rem, 5vw, 4.6rem) max(1rem, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(189, 239, 255, .72), rgba(255, 232, 180, .64) 48%, rgba(185, 255, 212, .64)),
    var(--paper);
}

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

.eyebrow {
  margin: 0 0 .7rem;
  color: var(--ink-2);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0;
  line-height: .95;
}

h1 {
  max-width: 8ch;
  margin-bottom: 1rem;
  font-size: clamp(4.2rem, 12vw, 9.5rem);
}

h2 {
  margin-bottom: .8rem;
  font-size: clamp(2rem, 5vw, 4.3rem);
}

h3 {
  margin-bottom: .55rem;
  font-size: 1.55rem;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 1.35rem;
  color: var(--ink-2);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
}

.hero-actions,
.signal-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem;
}

.signal-strip {
  margin-top: 1.4rem;
}

.signal-strip span {
  border: 3px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  padding: .45rem .72rem;
  box-shadow: 0 4px 0 rgba(18, 16, 13, .18);
  font-size: .82rem;
  font-weight: 900;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.phone-shell {
  width: min(100%, 390px);
  border: 4px solid var(--line);
  border-radius: 34px;
  background: #181511;
  padding: 1rem;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.phone-topbar {
  display: flex;
  align-items: center;
  gap: .65rem;
  border: 3px solid var(--line);
  border-radius: 22px 22px 8px 8px;
  background: var(--paper);
  padding: .8rem;
  font-weight: 900;
}

.phone-topbar img {
  width: 34px;
  height: 34px;
  border: 2px solid var(--line);
  border-radius: 8px;
}

.listing-preview,
.offer-preview-grid,
.verdict-preview {
  border: 3px solid var(--line);
  background: var(--panel);
}

.listing-preview {
  display: grid;
  gap: .2rem;
  margin-top: .75rem;
  border-radius: var(--radius);
  padding: 1rem;
}

.listing-preview small,
.offer-preview-grid small,
.verdict-card span,
.metric-grid span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.listing-preview strong {
  font-size: 1.1rem;
}

.offer-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin-top: .75rem;
  border-radius: var(--radius);
  padding: .75rem;
  background: var(--sky);
}

.offer-preview-grid div {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: .72rem;
}

.offer-preview-grid strong {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.45rem;
}

.verdict-preview {
  margin-top: .75rem;
  border-radius: var(--radius);
  background: var(--mint);
  padding: .9rem;
  text-align: center;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.section-intro,
.built-for-section,
.waitlist-section,
.page-shell {
  padding: clamp(2.5rem, 6vw, 5.2rem) max(1rem, calc((100vw - var(--max)) / 2));
}

.section-intro {
  max-width: 780px;
}

.section-intro p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 800;
}

.calculator-section,
.feature-section,
.why-section,
.math-section,
.pro-section,
.built-for-section,
.waitlist-section {
  border-bottom: 3px solid var(--line);
}

.why-section {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  padding: clamp(2.5rem, 6vw, 5.2rem) max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--panel);
}

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

.why-copy {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.why-copy p {
  margin-bottom: 0;
  border-top: 3px solid var(--line);
  padding-top: 1rem;
  color: var(--ink-2);
  font-size: 1.08rem;
  font-weight: 800;
}

.calculator-section {
  background: var(--panel);
}

.calculator-lead {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .78fr);
  gap: clamp(1rem, 3vw, 1.6rem);
  align-items: end;
  padding: clamp(2.4rem, 5vw, 4.5rem) max(1rem, calc((100vw - var(--max)) / 2)) 1.1rem;
}

.calculator-lead-copy {
  max-width: 760px;
}

.calculator-lead h2 {
  max-width: 760px;
  margin-bottom: .85rem;
  font-size: clamp(2.4rem, 5.5vw, 5.25rem);
}

.calculator-lead-copy p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 850;
}

.deal-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
}

.deal-flow article {
  min-height: 136px;
  display: grid;
  align-content: space-between;
  gap: .75rem;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 7px 0 var(--line);
  padding: .85rem;
}

.deal-flow article:nth-child(2) {
  background: var(--sky);
}

.deal-flow article:nth-child(3) {
  background: var(--mint);
}

.deal-flow span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  font-size: .78rem;
  font-weight: 900;
}

.deal-flow strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}

.deal-flow small {
  color: var(--ink-2);
  font-size: .84rem;
  font-weight: 850;
  line-height: 1.25;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  padding: 0 max(1rem, calc((100vw - var(--max)) / 2)) 1rem;
}

.category-strip span {
  border: 3px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  padding: .46rem .72rem;
  box-shadow: 0 4px 0 rgba(18, 16, 13, .18);
  font-size: .82rem;
  font-weight: 900;
}

.category-strip .featured {
  background: var(--yellow);
}

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .72fr);
  gap: 1.2rem;
  padding: 0 max(1rem, calc((100vw - var(--max)) / 2)) clamp(2.5rem, 6vw, 5.2rem);
}

.calculator-form,
.calculator-output,
.waitlist-form,
.support-grid article {
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.calculator-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  padding: 1rem;
}

label {
  display: grid;
  gap: .35rem;
  color: var(--ink-2);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

label span {
  color: var(--muted);
  font-size: .75rem;
  text-transform: none;
}

.wide {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  padding: .78rem .85rem;
  font-size: 1rem;
  font-weight: 800;
  text-transform: none;
}

textarea {
  resize: vertical;
}

.calculator-output {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background: var(--cream);
}

.math-section {
  background: var(--paper);
}

.math-panel {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(360px, .9fr);
  gap: clamp(1rem, 4vw, 2rem);
  align-items: stretch;
  padding: clamp(2.5rem, 6vw, 5.2rem) max(1rem, calc((100vw - var(--max)) / 2)) 1rem;
  min-width: 0;
}

.math-copy {
  display: grid;
  align-content: center;
  min-width: 0;
}

.math-copy h2 {
  max-width: 720px;
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 5vw, 4.45rem);
}

.math-copy p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 1.08rem;
  font-weight: 850;
}

.math-equation {
  display: grid;
  gap: .65rem;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
  padding: 1rem;
  min-width: 0;
}

.equation-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: .6rem;
  align-items: stretch;
}

.equation-row.is-top {
  grid-template-columns: 1fr;
}

.math-equation .equation-cell {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: .3rem;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: .8rem;
}

.math-equation .is-result .equation-cell {
  background: var(--yellow);
}

.math-equation small {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.math-equation strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1;
}

.math-equation b {
  display: grid;
  place-items: center;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
}

.math-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  padding: 0 max(1rem, calc((100vw - var(--max)) / 2)) clamp(2.5rem, 6vw, 5.2rem);
  min-width: 0;
}

.math-board article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .8rem;
  align-items: start;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 7px 0 var(--line);
  padding: 1rem;
}

.math-board article:nth-child(2) {
  background: var(--sky);
}

.math-board article:nth-child(3) {
  background: var(--mint);
}

.math-board article:nth-child(4) {
  background: var(--rose);
}

.math-board span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 4px 0 var(--line);
  font-weight: 900;
}

.math-board h3 {
  margin-bottom: .35rem;
}

.math-board p,
.pro-section p,
.pro-list span {
  color: var(--ink-2);
  font-weight: 800;
}

.verdict-card {
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--mint);
  padding: 1rem;
}

.verdict-card[data-verdict="pass"] {
  background: var(--rose);
}

.verdict-card[data-verdict="lowball"] {
  background: var(--yellow);
}

.verdict-card strong {
  display: block;
  margin: .2rem 0 .35rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: .92;
}

.verdict-card p {
  margin-bottom: 0;
  color: var(--ink-2);
  font-weight: 800;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.metric-grid div {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: .3rem;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: .9rem;
}

.metric-grid strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  line-height: .95;
}

.feature-section {
  background: var(--paper);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 3px solid var(--line);
  border-bottom: 3px solid var(--line);
}

.feature-list article {
  min-height: 280px;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  border-right: 3px solid var(--line);
  padding: clamp(1rem, 2.4vw, 1.6rem);
}

.feature-list article:nth-child(1) {
  background: var(--sky);
}

.feature-list article:nth-child(2) {
  background: var(--cream);
}

.feature-list article:nth-child(3) {
  background: var(--mint);
}

.feature-list article:nth-child(4) {
  border-right: 0;
  background: var(--rose);
}

.feature-list span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 4px 0 var(--line);
  font-weight: 900;
}

.feature-list p {
  margin-bottom: 0;
  color: var(--ink-2);
  font-weight: 750;
}

.built-for-section {
  display: grid;
  grid-template-columns: minmax(0, .65fr) minmax(0, 1fr);
  gap: 2rem;
  background: var(--panel);
}

.pro-section {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, .92fr);
  gap: 1.4rem;
  align-items: start;
  padding: clamp(2.5rem, 6vw, 5.2rem) max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--cream);
}

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

.pro-section p {
  max-width: 660px;
  font-size: 1.05rem;
}

.pro-list {
  display: grid;
  gap: .8rem;
}

.tier-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1rem;
}

.tier-split article {
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 6px 0 var(--line);
  padding: .9rem;
}

.tier-split article:nth-child(2) {
  background: var(--yellow);
}

.tier-split strong {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.2rem;
  line-height: 1;
}

.tier-split span {
  display: block;
  margin-top: .45rem;
  color: var(--ink-2);
  font-weight: 850;
}

.pro-list article {
  display: grid;
  grid-template-columns: minmax(150px, .36fr) minmax(0, 1fr);
  gap: .8rem;
  align-items: start;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.pro-list article:nth-child(1) {
  background: var(--sky);
}

.pro-list article:nth-child(2) {
  background: var(--mint);
}

.pro-list article:nth-child(3) {
  background: var(--rose);
}

.pro-list article:nth-child(4) {
  background: var(--yellow);
}

.pro-list strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.3rem;
  line-height: 1;
}

.audience-grid {
  display: grid;
  gap: .8rem;
}

.audience-grid article {
  display: grid;
  grid-template-columns: minmax(160px, .42fr) minmax(0, 1fr);
  gap: .8rem;
  align-items: center;
  border-top: 3px solid var(--line);
  padding: 1rem 0;
}

.audience-grid strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.35rem;
}

.audience-grid span {
  color: var(--ink-2);
  font-weight: 800;
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(300px, .58fr);
  gap: 1.4rem;
  align-items: start;
  background: var(--sky);
}

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

.waitlist-section p {
  max-width: 640px;
  color: var(--ink-2);
  font-size: 1.05rem;
  font-weight: 800;
}

.waitlist-form {
  display: grid;
  gap: .75rem;
  padding: 1rem;
  background: var(--panel);
}

.form-honeypot {
  display: none !important;
}

.waitlist-form .button {
  width: 100%;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  text-transform: none;
}

.check-row input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: .2rem;
  accent-color: var(--orange);
}

.form-status {
  min-height: 1.35rem;
  margin: 0;
  color: var(--ink-2);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(220px, .6fr);
  gap: 1.5rem;
  padding: clamp(2rem, 5vw, 4rem) max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: #fff;
}

.site-footer p {
  max-width: 560px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, .78);
  font-weight: 750;
}

.site-footer nav {
  display: grid;
  gap: .45rem;
  align-content: start;
}

.site-footer nav a {
  color: rgba(255, 255, 255, .88);
  font-weight: 900;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: var(--yellow);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .7rem;
  border-top: 2px solid rgba(255, 255, 255, .18);
  padding-top: 1rem;
  color: rgba(255, 255, 255, .72);
  font-size: .88rem;
  font-weight: 900;
}

.page-shell {
  min-height: calc(100svh - var(--header-height));
}

.page-hero {
  max-width: 900px;
}

.page-hero.compact {
  padding-bottom: 1rem;
}

.page-hero h1,
.legal-page h1 {
  max-width: 900px;
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.page-hero p,
.legal-page p {
  max-width: 820px;
  color: var(--ink-2);
  font-size: 1.08rem;
  font-weight: 800;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: var(--max);
}

.support-grid article {
  display: grid;
  align-content: start;
  gap: .65rem;
  min-height: 230px;
  padding: 1.1rem;
}

.support-grid article:nth-child(1) {
  background: var(--sky);
}

.support-grid article:nth-child(2) {
  background: var(--cream);
}

.support-grid article:nth-child(3) {
  background: var(--mint);
}

.support-grid article:nth-child(4) {
  background: var(--rose);
}

.support-grid p {
  color: var(--ink-2);
  font-weight: 800;
}

.legal-page {
  background: var(--panel);
}

.legal-page p {
  max-width: 920px;
  border-top: 3px solid var(--line);
  padding-top: 1rem;
}

@media (max-width: 1120px) and (min-width: 981px) {
  .brand small {
    display: none;
  }

  .top-nav a {
    padding: .48rem .62rem;
    font-size: .9rem;
  }

  .header-cta {
    padding-inline: .75rem;
  }

}

@media (max-width: 980px) {
  #calculator,
  #features,
  #pro,
  #waitlist {
    scroll-margin-top: 140px;
  }

  body {
    padding-left: 0;
  }

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

  .top-nav,
  .header-cta {
    display: none;
  }

  .side-rail {
    position: sticky;
    top: 68px;
    bottom: auto;
    width: 100%;
    height: 58px;
    flex-direction: row;
    justify-content: center;
    border-bottom: 3px solid var(--line);
    border-right: 0;
    padding: .35rem .5rem;
    gap: .35rem;
  }

  .side-rail a {
    width: 38px;
    height: 38px;
    border-width: 2px;
    box-shadow: 0 3px 0 var(--line);
  }

  .side-rail svg {
    width: 18px;
    height: 18px;
  }

  .side-rail a::after {
    display: none;
  }

  .hero-section,
  .calculator-lead,
  .calculator-shell,
  .why-section,
  .math-panel,
  .pro-section,
  .built-for-section,
  .waitlist-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  h1 {
    max-width: 100%;
  }

  .hero-visual {
    justify-items: start;
  }

  .phone-shell {
    transform: none;
  }

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

  .feature-list article:nth-child(2) {
    border-right: 0;
  }

  .feature-list article:nth-child(3),
  .feature-list article:nth-child(4) {
    border-top: 3px solid var(--line);
  }
}

@media (max-width: 680px) {
  .brand small {
    display: none;
  }

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

  .hero-section,
  .calculator-lead,
  .section-intro,
  .math-panel,
  .math-board,
  .built-for-section,
  .waitlist-section,
  .page-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-section {
    padding-top: 1.4rem;
    padding-bottom: 1.5rem;
  }

  h1 {
    font-size: clamp(3.4rem, 16vw, 4.2rem);
  }

  .hero-lede {
    margin-bottom: 1rem;
    font-size: 1.08rem;
  }

  .calculator-lead {
    padding-top: 2.2rem;
  }

  .calculator-lead h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .calculator-lead-copy p:last-child {
    font-size: 1rem;
  }

  .deal-flow {
    grid-template-columns: 1fr;
  }

  .deal-flow article {
    min-height: 0;
    grid-template-columns: auto minmax(0, .36fr) minmax(0, 1fr);
    align-items: center;
    align-content: center;
    gap: .65rem;
    box-shadow: 0 5px 0 var(--line);
  }

  .deal-flow strong {
    font-size: 1rem;
  }

  .deal-flow small {
    font-size: .82rem;
  }

  .hero-visual {
    display: none;
  }

  .calculator-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button-quiet {
    width: auto;
    min-height: 40px;
    padding: .55rem .75rem;
  }

  .signal-strip {
    gap: .55rem;
    margin-top: 1rem;
  }

  .signal-strip span {
    flex: 1 1 calc(50% - .55rem);
    text-align: center;
  }

  .calculator-form,
  .metric-grid,
  .feature-list,
  .math-board,
  .tier-split,
  .support-grid,
  .pro-list article,
  .audience-grid article {
    grid-template-columns: 1fr;
  }

  .math-panel {
    gap: 1rem;
    padding-top: 2.2rem;
  }

  .math-copy h2 {
    max-width: 100%;
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .math-copy p:last-child {
    font-size: 1rem;
  }

  .math-equation {
    gap: .5rem;
    padding: .7rem;
  }

  .equation-row {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: .45rem;
  }

  .math-equation .equation-cell {
    min-height: 70px;
  }

  .math-board article {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .feature-list article,
  .feature-list article:nth-child(2),
  .feature-list article:nth-child(3),
  .feature-list article:nth-child(4) {
    min-height: 220px;
    border-right: 0;
    border-top: 3px solid var(--line);
  }

  .feature-list article:first-child {
    border-top: 0;
  }

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

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