:root {
  --bg: #09111f;
  --bg-deep: #050914;
  --bg-panel: rgba(10, 18, 38, 0.72);
  --bg-panel-strong: rgba(11, 24, 48, 0.92);
  --surface: rgba(14, 28, 56, 0.72);
  --surface-soft: rgba(255, 255, 255, 0.06);
  --text: #f3f7ff;
  --muted: #aab8d6;
  --line: rgba(181, 203, 255, 0.16);
  --accent: #72f2d4;
  --accent-strong: #18c7ab;
  --accent-warm: #ff9f6b;
  --accent-sky: #7ab6ff;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 16px 44px rgba(5, 10, 25, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  --pointer-x: 20%;
  --pointer-y: 10%;
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(114, 242, 212, 0.12), transparent 22%),
    radial-gradient(circle at 80% 12%, rgba(255, 159, 107, 0.16), transparent 22%),
    radial-gradient(circle at 18% 82%, rgba(122, 182, 255, 0.14), transparent 25%),
    linear-gradient(180deg, #101a30 0%, #09111f 48%, #050914 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 35%, rgba(255, 255, 255, 0.015) 70%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

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

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

.site-glow,
.site-grid {
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

.site-glow {
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
}

.site-glow-a {
  top: -10rem;
  right: -8rem;
  background: rgba(114, 242, 212, 0.22);
}

.site-glow-b {
  left: -8rem;
  bottom: -10rem;
  background: rgba(122, 182, 255, 0.18);
}

.site-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 92%);
  opacity: 0.18;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.15rem 0 3rem;
}

.section {
  padding-top: 5.25rem;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(180, 203, 255, 0.12);
  border-radius: 999px;
  background: rgba(6, 12, 24, 0.58);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(114, 242, 212, 0.25);
  background: rgba(6, 12, 24, 0.8);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(114, 242, 212, 0.28), rgba(122, 182, 255, 0.22));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  padding: 0.45rem 0.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-sky) 100%);
  color: #04101b;
  box-shadow: 0 16px 34px rgba(114, 242, 212, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: transparent;
  color: var(--text);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(114, 242, 212, 0.62);
  outline-offset: 4px;
}

.eyebrow,
.core-tag,
.role-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 2rem;
  align-items: center;
  padding-top: 3rem;
}

.hero-copy h1,
.section-head h2,
.faq-intro h2,
.interest-copy h2,
.launch-copy h2,
.hero-core h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  line-height: 0.94;
}

.hero-lead,
.section-head p,
.faq-intro p,
.interest-copy p,
.launch-copy p,
.site-footer p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-lead {
  max-width: 60ch;
  margin: 1.35rem 0 0;
}

.hero-actions,
.contact-stack,
.hero-proof,
.role-ribbon,
.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions {
  margin-top: 1.7rem;
}

.hero-proof {
  margin-top: 1.7rem;
}

.hero-proof span,
.role-ribbon span,
.contact-points span {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.role-ribbon {
  margin-top: 0.9rem;
}

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

.stage-shell,
.value-card,
.role-card,
.launch-panel,
.faq-item,
.interest-copy,
.interest-form,
.site-footer,
.signal-strip {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.stage-shell {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(9, 17, 31, 0.72);
  overflow: hidden;
}

.stage-shell::before {
  content: "";
  position: absolute;
  inset: 12% -10% auto auto;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 182, 255, 0.16), transparent 68%);
}

.stage-top,
.stage-summary {
  position: relative;
  z-index: 1;
}

.stage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.stage-bar {
  display: inline-flex;
  gap: 0.45rem;
}

.stage-bar span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.hero-core {
  position: relative;
  z-index: 1;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 159, 107, 0.18), transparent 28%),
    linear-gradient(160deg, rgba(12, 24, 48, 0.98), rgba(8, 15, 30, 0.98));
  box-shadow: var(--shadow);
}

.hero-core h2 {
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.stage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.stage-pills span,
.stage-stat {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.stage-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
}

.core-grid article,
.preview-column article {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.core-grid strong,
.preview-column strong {
  display: block;
  font-size: 1rem;
}

.core-grid span,
.preview-column span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  line-height: 1.55;
}

.stage-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.stage-stat {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
}

.stage-stat span {
  color: var(--muted);
  font-size: 0.8rem;
}

.stage-stat strong {
  font-size: 0.95rem;
}

.signal-strip {
  overflow: hidden;
  margin-top: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.signal-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 1rem 0;
  animation: ticker 22s linear infinite;
}

.signal-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-weight: 600;
}

.signal-track span::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
}

.section-head {
  max-width: 45rem;
}

.section-head h2,
.faq-intro h2,
.interest-copy h2,
.launch-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.98;
}

.value-grid,
.role-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

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

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

.value-card,
.role-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.value-card::before,
.role-card::before,
.launch-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -28% auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114, 242, 212, 0.14), transparent 60%);
}

.value-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.value-card h3,
.role-card h3 {
  margin: 1rem 0 0.75rem;
  font-size: 1.28rem;
  line-height: 1.35;
}

.value-card p,
.role-card p,
.launch-list li,
.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.role-card {
  min-height: 13rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.role-card.role-innovator {
  background:
    linear-gradient(180deg, rgba(114, 242, 212, 0.08), transparent 42%),
    var(--surface);
}

.role-card.role-mentor {
  background:
    linear-gradient(180deg, rgba(122, 182, 255, 0.08), transparent 42%),
    var(--surface);
}

.role-card.role-investor {
  background:
    linear-gradient(180deg, rgba(255, 159, 107, 0.08), transparent 42%),
    var(--surface);
}

.role-card.role-business {
  background:
    linear-gradient(180deg, rgba(222, 247, 168, 0.08), transparent 42%),
    var(--surface);
}

.launch-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.4rem;
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(8, 16, 29, 0.82);
}

.launch-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.launch-list li {
  position: relative;
  padding-left: 1.3rem;
}

.launch-list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-sky));
}

.launch-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: stretch;
}

.preview-column {
  display: grid;
  gap: 0.9rem;
}

.preview-column-featured article {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(255, 159, 107, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.06);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.3rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(114, 242, 212, 0.3);
  background: rgba(12, 23, 44, 0.88);
}

.faq-item summary {
  position: relative;
  padding: 1.15rem 4rem 1.15rem 1.2rem;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
}

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

.faq-item summary::after,
.faq-item summary::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.4rem;
  width: 1rem;
  height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-item summary::before {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::before {
  opacity: 0;
}

.faq-item p {
  padding: 0 1.2rem 1.2rem;
}

.interest-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.3rem;
}

.interest-copy,
.interest-form {
  padding: 1.7rem;
  border-radius: var(--radius-xl);
}

.interest-form {
  display: grid;
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    rgba(8, 16, 30, 0.86);
}

.interest-form label {
  display: grid;
  gap: 0.55rem;
  font-weight: 600;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.interest-form input::placeholder,
.interest-form textarea::placeholder {
  color: rgba(170, 184, 214, 0.72);
}

.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus {
  border-color: rgba(114, 242, 212, 0.45);
  outline: none;
  box-shadow: 0 0 0 4px rgba(114, 242, 212, 0.08);
}

.helper-text {
  min-height: 1.3rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 5rem;
  padding: 1.4rem 1.5rem;
  border-radius: 26px;
}

.site-footer strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-end;
  color: var(--muted);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .hero,
  .launch-panel,
  .faq-layout,
  .interest-section,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .launch-preview {
    grid-template-columns: 1fr;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(calc(100% - 1.1rem), var(--max-width));
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 28px;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    gap: 0.55rem 1rem;
  }

  .role-grid,
  .core-grid {
    grid-template-columns: 1fr;
  }

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

  .stage-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .stage-summary {
    grid-template-columns: 1fr;
  }

  .site-footer,
  .footer-meta {
    align-items: flex-start;
  }

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

@media (max-width: 600px) {
  .page-shell {
    width: min(calc(100% - 0.9rem), var(--max-width));
    padding-top: 0.8rem;
  }

  .section {
    padding-top: 4.2rem;
  }

  .hero {
    padding-top: 2.3rem;
    gap: 1.35rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.95rem, 14vw, 4.5rem);
  }

  .stage-shell,
  .hero-core,
  .interest-copy,
  .interest-form,
  .launch-panel {
    padding: 1.1rem;
  }

  .stage-pills span,
  .hero-proof span,
  .role-ribbon span,
  .contact-points span {
    min-height: 2.1rem;
    padding: 0.5rem 0.78rem;
  }

  .signal-strip,
  .stage-shell,
  .value-card,
  .role-card,
  .launch-panel,
  .faq-item,
  .interest-copy,
  .interest-form,
  .site-footer {
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .site-header,
  .js .reveal,
  .faq-item summary::after,
  .faq-item summary::before {
    transition: none;
  }

  .signal-track {
    animation: none;
  }

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