:root {
  --ink: #171815;
  --muted: #626257;
  --paper: #f7f1e7;
  --paper-deep: #eee4d6;
  --surface: #fffaf1;
  --surface-clean: #fffdf8;
  --line: #ded4c3;
  --green: #193e2d;
  --green-soft: #e3ece4;
  --copper: #a86238;
  --danger: #8d392e;
  --shadow: 0 20px 54px rgba(23, 24, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

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

.mobile-headline,
.mobile-trust-line,
.mobile-proof-strip,
.mobile-sticky-cta {
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 30px;
  color: #fbf7ee;
  background: rgba(25, 62, 45, 0.94);
  border-bottom: 1px solid rgba(255, 250, 241, 0.13);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.hero-assurance,
.demo-link-row,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--green);
  background: #fbf7ee;
  border-radius: 8px;
}

.nav-links {
  gap: 22px;
  color: rgba(251, 247, 238, 0.82);
  font-size: 14px;
}

.nav-links a,
.site-footer a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: #ffffff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--green);
  background: #fbf7ee;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  padding: 124px 30px 64px;
  background: var(--paper);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  width: min(1180px, 100%);
  min-height: calc(88svh - 96px);
  margin: 0 auto;
}

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

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.28;
}

p,
li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 30px;
  color: #42433b;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fffaf1;
  background: var(--green);
  border-color: var(--green);
}

.button.ghost,
.button.secondary {
  color: var(--green);
  background: transparent;
  border-color: rgba(25, 62, 45, 0.24);
}

.button.secondary {
  background: var(--surface-clean);
}

.hero-assurance {
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-assurance li {
  padding: 8px 10px;
  color: #45463e;
  background: rgba(255, 250, 241, 0.62);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 750;
}

.founder-panel {
  display: grid;
  gap: 18px;
  align-self: stretch;
}

.founder-photo,
.founder-note {
  margin: 0;
  overflow: hidden;
  background: var(--surface-clean);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.founder-photo figcaption {
  padding: 10px 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.founder-photo a {
  color: var(--green);
  font-weight: 800;
}

.founder-note {
  padding: 28px;
  box-shadow: none;
}

.founder-note h2 {
  margin-bottom: 14px;
  font-size: clamp(27px, 3vw, 38px);
}

.signature-line,
.letter-signature {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.signature-line strong,
.signature-line span,
.letter-signature span,
.letter-signature strong {
  display: block;
}

.signature-line strong,
.letter-signature span {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.signature-line span,
.letter-signature strong {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.owner-strip {
  padding: 28px 30px;
  background: var(--green);
}

.owner-strip p {
  width: min(1060px, 100%);
  margin: 0 auto;
  color: #fff7e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.28;
}

.section {
  width: min(1180px, calc(100% - 60px));
  margin: 0 auto;
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 720px;
}

.section-heading p {
  font-size: 17px;
}

.letter-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 50px;
  align-items: start;
}

.editorial-letter {
  padding: clamp(30px, 5vw, 58px);
  background: var(--surface-clean);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.editorial-letter p {
  font-size: 18px;
}

.owner-questions {
  position: sticky;
  top: 96px;
  padding: 26px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.owner-questions blockquote {
  margin: 18px 0 0;
  padding: 0 0 0 16px;
  border-left: 3px solid var(--copper);
}

.owner-questions blockquote p {
  margin: 0;
  color: #34352e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.42;
}

.fine-print {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
}

.trust-row,
.guardrail-grid,
.press-grid,
.why-list,
.economics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.trust-row article,
.guardrail-grid article,
.press-card,
.why-list article,
.economics-grid article {
  min-height: 190px;
  padding: 24px;
  background: rgba(255, 250, 241, 0.42);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-row span,
.press-card span,
.process-rail span,
.band-label {
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.guardrail-grid article {
  background: rgba(255, 250, 241, 0.58);
}

.guardrail-grid h3 {
  color: var(--danger);
}

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

.press-card {
  min-height: 250px;
  background: var(--surface-clean);
}

.press-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green);
  font-weight: 850;
}

.proof-band {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  padding: 24px;
  background: var(--green-soft);
  border: 1px solid rgba(25, 62, 45, 0.16);
  border-radius: 8px;
}

.proof-band p {
  margin: 6px 0 0;
  font-size: 14px;
}

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

.wordmark-list li {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 10px;
  color: var(--green);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(25, 62, 45, 0.16);
  border-radius: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.1;
  text-align: center;
}

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

.why-list article {
  min-height: 160px;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(8, minmax(128px, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--green);
}

.process-rail li {
  position: relative;
  min-height: 220px;
  padding: 28px 18px 0 0;
  border-right: 1px solid var(--line);
}

.process-rail li::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  background: var(--green);
  border-radius: 50%;
}

.process-rail h3 {
  margin-top: 10px;
}

.process-rail p {
  font-size: 14px;
}

.continuity-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: var(--surface-clean);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.table-column + .table-column {
  border-left: 1px solid var(--line);
}

.table-column h3 {
  margin: 0;
  padding: 20px 24px;
  color: #fffaf1;
  background: var(--green);
}

.table-column div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  padding: 20px 24px;
  border-top: 1px solid var(--line);
}

.table-column span {
  color: var(--ink);
  font-weight: 850;
}

.table-column p {
  margin: 0;
}

.workflow-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.workflow-tab {
  min-height: 40px;
  padding: 0 14px;
  color: var(--green);
  background: transparent;
  border: 1px solid rgba(25, 62, 45, 0.24);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
}

.workflow-tab.is-active {
  color: #fffaf1;
  background: var(--green);
  border-color: var(--green);
}

.workflow-demo {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  overflow: hidden;
  background: var(--surface-clean);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.demo-source,
.demo-panel {
  min-height: 320px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.demo-panel:last-child {
  border-right: 0;
}

.demo-source {
  background: #fdf6ea;
}

.demo-source > span,
.demo-panel > span,
.review-label {
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.artifact-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding: 14px;
  background: rgba(25, 62, 45, 0.07);
  border: 1px solid rgba(25, 62, 45, 0.14);
  border-radius: 8px;
}

.artifact-row span,
.artifact-row strong {
  font-size: 13px;
}

.artifact-row strong {
  color: var(--green);
}

.demo-panel ul,
.fit-columns ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.demo-panel li,
.fit-columns li {
  padding: 10px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.45;
}

.status-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.status-list strong {
  color: var(--green);
  font-size: 12px;
}

.review-label {
  display: block;
  margin-top: 26px;
  color: var(--danger);
}

.demo-link-row {
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.demo-link-row p {
  margin: 0;
  font-size: 14px;
}

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

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

.fit-columns article {
  padding: 28px;
  background: var(--surface-clean);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--surface-clean);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
}

.valuation-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 44px;
  width: min(1180px, calc(100% - 60px));
  margin: 0 auto;
  padding: 92px 0 112px;
}

.valuation-copy {
  align-self: start;
  position: sticky;
  top: 96px;
}

.valuation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: var(--surface-clean);
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fffefb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

textarea {
  resize: vertical;
}

.full-span {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 20px;
  margin: 0;
  font-size: 13px;
}

.site-footer {
  justify-content: center;
  gap: 24px;
  padding: 26px 30px;
  color: rgba(255, 250, 241, 0.74);
  background: var(--green);
  font-size: 14px;
}

.site-footer span {
  color: #fffaf1;
  font-weight: 850;
}

@media (max-width: 1080px) {
  .hero-inner,
  .letter-shell,
  .valuation-section {
    grid-template-columns: 1fr;
  }

  .founder-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .owner-questions,
  .valuation-copy {
    position: static;
  }

  .trust-row,
  .guardrail-grid,
  .economics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 24px;
  }

  .workflow-demo {
    grid-template-columns: 1fr;
  }

  .demo-source,
  .demo-panel {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .demo-panel:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  [id] {
    scroll-margin-top: 66px;
  }

  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .site-header {
    min-height: 56px;
    padding: 10px 16px;
  }

  .brand span:last-child {
    display: inline;
    font-size: 14px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 16px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 16px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    color: #fffaf1;
    background: var(--green);
    border: 1px solid rgba(255, 250, 241, 0.16);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(23, 24, 21, 0.26);
    font-weight: 850;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    padding: 80px 18px 36px;
  }

  .hero-inner {
    min-height: auto;
    gap: 24px;
  }

  .hero-copy {
    max-width: none;
  }

  h1 {
    margin-bottom: 18px;
    font-size: 36px;
    line-height: 1.08;
  }

  h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  h3 {
    font-size: 17px;
  }

  p,
  li {
    font-size: 15px;
    line-height: 1.55;
  }

  .desktop-headline {
    display: none;
  }

  .mobile-headline {
    display: inline;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 0.07em;
  }

  .hero-lede {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.44;
  }

  .hero-actions {
    margin-bottom: 14px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-secondary,
  .hero-assurance {
    display: none;
  }

  .mobile-trust-line {
    display: block;
    margin: 0 0 22px;
    padding-left: 12px;
    color: #42433b;
    border-left: 3px solid var(--copper);
    font-size: 14px;
    line-height: 1.45;
  }

  .founder-panel,
  .press-grid,
  .continuity-table,
  .fit-columns,
  .valuation-form {
    grid-template-columns: 1fr;
  }

  .founder-panel {
    gap: 12px;
  }

  .founder-note {
    order: 1;
    padding: 20px;
  }

  .founder-photo {
    order: 2;
    box-shadow: none;
  }

  .founder-photo img {
    aspect-ratio: 16 / 7;
    object-position: center 36%;
  }

  .founder-photo figcaption {
    padding: 8px 10px;
    font-size: 11px;
    line-height: 1.35;
  }

  .founder-note h2 {
    font-size: 27px;
  }

  .owner-strip {
    display: none;
  }

  .section,
  .valuation-section {
    width: min(100% - 36px, 1180px);
    padding: 50px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

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

  .editorial-letter,
  .owner-questions,
  .valuation-form,
  .fit-columns article {
    padding: 22px;
  }

  .editorial-letter p {
    font-size: 16px;
  }

  .owner-questions {
    margin-top: 4px;
  }

  .owner-questions blockquote {
    margin-top: 14px;
  }

  .owner-questions blockquote p {
    font-size: 18px;
  }

  .trust-row,
  .guardrail-grid,
  .why-list,
  .economics-grid {
    display: block;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-row article,
  .guardrail-grid article,
  .why-list article,
  .economics-grid article {
    min-height: auto;
    padding: 18px 0;
    background: transparent;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-row article:first-child,
  .guardrail-grid article:first-child,
  .why-list article:first-child,
  .economics-grid article:first-child {
    padding-top: 18px;
  }

  .trust-row span,
  .press-card span,
  .process-rail span,
  .band-label {
    font-size: 11px;
  }

  .press-grid {
    display: none;
  }

  .mobile-proof-strip {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
    padding: 16px;
    background: rgba(255, 253, 248, 0.64);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .mobile-proof-strip div {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 6px 10px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid var(--line);
  }

  .mobile-proof-strip div:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .mobile-proof-strip div:last-child {
    padding-bottom: 0;
  }

  .mobile-proof-strip span {
    grid-column: 1;
    grid-row: 1 / span 3;
    align-self: start;
    color: var(--copper);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-proof-strip strong {
    grid-column: 2;
    color: var(--green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.14;
  }

  .proof-band {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 0;
    padding: 18px;
  }

  .wordmark-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .wordmark-list li {
    min-height: 44px;
    padding: 8px;
    font-size: 15px;
  }

  .process-rail {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .process-rail li {
    min-height: auto;
    padding: 18px 0 18px 24px;
    border-right: 0;
    border-left: 1px solid var(--green);
    border-bottom: 1px solid var(--line);
  }

  .process-rail li::before {
    top: 24px;
    left: -6px;
  }

  .continuity-table {
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .table-column {
    background: var(--surface-clean);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
  }

  .table-column + .table-column {
    border-left: 0;
    border-top: 0;
    margin-top: 14px;
  }

  .table-column div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 17px 18px;
  }

  .workflow-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .workflow-tab {
    min-height: 42px;
    padding: 0 10px;
    font-size: 14px;
  }

  .workflow-demo {
    display: grid;
    gap: 10px;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .demo-source,
  .demo-panel {
    min-height: auto;
    padding: 18px;
    background: var(--surface-clean);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .demo-panel:last-child {
    border-bottom: 1px solid var(--line);
  }

  .artifact-row {
    margin-top: 18px;
    padding: 12px;
  }

  .demo-panel li,
  .fit-columns li {
    padding: 8px 0;
    font-size: 14px;
  }

  .review-label {
    margin-top: 18px;
  }

  .demo-link-row {
    gap: 10px;
  }

  .demo-link-row .button {
    width: 100%;
  }

  .economics-section {
    padding-top: 36px;
  }

  .faq-list summary {
    padding: 18px;
  }

  .faq-list p {
    padding: 0 18px 18px;
  }

  .valuation-section {
    gap: 22px;
    padding-bottom: 78px;
  }

  .valuation-form {
    gap: 12px;
    padding: 20px;
  }

  input,
  select,
  textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .valuation-form .button {
    min-height: 50px;
  }

  .site-footer {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 430px) {
  .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand span:last-child {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .section,
  .valuation-section {
    width: min(100% - 32px, 1180px);
  }

  .founder-photo img {
    aspect-ratio: 16 / 6.5;
  }

  .button {
    min-height: 48px;
    padding: 0 14px;
    font-size: 15px;
  }

  .mobile-proof-strip div {
    grid-template-columns: 1fr;
  }

  .mobile-proof-strip span,
  .mobile-proof-strip strong {
    grid-column: auto;
    grid-row: auto;
  }

  .status-list li {
    align-items: flex-start;
  }

  .status-list strong {
    flex: 0 0 auto;
  }
}
