:root,
html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0e1118;
  --bg-2: #1a1e28;
  --bg-raised: #1a1e28;
  --bg-muted: #141822;
  --bg-panel: rgba(22, 26, 36, 0.88);
  --border: rgba(200, 195, 185, 0.10);
  --border-strong: rgba(200, 195, 185, 0.18);
  --text: #f0ece6;
  --text-2: #b8b0a4;
  --text-3: #7d7770;
  --cyan: #3dcae6;
  --cyan-soft: rgba(61, 202, 230, 0.10);
  --red: #e87080;
  --red-soft: rgba(232, 112, 128, 0.12);
  --orange: #dea050;
  --orange-soft: rgba(222, 160, 80, 0.12);
  --amber: #d0b458;
  --amber-soft: rgba(208, 180, 88, 0.12);
  --purple: #9490f0;
  --purple-soft: rgba(148, 144, 240, 0.12);
  --green: #5cc9a0;
  --green-soft: rgba(92, 201, 160, 0.12);
  --shadow-soft: 0 12px 36px rgba(8, 6, 4, 0.28);
  --shadow-1: 0 1px 0 rgba(8, 6, 4, 0.50), 0 24px 56px rgba(8, 6, 4, 0.30);
  --shadow-2: 0 1px 0 rgba(8, 6, 4, 0.55), 0 42px 110px rgba(8, 6, 4, 0.42);
  --hero-backdrop: linear-gradient(145deg, rgba(28, 32, 42, 0.96), rgba(20, 23, 32, 0.93));
  --body-gradient-a: rgba(61, 202, 230, 0.12);
  --body-gradient-b: rgba(148, 144, 240, 0.11);
  --header-bg: transparent;
  --header-bg-scrolled: rgba(14, 17, 24, 0.90);
  --grid-line: rgba(255, 255, 255, 0.045);
  --mobile-menu-bg: rgba(14, 17, 24, 0.98);
  --section-band-bg: rgba(26, 30, 40, 0.46);
  --card-sheen: rgba(255, 255, 255, 0.035);
  --card-bg: rgba(26, 30, 40, 0.74);
  --soft-surface: rgba(255, 255, 255, 0.025);
  --input-bg: rgba(255, 255, 255, 0.04);
  --button-bg: rgba(255, 255, 255, 0.03);
  --primary-button-text: #071018;
  --skip-text: #081018;
  --font-sans: "Manrope", "Segoe UI Variable", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #eef4fa;
  --bg-2: #f8fbfe;
  --bg-raised: #ffffff;
  --bg-muted: #e2ebf5;
  --bg-panel: rgba(255, 255, 255, 0.88);
  --border: rgba(14, 34, 58, 0.10);
  --border-strong: rgba(14, 34, 58, 0.18);
  --text: #12253a;
  --text-2: #556c84;
  --text-3: #8297ad;
  --cyan: #18bbde;
  --cyan-soft: rgba(24, 187, 222, 0.12);
  --red: #d84e61;
  --red-soft: rgba(216, 78, 97, 0.14);
  --orange: #d96d1b;
  --orange-soft: rgba(217, 109, 27, 0.14);
  --amber: #d7891a;
  --amber-soft: rgba(215, 137, 26, 0.14);
  --purple: #755ae5;
  --purple-soft: rgba(117, 90, 229, 0.14);
  --green: #0c9965;
  --green-soft: rgba(12, 153, 101, 0.14);
  --shadow-soft: 0 12px 36px rgba(15, 32, 55, 0.08);
  --shadow-1: 0 1px 0 rgba(14, 34, 58, 0.05), 0 18px 42px rgba(14, 34, 58, 0.09);
  --shadow-2: 0 1px 0 rgba(14, 34, 58, 0.07), 0 28px 84px rgba(14, 34, 58, 0.14);
  --hero-backdrop: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 255, 0.94));
  --body-gradient-a: rgba(24, 187, 222, 0.14);
  --body-gradient-b: rgba(109, 142, 248, 0.10);
  --header-bg: transparent;
  --header-bg-scrolled: rgba(248, 251, 254, 0.92);
  --grid-line: rgba(15, 25, 50, 0.04);
  --mobile-menu-bg: rgba(248, 251, 254, 0.98);
  --section-band-bg: rgba(255, 255, 255, 0.50);
  --card-sheen: rgba(255, 255, 255, 0.62);
  --card-bg: rgba(255, 255, 255, 0.78);
  --soft-surface: rgba(14, 34, 58, 0.035);
  --input-bg: rgba(255, 255, 255, 0.72);
  --button-bg: rgba(255, 255, 255, 0.70);
  --primary-button-text: #071018;
  --skip-text: #071018;
  --font-sans: "Manrope", "Segoe UI Variable", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at 82% 4%, var(--body-gradient-a), transparent 34rem),
    radial-gradient(circle at 14% 16%, var(--body-gradient-b), transparent 32rem),
    var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7), transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7), transparent 90%);
}

main,
.site-header,
.footer {
  position: relative;
  z-index: 1;
}

body.nav-open {
  overflow: hidden;
}

main > section,
.footer {
  scroll-margin-top: 76px;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

::selection {
  background: var(--cyan-soft);
  color: var(--text);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--cyan);
  color: var(--skip-text);
  font-weight: 700;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: border-color 240ms ease, background 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  background: var(--header-bg-scrolled);
  backdrop-filter: blur(18px);
}

.nav {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 134px;
  height: auto;
}

.brand-logo-light,
.footer-logo-light {
  display: none;
}

html[data-theme="light"] .brand-logo-dark,
html[data-theme="light"] .footer-logo-dark {
  display: none;
}

html[data-theme="light"] .brand-logo-light,
html[data-theme="light"] .footer-logo-light {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--text-2);
  font-size: 0.93rem;
  font-weight: 650;
}

.nav-links a:not(.btn):hover {
  color: var(--text);
}

.theme-toggle {
  width: 40px;
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0;
  background: var(--button-bg);
  color: var(--text-2);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--border-strong);
  color: var(--text);
}

.theme-icon {
  width: 16px;
  height: 16px;
}

.theme-icon-moon {
  display: none;
}

html[data-theme="light"] .theme-icon-sun {
  display: none;
}

html[data-theme="light"] .theme-icon-moon {
  display: block;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-panel);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

.btn {
  min-height: 46px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 0 18px;
  background: var(--button-bg);
  color: var(--text);
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: var(--cyan);
  border-color: transparent;
  color: var(--primary-button-text);
  box-shadow: 0 0 0 1px rgba(61, 202, 230, 0.18), 0 0 24px rgba(61, 202, 230, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(61, 202, 230, 0.32), 0 0 36px rgba(61, 202, 230, 0.55);
}

.btn-secondary {
  background: var(--bg-panel);
}

.btn-small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.84rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  padding: clamp(72px, 9vw, 132px) 0 clamp(80px, 9vw, 140px);
}

.hero-copy,
.hero-stage {
  min-width: 0;
}

.eyebrow {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
}

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

h1 {
  max-width: 9.8ch;
  margin-bottom: 28px;
  font-size: clamp(4.1rem, 8vw, 7.6rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  font-weight: 800;
}

#hero-title {
  padding-bottom: 0.18em;
  background-image: linear-gradient(135deg, var(--text) 0%, var(--text) 55%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.title-mobile {
  display: none;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.hero-lede,
.section-copy {
  max-width: 66ch;
  color: var(--text-2);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.6;
}

.hero-lede {
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  margin: 18px 0 0;
  max-width: 56ch;
  color: var(--text-3);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.55;
}

.inline-cta {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(61, 202, 230, 0.08), rgba(61, 202, 230, 0.02));
}

.inline-cta-copy {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.case-card,
.program-card,
.contact-form {
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, var(--card-sheen), transparent),
    var(--hero-backdrop);
  box-shadow: var(--shadow-2);
}

.case-card {
  padding: clamp(22px, 3vw, 34px);
}

.case-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.case-card h2 {
  max-width: 15ch;
  margin-top: 8px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  letter-spacing: -0.04em;
}

.case-card h2 span {
  display: inline;
}

.pill {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 11px;
  border: 1px solid var(--border);
  background: var(--button-bg);
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.pill-red {
  border-color: rgba(232, 112, 128, 0.28);
  background: var(--red-soft);
  color: var(--red);
}

.case-flow {
  display: grid;
  gap: 12px;
}

.flow-node {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 13px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--soft-surface);
}

.flow-node-active {
  border-color: rgba(61, 202, 230, 0.32);
  background: var(--cyan-soft);
  box-shadow: 0 0 0 1px rgba(61, 202, 230, 0.08), 0 18px 46px rgba(61, 202, 230, 0.08);
}

.flow-node-next {
  border-color: rgba(148, 144, 240, 0.22);
  background: var(--purple-soft);
  box-shadow: 0 0 0 1px rgba(148, 144, 240, 0.05), 0 14px 34px rgba(148, 144, 240, 0.05);
}

.node-id {
  grid-row: span 2;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--soft-surface);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 750;
}

.flow-node-active .node-id {
  background: rgba(61, 202, 230, 0.16);
  box-shadow: 0 0 0 6px rgba(61, 202, 230, 0.04);
}

.flow-node-next .node-id {
  color: var(--purple);
  background: rgba(148, 144, 240, 0.12);
  box-shadow: 0 0 0 5px rgba(148, 144, 240, 0.03);
}

.flow-node strong {
  min-width: 0;
  line-height: 1.2;
}

.flow-node small {
  min-width: 0;
  color: var(--text-2);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.flow-line {
  width: 1px;
  height: 18px;
  margin-left: 31px;
  background: var(--border-strong);
}

.section {
  padding: clamp(64px, 6.5vw, 96px) 0;
}

.section-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--section-band-bg);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-head {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-head-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head-centered .section-copy {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.feature-grid {
  margin-top: 44px;
}

.section-head .eyebrow,
.two-col .eyebrow,
.program-layout .eyebrow,
.join-panel .eyebrow {
  margin-bottom: 14px;
}

.section-head h2,
.two-col h2,
.program-layout h2,
.join-panel h2 {
  margin-bottom: 20px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.stat-card,
.feature-card,
.deadline-grid article,
.faq-list details {
  border: 1px solid var(--border);
  border-radius: 16px;
  background:
    linear-gradient(180deg, var(--card-sheen), transparent),
    var(--card-bg);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  padding: 28px;
}

.stat-card h3,
.feature-card h3 {
  margin-bottom: 10px;
}

.stat-number {
  display: block;
  margin-bottom: 22px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.stat-card p,
.feature-card p,
.deadline-grid p,
.program-card li,
.faq-list p,
.footer p,
.form-note {
  color: var(--text-2);
  line-height: 1.58;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 4px 0 0;
  min-height: 1.4em;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-2);
}

.form-status[data-kind="error"] {
  color: rgba(220, 130, 120, 0.95);
}

.form-status[data-kind="success"] {
  color: var(--cyan);
}

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

.feature-card {
  padding: 28px;
}

.icon-chip {
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(61, 202, 230, 0.22);
  background: var(--cyan-soft);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
  position: relative;
}

.workflow-column {
  padding: 26px 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--soft-surface);
  opacity: 0.78;
  transition: opacity 0.2s ease;
}

.workflow-column .eyebrow {
  color: var(--text-3);
}

.workflow-column.highlighted {
  border-color: rgba(61, 202, 230, 0.45);
  background: linear-gradient(180deg, rgba(61, 202, 230, 0.10), rgba(61, 202, 230, 0.04));
  box-shadow: 0 0 0 1px rgba(61, 202, 230, 0.12), var(--shadow-soft);
  opacity: 1;
}

.workflow-column.highlighted .eyebrow {
  color: var(--cyan);
}

.workflow-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
}

.workflow-list-x li {
  color: var(--text-2);
}

.workflow-list-x li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--text-3);
}

.workflow-list-arrow li {
  color: var(--text);
}

.workflow-list-arrow li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cyan);
  line-height: 1.5;
}

.workflow-result {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--text-3);
  font-size: 0.92rem;
  font-style: italic;
}

.workflow-result-strong {
  color: var(--cyan);
  border-top-color: rgba(61, 202, 230, 0.22);
  font-style: normal;
  font-weight: 600;
}

.timeline-list,
.check-list {
  display: grid;
  gap: 13px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.timeline-list li,
.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  line-height: 1.5;
}

.timeline-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
}

.deadline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.deadline-grid article {
  padding: 22px;
}

.deadline-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deadline-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.program-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.founder-centered {
  text-align: center;
}

.founder-quote {
  margin-bottom: 28px;
  font-style: italic;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  letter-spacing: -0.04em;
}

.founder-card-centered {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 32px;
}

.founder-photo {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--border-strong);
  box-shadow: 0 0 0 4px var(--cyan-soft);
  background: var(--soft-surface);
}

.founder-meta {
  display: grid;
  gap: 4px;
  text-align: center;
}

.founder-meta strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.founder-meta > span {
  color: var(--text-2);
  font-size: 0.92rem;
}

.founder-body-centered {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.founder-body-centered .section-copy {
  margin: 0 0 18px;
}

.founder-body-centered .section-copy:last-child {
  margin-bottom: 0;
}

.founder-name-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 120ms ease;
}

.founder-link:hover,
.founder-link:focus-visible {
  color: var(--cyan);
}

.partner-benefits {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partner-benefits h3 {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  margin-bottom: 24px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.025em;
}

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

.benefit-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  line-height: 1.55;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
}

.benefit-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cyan);
  line-height: 1.5;
}

.faq-layout {
  align-items: start;
}

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

.faq-list details {
  padding: 20px 22px;
  border-left: 3px solid transparent;
  transition: border-left-color 200ms ease, background 200ms ease;
}

.faq-list details[open] {
  border-left-color: var(--cyan);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding-right: 32px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.015em;
  list-style: none;
}

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

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-2);
  border-bottom: 2px solid var(--text-2);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 200ms ease, border-color 200ms ease;
}

.faq-list details[open] summary::after {
  border-color: var(--cyan);
  transform: translateY(-30%) rotate(225deg);
}

.faq-list p {
  margin: 13px 0 0;
  max-width: none;
}

.final-cta {
  min-height: auto;
  padding: clamp(64px, 6.5vw, 96px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.join-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
  gap: clamp(20px, 3vw, 32px) clamp(28px, 5vw, 56px);
  align-items: stretch;
}

.join-panel-centered > .section-head {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.join-panel .partner-benefits,
.join-panel .contact-form {
  height: 100%;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 36px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--input-bg);
  color: var(--text);
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input {
  min-height: 46px;
}

.contact-form textarea {
  min-height: 124px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-3);
}

.form-note {
  margin: 0;
  font-size: 0.78rem;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(190px, 0.7fr) minmax(160px, 0.5fr);
  gap: 28px;
  padding: 46px 0 58px;
}

.footer-logo {
  width: 136px;
  height: auto;
  margin-bottom: 18px;
}

.footer h2 {
  margin-bottom: 13px;
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  padding: 4px 0;
  color: var(--text-2);
}

.footer a:hover {
  color: var(--text);
}

@media (max-width: 980px) {
  .hero,
  .two-col,
  .program-layout,
  .join-panel {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    position: fixed;
    top: 16px;
    right: auto;
    left: min(calc(100vw - 58px), 332px);
    z-index: 100;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border-color: transparent !important;
    background: var(--cyan) !important;
    color: var(--primary-button-text) !important;
    box-shadow: var(--shadow-soft);
  }

  .nav-links {
    position: fixed;
    inset: 76px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--mobile-menu-bg);
    box-shadow: var(--shadow-2);
  }

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

  .nav-links a {
    padding: 13px 14px;
    border-radius: 14px;
  }

  .nav-links .btn {
    margin-top: 6px;
  }

  .hero {
    min-height: auto;
  }

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

  h1 {
    max-width: 100%;
    font-size: clamp(4rem, 10vw, 6.4rem);
  }

  .title-desktop {
    display: none;
  }

  .title-mobile {
    display: inline;
  }

  .hero-stage {
    max-width: 680px;
  }

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

@media (min-width: 981px) and (max-height: 820px) {
  .hero {
    padding: 48px 0 56px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(3.8rem, 7.1vw, 6.35rem);
  }

  .hero-lede {
    margin-bottom: 24px;
  }

  .case-card {
    padding: 26px;
  }

  .case-card-top {
    margin-bottom: 22px;
  }

  .case-card h2 {
    font-size: clamp(1.65rem, 2.75vw, 2.25rem);
  }

  .flow-node {
    padding: 13px 15px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  .shell {
    width: 100%;
    max-width: 100%;
    padding-inline: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero {
    display: block;
    padding: clamp(72px, 18vw, 104px) 14px 76px;
    overflow: hidden;
  }

  .hero-copy,
  .hero-lede {
    width: min(100%, 360px);
    max-width: 360px;
  }

  .hero-stage {
    width: min(100%, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
  }

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

  .hero-actions,
  .hero-actions .btn {
    max-width: 360px;
  }

  .case-card {
    width: 100%;
    max-width: calc(100vw - 28px);
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    padding-inline: 14px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 4.35rem);
  }

  .case-card h2 {
    max-width: 100%;
  }

  .case-card h2 span {
    display: block;
  }

  .stat-grid,
  .feature-grid,
  .workflow-panel,
  .deadline-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .case-card-top {
    flex-direction: column;
  }

  .inline-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 22px 18px;
  }

  .inline-cta .btn {
    width: 100%;
    justify-content: center;
  }

}

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