:root {
  color-scheme: dark;
  --bg: #080c1e;
  --bg2: #111735;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.13);
  --text: #eef2ff;
  --muted: #bfc6ea;
  --violet: #7c3aed;
  --purple: #a855f7;
  --pink: #f026d3;
  --blue: #2563eb;
  --cyan: #00d5ff;
  --mint: #36e0a6;
  --shadow: 0 0 18px rgba(109, 40, 217, 0.42), 0 0 42px rgba(79, 70, 229, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 4%, rgba(124, 58, 237, 0.3), transparent 32rem),
    radial-gradient(circle at 16% 18%, rgba(37, 99, 235, 0.24), transparent 28rem),
    linear-gradient(180deg, #080c1e 0%, #0a0e22 50%, #080c1e 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

button {
  cursor: pointer;
}

.page-shell {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 14px clamp(20px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 12, 30, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.desktop-nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 800;
}

.button.small {
  min-height: 42px;
}

.button.glow {
  border-color: rgba(168, 85, 247, 0.65);
  background: linear-gradient(135deg, #5b21b6, #7c3aed 54%, #2563eb);
  box-shadow: var(--shadow);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.08);
}

.button.full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100svh - 82px);
  margin: 0 auto;
  padding: 76px 0 54px;
}

.hero-copy,
.section-copy {
  display: grid;
  gap: 16px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid rgba(168, 85, 247, 0.34);
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.12);
  color: #d8b4fe;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.35rem, 7.4vw, 6.15rem);
  line-height: 1;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.03;
}

h3 {
  font-size: 1.24rem;
}

.hero-lede {
  max-width: 680px;
  color: var(--text);
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  line-height: 1.55;
}

.hero-sub,
.section-copy p,
.showcase-body p,
.price-card p,
.steps-grid p,
.site-footer p,
.legal-card p,
.admin-shell p {
  color: var(--muted);
  line-height: 1.58;
}

.hero-form,
.waitlist-panel {
  display: grid;
  gap: 12px;
  max-width: 640px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.role-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.role-row label {
  flex: 1 1 210px;
}

.role-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.role-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-weight: 800;
}

.role-row input:checked + span {
  border-color: rgba(168, 85, 247, 0.7);
  background: rgba(124, 58, 237, 0.24);
  color: #ffffff;
  box-shadow: 0 0 22px rgba(124, 58, 237, 0.22);
}

.email-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

input,
select,
textarea {
  min-height: 52px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  outline: none;
  padding: 12px 14px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

select {
  color: var(--muted);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(168, 85, 247, 0.78);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.22);
}

.social-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
}

.avatar {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5b21b6, #2563eb);
  color: #fff;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  width: min(100%, 580px);
  justify-self: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% -10% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240, 38, 211, 0.35), transparent 68%);
  filter: blur(14px);
}

.device-card,
.showcase-card,
.score-card,
.price-card,
.steps-grid article,
.market-card,
.waitlist-panel,
.question-card,
.survey-head,
.pain-grid article {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.device-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 16px;
  transform: none;
}

.device-top,
.score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.3;
}

.device-top strong,
.score-row strong {
  color: #ffffff;
}

.talent-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 12, 30, 0.82);
}

.talent-card .card-body {
  display: grid;
  gap: 9px;
}

.talent-card h2 {
  font-size: clamp(2.55rem, 4.1vw, 3.25rem);
  line-height: 1.05;
}

.talent-card p {
  color: var(--text);
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
  font-weight: 700;
  line-height: 1.5;
}

.card-media,
.showcase-top {
  min-height: clamp(170px, 18vw, 210px);
  background:
    linear-gradient(135deg, rgba(240, 38, 211, 0.72), rgba(124, 58, 237, 0.7), rgba(0, 213, 255, 0.7)),
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.7), transparent 16%);
}

.talent-card .card-media {
  border-radius: 23px 23px 0 0;
}

.card-body,
.showcase-body,
.price-card,
.steps-grid article,
.pain-grid article,
.score-card,
.market-card,
.waitlist-panel {
  padding: 20px;
}

.hero-copy,
.hero-visual,
.device-card,
.talent-card,
.card-body,
.job-card,
.vibe-row,
.showcase-card,
.price-card,
.question-card,
.waitlist-panel {
  min-width: 0;
}

.tag {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(54, 224, 166, 0.15);
  color: #8ff7d0;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.vibe-row,
.boost-strip,
.ticker div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vibe-row span,
.boost-strip span,
.ticker span,
.fee {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.job-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(168, 85, 247, 0.36);
  border-radius: 20px;
  background: rgba(124, 58, 237, 0.18);
}

.job-card strong,
.job-card p {
  line-height: 1.35;
}

.ticker {
  border-block: 1px solid var(--line);
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.035);
}

.ticker div {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  justify-content: center;
}

.section-grid,
.cards-section,
.pricing-section,
.how-section,
.market-section,
.join-section,
.survey-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
}

.centered {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
  justify-items: center;
}

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

.pain-grid article span,
.steps-grid article span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #5b21b6, #2563eb);
  color: #ffffff;
  font-weight: 900;
}

.showcase-grid,
.pricing-grid,
.steps-grid,
.market-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.showcase-card {
  overflow: hidden;
}

.showcase-top.brand-card {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.75), rgba(54, 224, 166, 0.45), rgba(168, 85, 247, 0.65)),
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.55), transparent 14%);
}

.showcase-body {
  display: grid;
  gap: 12px;
}

.showcase-body ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.showcase-body li::before {
  content: "✓ ";
  color: #8ff7d0;
  font-weight: 900;
}

.score-card {
  display: grid;
  gap: 16px;
}

.score-meter {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.score-meter span {
  display: block;
  width: 86%;
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
}

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

.price-card {
  display: grid;
  gap: 12px;
}

.price-card.featured {
  border-color: rgba(168, 85, 247, 0.72);
  box-shadow: var(--shadow);
}

.plan-name {
  color: #d8b4fe;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card strong {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 2rem;
}

.boost-strip {
  justify-content: center;
  margin-top: 18px;
}

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

.market-card {
  display: grid;
  gap: 22px;
}

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

.market-stats div {
  min-height: 130px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.market-stats strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 2rem;
}

.market-stats span {
  color: var(--muted);
}

.join-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
}

.survey-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1.12fr);
  gap: 28px;
  align-items: start;
  padding-top: 26px;
}

.survey-copy {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 14px;
}

.survey-copy p {
  color: var(--muted);
  line-height: 1.58;
}

.survey-panel {
  display: grid;
  gap: 14px;
}

.survey-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
}

.survey-head strong {
  font-size: 1.1rem;
}

.survey-head span {
  color: var(--muted);
  font-weight: 800;
}

.question-card {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.question-card label {
  display: grid;
  gap: 8px;
}

.question-card > span,
.question-card label > span {
  color: #e9ddff;
  font-weight: 900;
}

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

.checkbox-grid label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-weight: 800;
}

.checkbox-grid input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--purple);
}

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

.field-grid label {
  display: grid;
  gap: 6px;
}

.field-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fine-print {
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.fine-print a,
.legal-card a,
.footer-links a {
  color: #c4b5fd;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 44px 20px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

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

.legal-page {
  padding: clamp(44px, 8vw, 88px) 0;
}

.legal-shell {
  display: grid;
  gap: 18px;
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.legal-shell h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.legal-updated {
  margin: -4px 0 12px;
  color: var(--muted);
  font-weight: 800;
}

.legal-card {
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.legal-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-card p + p,
.legal-card ul + p {
  margin-top: 12px;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.58;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  max-width: 340px;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #111735;
  color: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, opacity 160ms ease;
}

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

.admin-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 22px;
}

.admin-shell {
  display: grid;
  justify-items: center;
  gap: 16px;
  width: min(100%, 620px);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  text-align: center;
}

.admin-shell img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.test-panel {
  width: 100%;
  box-shadow: none;
}

.field-grid.single {
  grid-template-columns: 1fr;
}

.test-output {
  width: 100%;
  min-height: 96px;
  overflow: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--muted);
  text-align: left;
  white-space: pre-wrap;
}

.dashboard-shell {
  min-height: 100vh;
}

.dashboard-header {
  position: sticky;
}

.dashboard-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.dashboard-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0 80px;
}

.dashboard-hero {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-bottom: 24px;
}

.dashboard-hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

.dashboard-hero p,
.dashboard-panel-head p {
  color: var(--muted);
  line-height: 1.55;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.dashboard-stats div,
.dashboard-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.dashboard-stats div {
  min-height: 126px;
  padding: 18px;
}

.dashboard-stats strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 2rem;
}

.dashboard-stats span {
  color: var(--muted);
  font-weight: 800;
}

.dashboard-panel {
  overflow: hidden;
}

.dashboard-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
}

td small {
  color: var(--muted);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .hero,
  .section-grid,
  .join-section,
  .survey-section {
    grid-template-columns: 1fr;
  }

  .survey-copy {
    position: static;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .pricing-grid,
  .steps-grid,
  .market-stats,
  .dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 72px;
    padding-inline: 16px;
  }

  .brand span {
    display: none;
  }

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

  .hero {
    padding-top: 34px;
  }

  .hero-copy {
    gap: 12px;
  }

  .hero-lede {
    font-size: 1.03rem;
    line-height: 1.45;
  }

  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .pain-grid,
  .showcase-grid,
  .pricing-grid,
    .steps-grid,
    .market-stats,
    .field-grid,
    .checkbox-grid,
    .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .button,
  .waitlist-panel .button,
  .admin-actions .button {
    width: 100%;
  }

  .email-row {
    grid-template-columns: minmax(0, 1fr) 136px;
    gap: 8px;
  }

  .email-row .button {
    width: auto;
    min-width: 0;
    padding-inline: 10px;
    white-space: nowrap;
    font-size: 0.86rem;
  }

  .hero,
  .section-grid,
  .cards-section,
  .pricing-section,
  .how-section,
  .market-section,
  .join-section,
  .survey-section {
    width: min(100% - 28px, 1180px);
  }

  .device-card {
    transform: none;
  }
}
