:root {
  --bg: #ffffff;
  --bg-soft: #f7f8f7;
  --bg-ink: #0b1612;
  --surface: #ffffff;
  --surface-muted: #eef1ef;
  --text: #090b0a;
  --muted: #5f6863;
  --subtle: #7d8781;
  --border: #e3e8e5;
  --border-strong: #cdd6d1;
  --green: #16a36a;
  --green-deep: #064e3b;
  --green-soft: #e9f8f1;
  --gold: #16a36a;
  --gold-soft: #d8f5e7;
  --focus: #16a36a;
  --danger: #d14343;
  --danger-soft: #fff5f5;
  --shadow: 0 18px 55px rgba(9, 11, 10, 0.08);
  --radius: 8px;
  --radius-sm: 6px;
  --container: 1120px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--green-deep);
  border: 1px solid var(--border);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(227, 232, 229, 0.86);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1200px, calc(100% - 32px));
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  color: var(--green-deep);
  text-decoration: none;
  font-size: 15px;
  font-weight: 720;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand--image {
  display: inline-flex;
  width: 164px;
  max-width: 42vw;
  align-items: center;
}

.brand--image img {
  display: block;
  width: 100%;
  height: auto;
}

.brand--footer {
  width: 132px;
  max-width: 100%;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-panel a:not(.button) {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 560;
  transition: color 160ms ease;
}

.nav-panel a:not(.button):hover,
.nav-panel a:not(.button):focus-visible {
  color: var(--green-deep);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--green-deep);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle__line {
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
  transform: translateY(-3.25px) rotate(-45deg);
}

.section {
  padding: 104px 0;
}

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: 76px 0 92px;
  background:
    radial-gradient(circle at 82% 22%, rgba(22, 163, 106, 0.1), transparent 31%),
    linear-gradient(180deg, rgba(247, 248, 247, 0.92), rgba(255, 255, 255, 0) 46%),
    var(--bg);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.92fr);
  gap: 68px;
  align-items: center;
}

.hero__content {
  max-width: 680px;
}

.hero__visual {
  position: relative;
  min-width: 0;
  min-height: 620px;
  isolation: isolate;
}

.hero__visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8% -18% 4% 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 163, 106, 0.24), rgba(22, 163, 106, 0) 68%);
  filter: blur(14px);
}

.hero__visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 34px;
  right: -30px;
  width: 176px;
  height: 176px;
  opacity: 0.32;
  background-image: radial-gradient(rgba(6, 78, 59, 0.45) 1px, transparent 1px);
  background-size: 12px 12px;
}

.hero__photo {
  position: absolute;
  inset: 0 0 92px 0;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface-muted);
  box-shadow: 0 30px 80px rgba(6, 78, 59, 0.15);
}

.hero__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 63% center;
}

.hero__visual .hub-panel {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 0;
  left: -32px;
  max-width: 430px;
  box-shadow: 0 24px 64px rgba(9, 11, 10, 0.18);
}

.hero__visual .hub-panel__top,
.hero__visual .hub-panel__foot {
  padding: 14px 16px;
}

.hero__visual .hub-panel__list {
  padding: 6px 10px;
}

.hero__visual .hub-panel__list article {
  padding: 13px 10px;
}

.hero__visual .hub-panel h2 {
  font-size: 15px;
}

.hero__visual .hub-panel p {
  font-size: 12px;
  line-height: 1.45;
}

.hero__visual .hub-panel__foot span {
  padding: 5px 8px;
  font-size: 11px;
}

.section-label {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li,
.button,
.text-link {
  text-wrap: pretty;
}

h1 {
  margin-bottom: 24px;
  color: var(--text);
  font-size: 60px;
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: clamp(34px, 4.3vw, 56px);
  font-weight: 720;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  color: var(--text);
  font-size: 18px;
  font-weight: 680;
  line-height: 1.28;
}

.hero__lead {
  max-width: 630px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green-deep);
  border-radius: var(--radius-sm);
  background: var(--green-deep);
  color: #ffffff;
  padding: 12px 18px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 680;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-1px);
}

.button--small {
  min-height: 38px;
  padding: 10px 14px;
  font-size: 13px;
}

.button--ghost {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--border-strong);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: var(--green-deep);
  color: #ffffff;
  border-color: var(--green-deep);
}

.text-link {
  color: var(--green-deep);
  text-decoration: none;
  font-size: 14px;
  font-weight: 680;
  border-bottom: 1px solid var(--green);
}

.microcopy {
  margin: 0;
  color: var(--subtle);
  font-size: 13px;
}

.hub-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hub-panel__top,
.hub-panel__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-soft);
}

.hub-panel__title {
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 720;
}

.hub-panel__status {
  color: var(--muted);
  font-size: 12px;
  font-weight: 640;
}

.hub-panel__list {
  padding: 10px;
}

.hub-panel__list article {
  display: flex;
  gap: 14px;
  padding: 20px 16px;
  border-bottom: 1px solid var(--border);
}

.hub-panel__list article:last-child {
  border-bottom: 0;
}

.hub-panel h2 {
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1.25;
}

.hub-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.hub-panel__foot {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hub-panel__foot span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 620;
}

.marker {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.marker--green {
  background: var(--green);
}

.marker--gold {
  background: var(--gold);
}

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

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

.trust-strip__grid > div {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
}

.trust-strip__grid > div:first-child {
  padding-left: 0;
}

.trust-strip__grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-strip strong {
  color: var(--green-deep);
  font-size: 24px;
  font-weight: 760;
  line-height: 1;
}

.trust-strip span {
  max-width: 124px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

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

.section--ink {
  background: var(--bg-ink);
  color: rgba(255, 255, 255, 0.72);
}

#how-it-works {
  background:
    radial-gradient(circle at 86% 16%, rgba(22, 163, 106, 0.3), transparent 38%),
    radial-gradient(circle at 8% 92%, rgba(6, 78, 59, 0.42), transparent 42%),
    linear-gradient(135deg, #07110d 0%, #0b1f18 52%, #103d2e 100%);
}

.section--revenue-model {
  background:
    radial-gradient(circle at 12% 12%, rgba(22, 163, 106, 0.32), transparent 36%),
    radial-gradient(circle at 92% 88%, rgba(6, 78, 59, 0.52), transparent 44%),
    linear-gradient(145deg, #06100c 0%, #0b2118 48%, #124632 100%);
}

.section--ink h2,
.section--ink h3 {
  color: #ffffff;
}

.section--ink .section-label {
  color: var(--gold-soft);
}

.section--ink .section-heading p:not(.section-label) {
  color: rgba(255, 255, 255, 0.62);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading--wide {
  max-width: 820px;
}

.section-heading p:not(.section-label) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.64;
}

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

.insight-card,
.program-card,
.access-card,
.audience-list article,
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.insight-card {
  padding: 26px;
}

.insight-card p {
  margin-bottom: 24px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.58;
}

.insight-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.program-card {
  min-height: 288px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.program-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 163, 106, 0.34);
  box-shadow: 0 20px 48px rgba(6, 78, 59, 0.1);
}

.program-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.program-card__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-deep);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.program-card__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-card:hover .program-card__icon {
  background: var(--green-deep);
  color: #ffffff;
  transform: rotate(-4deg) scale(1.04);
}

.card-index {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 760;
}

.program-card h3,
.access-card h3,
.audience-list h3 {
  margin-bottom: 10px;
}

.program-card p,
.access-card p,
.audience-list p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.program-card ul,
.access-card ul {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: grid;
  gap: 8px;
}

.program-card li,
.access-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.program-card li::before,
.access-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 1.5px;
  background: var(--gold);
}

.steps {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.step {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.step span {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 760;
}

.step p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 72px;
  align-items: start;
}

.section-heading--sticky {
  position: sticky;
  top: 104px;
}

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

.audience-list article {
  padding: 22px 24px;
}

.audience-list p {
  margin-bottom: 0;
}

.testimonial-section {
  background:
    radial-gradient(circle at 88% 20%, rgba(22, 163, 106, 0.1), transparent 30%),
    #ffffff;
}

.testimonial-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(22, 163, 106, 0.2);
  border-radius: 14px;
  background: var(--green-soft);
  box-shadow: 0 24px 64px rgba(6, 78, 59, 0.08);
}

.testimonial-card__media {
  min-width: 0;
  min-height: 470px;
  margin: 0;
  overflow: hidden;
}

.testimonial-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 34% center;
}

.testimonial-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
}

.testimonial-card__content h2 {
  max-width: 620px;
  font-size: clamp(34px, 4vw, 50px);
}

.testimonial-card blockquote {
  position: relative;
  margin: 12px 0 22px;
  color: var(--green-deep);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 620;
  line-height: 1.35;
}

.testimonial-card__attribution {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.difference-section {
  background: var(--bg-soft);
}

.difference-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.difference-card {
  min-height: 490px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 40px;
}

.difference-card--before {
  border-color: rgba(209, 67, 67, 0.28);
  background: var(--danger-soft);
}

.difference-card--after {
  border-color: rgba(22, 163, 106, 0.3);
  background: var(--green-soft);
}

.difference-card__label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 28px;
}

.difference-card__label span {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.difference-card--before .difference-card__label span::before,
.difference-card--before .difference-card__label span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--danger);
}

.difference-card--before .difference-card__label span::before {
  transform: rotate(45deg);
}

.difference-card--before .difference-card__label span::after {
  transform: rotate(-45deg);
}

.difference-card--after .difference-card__label span {
  border: 1.5px solid var(--green);
  border-radius: 50%;
}

.difference-card--after .difference-card__label span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  width: 4px;
  height: 7px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
}

.difference-card h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.difference-card--before h3 {
  color: var(--danger);
}

.difference-card--after h3 {
  color: var(--green);
}

.difference-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.difference-card li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.48;
}

.difference-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.difference-card--before li::before {
  background: rgba(209, 67, 67, 0.56);
}

.difference-card--after li::before {
  background: var(--green);
}

.difference-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.difference-arrow span {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-deep);
  box-shadow: 0 14px 34px rgba(6, 37, 19, 0.16);
}

.difference-arrow span::before,
.difference-arrow span::after {
  content: "";
  position: absolute;
  top: 50%;
  background: var(--gold);
}

.difference-arrow span::before {
  left: 13px;
  width: 18px;
  height: 2px;
  transform: translateY(-50%);
}

.difference-arrow span::after {
  right: 13px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  background: transparent;
  transform: translateY(-50%) rotate(45deg);
}

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

.access-card {
  min-height: 430px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.access-card--featured {
  border-color: rgba(22, 163, 106, 0.36);
  box-shadow: var(--shadow);
}

.access-card__type {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  margin: 20px 0 8px;
  color: var(--text) !important;
  font-size: 34px !important;
  font-weight: 720;
  line-height: 1.05 !important;
}

.price span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 560;
}

.pricing-note {
  margin: 22px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.faq-container {
  max-width: 860px;
}

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

.faq-item {
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  padding: 22px 24px;
  color: var(--text);
  text-align: left;
  font-size: 17px;
  font-weight: 680;
  line-height: 1.35;
}

.faq-item button span {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px;
  height: 1.5px;
  background: var(--green);
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-panel {
  padding: 0 24px 24px;
}

.faq-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.cta-section {
  padding-top: 32px;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.62fr);
  gap: 54px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 12%, rgba(22, 163, 106, 0.36), transparent 34%),
    radial-gradient(circle at 6% 94%, rgba(22, 163, 106, 0.2), transparent 38%),
    linear-gradient(135deg, #06100c 0%, #0a2118 54%, #103c2d 100%);
  padding: 54px;
  box-shadow: 0 28px 74px rgba(6, 31, 22, 0.18);
}

.cta-card h2 {
  color: #ffffff;
}

.cta-card .section-label {
  color: var(--gold-soft);
}

.cta-card p:not(.section-label) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.waitlist-form {
  display: grid;
  gap: 14px;
}

.waitlist-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 650;
}

.waitlist-form em {
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
  font-weight: 520;
}

.waitlist-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text);
  padding: 11px 12px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.cta-card .waitlist-form .button {
  border-color: var(--green);
  background: var(--green);
}

.cta-card .waitlist-form .button:hover,
.cta-card .waitlist-form .button:focus-visible {
  border-color: #2bc982;
  background: #2bc982;
}

.cta-card .microcopy {
  color: rgba(255, 255, 255, 0.58) !important;
}

.cta-card .form-message {
  color: var(--gold-soft);
}

.waitlist-form input:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(22, 163, 106, 0.14);
}

.waitlist-form input[aria-invalid="true"] {
  border-color: var(--danger);
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 14px !important;
  font-weight: 650;
}

.form-message.is-error {
  color: var(--danger);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 34px 0;
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1fr);
  gap: 56px;
  align-items: start;
}

.footer-brand p,
.footer-meta p,
.footer-links a {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer-brand p {
  max-width: 420px;
  margin-top: 16px;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 10px;
  text-align: right;
}

.footer-meta p {
  max-width: 540px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-links a {
  text-decoration: none;
  font-weight: 640;
}

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

.partner-summary__body {
  padding: 28px 22px;
}

.partner-summary__body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.partner-summary__amount {
  margin-bottom: 10px;
  color: var(--text) !important;
  font-size: clamp(42px, 6vw, 64px) !important;
  font-weight: 760;
  line-height: 0.95 !important;
}

.sponsor-card-grid,
.metric-grid,
.fund-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.sponsor-card,
.metric-card,
.fund-card,
.revenue-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.sponsor-card {
  padding: 24px;
}

.sponsor-card--dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.sponsor-card span,
.metric-card h3,
.fund-card h3 {
  color: var(--green);
}

.sponsor-card span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sponsor-card h3 {
  margin-bottom: 10px;
  color: #ffffff;
}

.sponsor-card p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.62;
}

.sponsor-card strong {
  display: block;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gold-soft);
  font-size: 13px;
  line-height: 1.45;
}

.metric-card,
.fund-card {
  padding: 26px;
}

.metric-card strong,
.fund-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--green-deep);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 760;
  line-height: 1;
}

.metric-card h3,
.fund-card h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.metric-card p,
.fund-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.revenue-panel {
  padding: 30px;
}

.revenue-panel__intro {
  margin-bottom: 24px;
  color: var(--green);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.revenue-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 46px;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.revenue-row:last-of-type {
  border-bottom: 0;
}

.revenue-row span {
  color: var(--muted);
  font-size: 14px;
}

.revenue-row div {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-muted);
}

.revenue-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.revenue-row strong {
  color: var(--green-deep);
  font-size: 13px;
  text-align: right;
}

:focus-visible {
  outline: 3px solid rgba(218, 165, 32, 0.45);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero__grid,
  .split-layout,
  .cta-card,
  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__visual {
    width: min(100%, 760px);
    min-height: 650px;
    margin-inline: auto;
  }

  .hero__visual .hub-panel {
    left: 28px;
  }

  .testimonial-card {
    gap: 0;
  }

  .testimonial-card__media {
    min-height: 420px;
  }

  .section-heading--sticky {
    position: static;
  }

  .program-grid,
  .pricing-layout,
  .sponsor-card-grid,
  .metric-grid,
  .fund-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .difference-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .difference-card {
    min-height: auto;
  }

  .difference-arrow span {
    transform: rotate(90deg);
  }
}

@media (max-width: 780px) {
  body.menu-open {
    overflow: hidden;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-panel a:not(.button) {
    padding: 12px 10px;
    color: var(--text);
  }

  .nav-panel .button {
    margin-top: 8px;
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding-top: 58px;
  }

  .hero__visual {
    min-height: 0;
    display: grid;
  }

  .hero__photo {
    position: relative;
    inset: auto;
    aspect-ratio: 16 / 10;
  }

  .hero__visual .hub-panel {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(100% - 32px);
    max-width: none;
    margin: -38px auto 0;
  }

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

  .trust-strip__grid > div {
    min-height: 84px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
  }

  .trust-strip__grid > div:first-child {
    padding-left: 20px;
  }

  .trust-strip__grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip__grid > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .trust-strip__grid > div:last-child {
    padding-right: 20px;
  }

  .insight-grid,
  .program-grid,
  .pricing-layout,
  .sponsor-card-grid,
  .metric-grid,
  .fund-grid {
    grid-template-columns: 1fr;
  }

  .program-card,
  .access-card,
  .difference-card {
    min-height: auto;
  }

  .difference-card {
    padding: 28px 24px;
  }

  .difference-card li {
    font-size: 15px;
  }

  .cta-card {
    padding: 32px 24px;
  }

  .testimonial-card__media {
    min-height: 340px;
  }

  .testimonial-card__content {
    padding: 36px 28px;
  }

  .revenue-panel {
    padding: 24px;
  }

  .revenue-row {
    grid-template-columns: 1fr 42px;
    gap: 10px 14px;
  }

  .revenue-row div {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .container,
  .nav-shell {
    width: min(100% - 28px, var(--container));
  }

  .nav-shell {
    min-height: 66px;
  }

  .brand {
    font-size: 14px;
  }

  .brand--image {
    width: 142px;
  }

  .nav-panel {
    top: 66px;
    left: 14px;
    right: 14px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 56px);
  }

  h2 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .hero__lead,
  .section-heading p:not(.section-label),
  .cta-card p:not(.section-label) {
    font-size: 16px;
  }

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

  .trust-strip__grid > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .trust-strip span {
    max-width: none;
  }

  .testimonial-card__media {
    min-height: 280px;
  }

  .testimonial-card__content {
    padding: 32px 22px;
  }

  .testimonial-card blockquote {
    font-size: 21px;
  }

  .button {
    width: 100%;
  }

  .hub-panel__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .price {
    font-size: 30px !important;
  }
}

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