:root {
  color-scheme: dark;
  --bg: #000;
  --panel: #0b0b0f;
  --panel-strong: #111118;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #fff;
  --muted: #a6a6b2;
  --soft: #d6d5df;
  --accent: #f97316;
  --accent-strong: #fdba74;
  --success: #4ade80;
  --danger: #fb7185;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 52px 52px;
  color: var(--text);
  font-family: "Aptos", "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.15), transparent 34%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.055), transparent 28%);
  opacity: 0.9;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.02) 0,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 4px
  );
  mix-blend-mode: screen;
  opacity: 0.18;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 14px auto 0;
  padding: 10px 10px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 7, 10, 0.78);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
  font-weight: 750;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: #fff;
  box-shadow: inset 0 0 0 7px var(--accent);
}

.brand-mark::after {
  position: absolute;
  right: -4px;
  bottom: 4px;
  width: 10px;
  height: 10px;
  border: 3px solid var(--bg);
  border-radius: 50%;
  background: var(--success);
  content: "";
}

.nav-links {
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.nav-links a:hover,
.site-footer a:hover {
  color: var(--text);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  color: #050507;
  font-weight: 760;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #eeeef7;
}

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

#waitlist,
#features,
#how-it-works,
#faq {
  scroll-margin-top: 110px;
}

.hero {
  display: grid;
  gap: 42px;
  min-height: calc(100svh - 80px);
  padding: 68px 0 38px;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.9);
  content: "";
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 3.35rem;
  line-height: 0.96;
  font-weight: 860;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.15rem;
  line-height: 1.08;
  font-weight: 830;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-subheadline {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--soft);
  font-size: 1.2rem;
}

.hero-description,
.section-heading p,
.waitlist-copy p,
.proof-inner p,
.step p,
.feature-card p,
.faq-item p,
.legal-page p,
.legal-page li {
  color: var(--muted);
}

.hero-description {
  max-width: 700px;
  margin-bottom: 30px;
  font-size: 1.02rem;
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 780;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.55);
  outline-offset: 3px;
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 42px rgba(249, 115, 22, 0.32);
}

.button-primary:hover {
  background: #ea580c;
  box-shadow: 0 18px 48px rgba(249, 115, 22, 0.42);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.09);
}

.hero-visual {
  min-height: 520px;
  align-self: stretch;
}

.network-stage {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #050507;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.stage-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 90%);
}

.network-stage::before {
  position: absolute;
  inset: -20%;
  z-index: -1;
  background: conic-gradient(
    from 130deg,
    transparent 0deg,
    rgba(249, 115, 22, 0.32) 80deg,
    transparent 150deg,
    rgba(255, 255, 255, 0.12) 240deg,
    transparent 300deg
  );
  content: "";
  animation: slowSpin 18s linear infinite;
}

.signal-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.7), transparent);
  transform-origin: center;
}

.signal-line-one {
  transform: translate(-50%, -50%) rotate(24deg);
}

.signal-line-two {
  transform: translate(-50%, -50%) rotate(-38deg);
}

.creator-node,
.insight-panel {
  position: absolute;
  border: 1px solid var(--line-strong);
  background: rgba(9, 9, 13, 0.82);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
}

.creator-node {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #f7f4ff;
  font-size: 0.92rem;
  font-weight: 760;
  animation: floatNode 6s ease-in-out infinite;
}

.node-main {
  left: 50%;
  top: 22%;
  min-height: 74px;
  padding: 12px 18px;
  transform: translateX(-50%);
}

.node-left {
  left: 8%;
  top: 44%;
  animation-delay: -1.1s;
}

.node-right {
  right: 8%;
  top: 42%;
  animation-delay: -2.2s;
}

.node-bottom {
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  animation-delay: -3.1s;
}

.node-avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, #fff 0 22%, transparent 22% 38%, #fff 38% 54%, transparent 54%),
    var(--accent);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.node-pulse {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.16);
}

.insight-panel {
  left: 8%;
  right: 8%;
  bottom: 8%;
  padding: 18px;
  border-radius: var(--radius-md);
}

.panel-topline,
.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.panel-topline {
  margin-bottom: 14px;
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 780;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--success);
}

.status-dot::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  content: "";
}

.metric-row {
  min-height: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.metric-row strong {
  color: #fff;
}

.waitlist-band {
  display: grid;
  gap: 28px;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 42px auto 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(249, 115, 22, 0.18), transparent 36%),
    var(--panel);
  box-shadow: var(--shadow);
}

.waitlist-copy h2 {
  max-width: 520px;
}

.waitlist-copy p {
  max-width: 600px;
  margin-bottom: 0;
}

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

.waitlist-form label:not(.consent-row) {
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 760;
}

.input-row {
  display: grid;
  gap: 10px;
}

.input-row input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.input-row input::placeholder {
  color: #777785;
}

.input-row input:focus {
  border-color: rgba(249, 115, 22, 0.86);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.submit-button {
  width: 100%;
}

.button-loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

.waitlist-form.is-submitting .button-loader {
  display: inline-block;
}

.waitlist-form.is-submitting .button-label {
  opacity: 0.78;
}

.consent-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.88rem;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status.success {
  color: var(--success);
}

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

.feature-section,
.how-section,
.faq-section {
  padding: 100px 0 0;
}

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

.section-heading p {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  gap: 14px;
}

.feature-card {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.5);
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.13), rgba(255, 255, 255, 0.025));
}

.feature-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.15);
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.45);
}

.feature-icon::before,
.feature-icon::after {
  position: absolute;
  content: "";
}

.niche-icon::before {
  inset: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.niche-icon::after {
  left: 12px;
  top: 12px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--accent);
  transform: rotate(45deg);
}

.content-icon::before {
  left: 14px;
  top: 11px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
}

.chat-icon::before {
  inset: 11px 9px 14px;
  border-radius: 10px;
  background: #fff;
}

.chat-icon::after {
  left: 14px;
  bottom: 9px;
  border-top: 8px solid #fff;
  border-right: 8px solid transparent;
}

.growth-icon::before {
  left: 11px;
  right: 11px;
  bottom: 12px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 7px -8px 0 #fff, 14px -18px 0 var(--accent);
}

.feature-card p {
  margin-bottom: 0;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  padding: 24px;
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.045), transparent);
}

.step-number {
  display: block;
  margin-bottom: 24px;
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 860;
}

.niche-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.niche-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 720;
}

.social-proof {
  margin-top: 100px;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.13), transparent),
    rgba(255, 255, 255, 0.025);
}

.proof-inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 54px 0;
}

.proof-inner h2 {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

#waitlistCount {
  font-size: 4rem;
  line-height: 1;
}

.proof-inner h2 span:last-child {
  color: var(--soft);
  font-size: 1.2rem;
}

.proof-inner p {
  margin-bottom: 0;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
}

.faq-item summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 800;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 88px auto 0;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  gap: 18px;
}

.legal-page {
  width: min(calc(100% - 32px), 780px);
  margin: 0 auto;
  padding: 76px 0;
}

.legal-page h1 {
  margin-bottom: 16px;
  font-size: 2.5rem;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 1.25rem;
}

.legal-page a {
  color: var(--accent-strong);
}

.not-found {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 24px;
  text-align: center;
}

.not-found div {
  max-width: 560px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

@keyframes slowSpin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes floatNode {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

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

@media (max-width: 760px) {
  .site-header {
    width: min(calc(100% - 20px), var(--max-width));
    margin-top: 10px;
  }

  .nav-links {
    display: none;
  }

  .brand {
    font-size: 0.96rem;
  }

  .hero {
    padding-top: 50px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-subheadline {
    font-size: 1.08rem;
  }

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

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

  .node-left {
    left: 4%;
    top: 36%;
  }

  .node-right {
    right: 4%;
    top: 36%;
  }

  .creator-node {
    font-size: 0.78rem;
  }

  .node-main {
    top: 16%;
  }
}

@media (min-width: 680px) {
  .input-row {
    grid-template-columns: 1fr auto;
  }

  .submit-button {
    width: auto;
    min-width: 188px;
  }

  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 840px) {
  .hero {
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.82fr);
    align-items: center;
    padding-top: 74px;
  }

  .waitlist-band {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.72fr);
    align-items: center;
    padding: 34px;
  }

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

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

  .step {
    min-height: 250px;
  }
}

@media (min-width: 1180px) {
  h1 {
    font-size: 4.65rem;
  }

  .hero-subheadline {
    font-size: 1.32rem;
  }
}
