:root {
  --navy: #0a1628;
  --navy-2: #10233e;
  --blue: #2563eb;
  --blue-2: #0ea5e9;
  --ink: #1e293b;
  --muted: #64748b;
  --line: #dbe4f0;
  --soft: #f8fafc;
  --white: #ffffff;
  --success: #14b8a6;
  --shadow: 0 24px 80px rgba(10, 22, 40, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(219, 228, 240, 0.78);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.28);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  transition: color 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 9px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  inset: 72px 0 0;
  z-index: 40;
  display: none;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding: 24px 20px;
  background: var(--white);
}

.nav-drawer.is-open {
  display: flex;
}

.nav-drawer a {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
}

.nav-drawer .button {
  margin-top: 12px;
  border-bottom: 0;
  color: var(--white);
}

.nav-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #1d4ed8;
}

.button-outline {
  border-color: var(--line);
  color: var(--navy);
  background: var(--white);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 12px 32px rgba(10, 22, 40, 0.08);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.button-large {
  min-height: 52px;
  padding-inline: 24px;
  font-size: 15px;
}

.section {
  padding: clamp(76px, 9vw, 124px) 0;
}

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(37, 99, 235, 0.22), transparent 32%),
    linear-gradient(135deg, var(--navy) 0%, #0d1e35 58%, #07111f 100%);
}

.section-dark::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.32;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
}

.hero {
  min-height: calc(86svh - 72px);
  display: grid;
  align-items: center;
  padding: clamp(52px, 6vw, 78px) 0 clamp(34px, 4vw, 54px);
}

.hero-grid,
.compliance-grid,
.form-grid,
.investor-grid,
.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.hero h1,
.section h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(40px, 5.25vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.section h2 {
  color: var(--navy);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.04;
}

.section-dark h2 {
  color: var(--white);
}

.hero-subhead,
.lead {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.7vw, 20px);
  max-width: 760px;
}

.lead {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #7dd3fc;
}

.hero-actions {
  margin-top: 28px;
  flex-wrap: wrap;
}

.proof-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.proof-bar span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 650;
}

.social-proof-bar {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  background: var(--soft);
}

.proof-shelf {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.proof-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.proof-tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
  color: var(--navy);
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.proof-divider {
  color: var(--line);
  font-size: 18px;
}

.proof-stat {
  color: var(--muted);
  font-size: 13px;
}

.proof-stat strong {
  color: var(--navy);
}

.hero-visual {
  min-height: 500px;
}

.diagram {
  position: sticky;
  top: 110px;
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 44px 44px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 32px 100px rgba(0, 0, 0, 0.26);
}

.diagram-node,
.diagram-layer,
.investor-cluster span {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(125, 211, 252, 0.38);
  border-radius: var(--radius);
  background: rgba(10, 22, 40, 0.76);
  backdrop-filter: blur(10px);
}

.diagram-node {
  left: 26px;
  top: 206px;
  padding: 18px 22px;
  color: var(--white);
  font-weight: 800;
}

.diagram-layer {
  left: 50%;
  top: 50%;
  width: min(250px, 48%);
  transform: translate(-50%, -50%);
  padding: 22px;
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.22);
}

.diagram-layer span {
  display: block;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 14px;
}

.diagram-layer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.diagram-layer li {
  position: relative;
  padding-left: 18px;
}

.diagram-layer li::before {
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-2);
  content: "";
  transform: translateY(-50%);
}

.investor-cluster span {
  right: 28px;
  padding: 11px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
}

.investor-cluster span:nth-child(1) {
  top: 96px;
}

.investor-cluster span:nth-child(2) {
  top: 197px;
  right: 76px;
}

.investor-cluster span:nth-child(3) {
  top: 300px;
}

.investor-cluster span:nth-child(4) {
  top: 390px;
  right: 84px;
}

.diagram-svg {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.d-line {
  stroke: rgba(14, 165, 233, 0.7);
  stroke-width: 1px;
  stroke-dasharray: 4 4;
  animation: dash-flow 2.8s linear infinite;
}

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

.three-grid,
.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.feature-tile,
.segment-card,
.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(10, 22, 40, 0.03);
}

.info-card,
.segment-card,
.pricing-card {
  padding: 28px;
}

.info-card h3,
.feature-tile h3,
.segment-card h3,
.pricing-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.18;
}

.info-card p,
.feature-tile p,
.segment-card p,
.pricing-card li {
  margin: 0;
  color: var(--muted);
}

.icon-shape {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: var(--blue);
  background: #eff6ff;
  font-weight: 900;
}

.flow-section,
.sponsors-section,
.pricing-section,
.faq-section,
.founder-section {
  background: var(--soft);
}

.step-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.step-card {
  position: relative;
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
}

.step-card::after {
  position: absolute;
  right: -18px;
  top: 36px;
  width: 22px;
  height: 1px;
  background: var(--blue);
  content: "";
}

.step-card:last-child::after {
  display: none;
}

.step-card span {
  display: block;
  margin-bottom: 36px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.step-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.15;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.feature-tile {
  position: relative;
  min-height: 210px;
  padding: 28px 26px 26px;
  overflow: hidden;
}

.feature-tile::before {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(14, 165, 233, 0.12)),
    radial-gradient(circle at 65% 35%, var(--blue), transparent 34%);
  content: "";
}

.feature-tile::after {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.feature-tile:hover::after {
  transform: scaleX(1);
}

.segment-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
}

.segment-label {
  margin-bottom: 18px !important;
  color: var(--blue) !important;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.segment-card strong {
  display: block;
  margin-top: auto;
  padding-top: 26px;
  color: var(--navy);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
  background: var(--white);
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 18px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--navy);
  background: #f1f7ff;
  font-size: 13px;
  font-weight: 850;
}

td {
  color: var(--muted);
  font-size: 14px;
}

td:first-child {
  color: var(--navy);
  font-weight: 750;
}

th:nth-child(2),
td:nth-child(2) {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.045);
  font-weight: 850;
}

tr:last-child td {
  border-bottom: 0;
}

.caption,
.pricing-note {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--muted);
}

.comparison-section {
  padding-top: clamp(48px, 5vw, 72px);
}

.compliance-grid {
  grid-template-columns: 1fr 0.75fr;
  align-items: start;
}

.callout-stack {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.callout-stack p {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
}

.callout-stack a,
.compliance-copy a {
  color: #7dd3fc;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.compliance-copy {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: clamp(24px, 5vw, 58px);
}

.compliance-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
}

.pricing-card.featured {
  border-color: rgba(37, 99, 235, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.badge {
  align-self: flex-start;
  margin: 0 0 18px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--blue);
  background: #eff6ff;
  font-size: 12px;
  font-weight: 850;
}

.price {
  margin: 8px 0 24px;
  color: var(--navy);
  font-size: 42px;
  font-weight: 850;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 22px;
}

.pricing-card li::before,
.thesis-list li::before,
.trust-list p::before {
  position: absolute;
  left: 0;
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

.pricing-card .button {
  margin-top: auto;
}

.form-grid {
  grid-template-columns: 0.78fr 1fr;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 32px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-success {
  border: 1px solid var(--success);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--navy);
  background: rgba(20, 184, 166, 0.06);
  font-weight: 600;
  text-align: center;
}

.form-success p {
  margin: 0;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 12px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

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

.trust-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.trust-list p,
.thesis-list li {
  position: relative;
  margin: 0;
  padding-left: 26px;
  color: var(--muted);
}

.investor-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.investor-grid {
  grid-template-columns: 1fr 420px;
}

.thesis-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.compact-form {
  grid-template-columns: 1fr;
}

.founder-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.founder-photo {
  position: sticky;
  top: 100px;
}

.photo-placeholder {
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.founder-copy {
  max-width: 840px;
}

.founder-extra {
  margin-top: 14px;
}

.founder-name {
  margin-top: 24px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.founder-name a {
  color: var(--blue);
}

.founder-name a:hover,
.founder-name a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-grid {
  grid-template-columns: 0.42fr 1fr;
  align-items: start;
}

.accordion {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  float: right;
  color: var(--blue);
  content: "+";
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.site-footer {
  padding: 58px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.site-footer .brand {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer-grid p {
  max-width: 300px;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 13px;
}

.footer-column a {
  font-size: 14px;
  transition: color 180ms ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.footer-bottom p {
  max-width: 860px;
  margin: 0;
  font-size: 12px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.thank-you-shell {
  max-width: 820px;
}

.thank-you-shell .brand {
  margin-bottom: 54px;
  color: var(--white);
}

/* GSAP will set these, keep transforms on the compositor. */
h1,
.eyebrow,
.hero-subhead,
.hero-actions .button,
.proof-bar span,
.diagram,
.info-card,
.step-card,
.feature-tile,
.segment-card,
.pricing-card,
.contact-form,
.thesis-list li,
.accordion details {
  will-change: transform, opacity;
}

@keyframes dash-flow {
  to {
    stroke-dashoffset: -24;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
    justify-self: end;
  }

  .hero-grid,
  .compliance-grid,
  .form-grid,
  .investor-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 460px;
  }

  .diagram {
    position: relative;
    top: auto;
    min-height: 460px;
  }

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

  .compliance-copy {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 14px;
    padding: 12px 16px;
  }

  .nav-actions .button-outline {
    display: none;
  }

  .button {
    min-height: 40px;
    padding-inline: 14px;
  }

  .hero {
    min-height: auto;
    padding: 28px 0 24px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-actions,
  .nav-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 100%;
    min-width: 0;
    padding-inline: 10px;
  }

  .section-shell {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero h1,
  .section h2 {
    font-size: clamp(31px, 9.2vw, 39px);
  }

  .hero-subhead {
    margin-top: 16px;
    font-size: 15px;
  }

  .proof-bar {
    flex-wrap: wrap;
    margin-right: 0;
    overflow-x: visible;
    padding-bottom: 2px;
  }

  .proof-bar span {
    flex: 0 0 auto;
  }

  .hero-visual {
    min-height: 258px;
  }

  .diagram {
    min-height: 258px;
  }

  .diagram-node {
    top: 24px;
    left: 18px;
    z-index: 5;
    padding: 12px 14px;
    font-size: 13px;
  }

  .diagram-layer {
    top: 46%;
    width: calc(100% - 36px);
    padding: 16px;
  }

  .diagram-layer ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 10px;
    font-size: 11px;
  }

  .investor-cluster span {
    right: auto;
    left: 18px;
    padding: 8px 10px;
    font-size: 11px;
  }

  .investor-cluster span:nth-child(1) {
    top: auto;
    bottom: 52px;
  }

  .investor-cluster span:nth-child(2) {
    top: auto;
    right: 18px;
    left: auto;
    bottom: 52px;
  }

  .investor-cluster span:nth-child(3) {
    top: auto;
    bottom: 14px;
  }

  .investor-cluster span:nth-child(4) {
    top: auto;
    right: 18px;
    left: auto;
    bottom: 14px;
  }

  .feature-grid,
  .pricing-grid,
  .three-grid,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    position: relative;
    top: auto;
  }

  .photo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    font-size: 20px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
