:root {
  color-scheme: dark;
  --bg: #05060b;
  --bg-soft: #0b1020;
  --panel: rgba(13, 18, 34, 0.82);
  --panel-solid: #101624;
  --text: #f7fbff;
  --muted: #a9b4c7;
  --line: rgba(117, 233, 255, 0.18);
  --electric: #31e8ff;
  --violet: #9d5cff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(49, 232, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 80% 0%, rgba(157, 92, 255, 0.14), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(5, 6, 11, 0.62);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  background: rgba(5, 6, 11, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(157, 92, 255, 0.58);
  border-radius: 7px;
  background: #030305;
  box-shadow: 0 0 28px rgba(157, 92, 255, 0.34);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.82);
  transform-origin: center 38%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 12px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.site-nav .nav-cta {
  color: #031017;
  background: var(--electric);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 11, 0.97) 0%, rgba(5, 6, 11, 0.82) 38%, rgba(5, 6, 11, 0.34) 78%),
    linear-gradient(180deg, rgba(5, 6, 11, 0.08), #05060b 96%);
}

.hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 48px;
  padding: 126px 0 70px;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--electric);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 7.4vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 16px;
  font-size: 1.32rem;
}

.hero-lede,
.copy-stack,
.apply-grid > div > p,
.founding-copy,
.promise-copy,
.success-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  padding: 13px 18px;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #031017;
  background: linear-gradient(135deg, var(--electric), #76ffdf);
  box-shadow: 0 0 34px rgba(49, 232, 255, 0.24);
}

.cta-note {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.signal-panel {
  align-self: end;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 12, 24, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.signal-panel div {
  padding: 16px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
}

.signal-panel strong {
  display: block;
  font-size: 1.42rem;
}

.signal-label {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding-block: 96px;
}

.intro {
  padding-top: 88px;
  text-align: center;
}

.intro h2,
.intro .copy-stack {
  margin-inline: auto;
}

.copy-stack {
  max-width: 760px;
}

.copy-stack p:last-child,
.founding-copy p:last-child {
  margin-bottom: 0;
}

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

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

.feature-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(16, 22, 36, 0.94), rgba(9, 13, 24, 0.82)),
    radial-gradient(circle at 0% 0%, rgba(49, 232, 255, 0.12), transparent 60%);
  color: var(--text);
  font-weight: 800;
}

.feature-card span,
.feature-card small {
  display: block;
  width: 100%;
}

.feature-card small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.process-band {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(49, 232, 255, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(16, 22, 36, 0.9), rgba(5, 6, 11, 0.9));
}

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

.phase-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 6, 11, 0.48);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.phase-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  color: var(--electric);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.phase-card h3 {
  font-size: 1.8rem;
}

.phase-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--muted);
}

.phase-card p {
  margin-top: auto;
  margin-bottom: 0;
  color: var(--muted);
}

.phase-card strong {
  color: var(--text);
}

.fit-section,
.founding-grid,
.apply-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

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

.fit-list p {
  position: relative;
  margin: 0;
  padding: 18px 18px 18px 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--muted);
}

.fit-list p::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 20px var(--electric);
}

.founding-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(157, 92, 255, 0.14), transparent 30rem),
    var(--bg-soft);
}

.founding-copy {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(5, 6, 11, 0.48);
}

.founding-free-note {
  margin: 24px 0;
  padding: 22px;
  border: 1px solid rgba(49, 232, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(13, 18, 34, 0.78), rgba(5, 6, 11, 0.42)),
    radial-gradient(circle at 100% 0%, rgba(49, 232, 255, 0.1), transparent 62%);
}

.founding-free-note h3 {
  margin-bottom: 14px;
  font-size: 1.28rem;
}

.founding-free-note p {
  font-size: 1rem;
}

.launch-style-section {
  padding-top: 72px;
}

.launch-style-section .section-heading p:not(.section-kicker) {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.launch-style-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 6, 11, 0.58);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
}

.launch-style-card.creator-led {
  border-color: rgba(49, 232, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(11, 24, 38, 0.76), rgba(5, 6, 11, 0.6)),
    radial-gradient(circle at 0% 0%, rgba(49, 232, 255, 0.18), transparent 62%);
}

.launch-style-card.supported {
  border-color: rgba(157, 92, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(21, 14, 38, 0.76), rgba(5, 6, 11, 0.6)),
    radial-gradient(circle at 100% 0%, rgba(157, 92, 255, 0.2), transparent 62%);
}

.style-label {
  color: var(--electric);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.launch-style-card h3 {
  margin: 36px 0 16px;
  font-size: 2rem;
}

.launch-style-card p,
.launch-note p {
  color: var(--muted);
}

.launch-style-card p {
  margin-bottom: 0;
}

.launch-note {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.launch-note p {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.promise-grid p {
  min-height: 128px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-weight: 800;
}

.promise-copy {
  max-width: 840px;
  margin-bottom: 0;
}

.apply-section {
  background:
    radial-gradient(circle at 70% 20%, rgba(157, 92, 255, 0.18), transparent 28rem),
    var(--bg-soft);
}

.apply-cta-grid {
  align-items: center;
}

.apply-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 6, 11, 0.68);
  box-shadow: var(--shadow);
}

.cohort-badge {
  display: inline-flex;
  width: auto;
  margin-bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(49, 232, 255, 0.22);
  border-radius: 999px;
  background: rgba(49, 232, 255, 0.08);
  color: var(--electric);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.apply-card p {
  color: var(--muted);
  font-size: 1.02rem;
}

.apply-card .button {
  width: 100%;
}

.apply-supporting-note {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.apply-supporting-note + .apply-supporting-note {
  margin-top: 8px;
}

.apply-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 6, 11, 0.68);
  box-shadow: var(--shadow);
}

.apply-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.apply-form input,
.apply-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 13px 14px;
}

.apply-form textarea {
  resize: vertical;
}

.apply-form input:focus,
.apply-form textarea:focus {
  border-color: var(--electric);
  outline: none;
  box-shadow: 0 0 0 3px rgba(49, 232, 255, 0.16);
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.site-footer img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
}

.site-footer a {
  color: var(--electric);
}

.success-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(157, 92, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 20% 30%, rgba(49, 232, 255, 0.16), transparent 26rem),
    var(--bg);
}

.success-shell {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 34px;
  padding-block: 48px;
}

.success-card {
  max-width: 720px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 6, 11, 0.72);
  box-shadow: var(--shadow);
}

.success-card h1 {
  font-size: clamp(2.6rem, 8vw, 5rem);
}

.success-card .button {
  margin-top: 14px;
}

@media (max-width: 1020px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .phase-grid,
  .promise-grid,
  .launch-style-grid {
    grid-template-columns: 1fr;
  }

  .phase-card,
  .launch-style-card {
    min-height: auto;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    background: rgba(5, 6, 11, 0.96);
  }

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

  .site-nav a {
    padding: 13px;
  }

  .hero,
  .hero-grid {
    min-height: 720px;
  }

  .hero-grid,
  .fit-section,
  .founding-grid,
  .apply-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: end;
    gap: 26px;
  }

  .signal-panel {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

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

  .hero,
  .hero-grid {
    min-height: 790px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 6, 11, 0.45), rgba(5, 6, 11, 0.96) 58%, #05060b 98%),
      linear-gradient(90deg, rgba(5, 6, 11, 0.64), rgba(5, 6, 11, 0.18));
  }

  .hero-grid {
    padding: 124px 0 48px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

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

  .signal-panel,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .signal-panel div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .section {
    padding-block: 68px;
  }

  .intro {
    padding-top: 54px;
  }

  .feature-card,
  .promise-grid p {
    min-height: auto;
  }

  .phase-card,
  .launch-style-card,
  .founding-copy,
  .apply-form,
  .apply-card,
  .success-card {
    padding: 18px;
  }

  .phase-topline {
    display: grid;
    gap: 4px;
  }

  .site-footer {
    flex-direction: column;
  }
}
