:root {
  --nova-bg: #050506;
  --nova-panel: #0f1115;
  --nova-panel-strong: #14171c;
  --nova-line-soft: rgba(255, 255, 255, 0.07);
  --nova-line: rgba(255, 255, 255, 0.12);
  --nova-copy: #ffffff;
  --nova-copy-muted: #a1a1aa;
  --nova-copy-faint: #6b6b75;
  --nova-accent: #2997ff;
  --nova-accent-hover: #0071e3;
  --nova-accent-soft: #64d2ff;
  --nova-success: #34d399;
  --nova-danger: #ff5a5f;
  --nova-radius: 14px;
  --nova-radius-lg: 20px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  background: var(--nova-bg);
  color: var(--nova-copy);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.nova-scene-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to right, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size:
    64px 64px,
    64px 64px,
    16px 16px,
    16px 16px;
  background-position: center center;
  -webkit-mask-image: radial-gradient(
    ellipse 92% 82% at 50% 38%,
    #000 25%,
    transparent 90%
  );
  mask-image: radial-gradient(
    ellipse 92% 82% at 50% 38%,
    #000 25%,
    transparent 90%
  );
}
.nova-scene-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(100, 210, 255, 0.35) 1px,
    transparent 1.5px
  );
  background-size: 64px 64px;
  background-position: center center;
  -webkit-mask-image: radial-gradient(
    ellipse 55% 42% at 50% 26%,
    #000 0%,
    transparent 80%
  );
  mask-image: radial-gradient(
    ellipse 55% 42% at 50% 26%,
    #000 0%,
    transparent 80%
  );
  opacity: 0.6;
}
.nova-atmosphere {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  border-radius: 50%;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 520px;
  background: radial-gradient(
    ellipse,
    rgba(41, 151, 255, 0.22) 0%,
    rgba(41, 151, 255, 0) 70%
  );
}
.nova-pointer-glow {
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(41, 151, 255, 0.2) 0%,
    rgba(41, 151, 255, 0) 60%
  );
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
  opacity: 0;
}

.nova-access-topbar {
  position: relative;
  z-index: 3;
  padding: 22px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.nova-wordmark {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 16px;
}
.nova-wordmark__mark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--nova-accent) 0%, #4f37cf 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px -4px rgba(41, 151, 255, 0.5);
}
.nova-wordmark__mark svg {
  width: 13px;
  height: 13px;
}
.nova-progress-track {
  width: 100%;
  max-width: 760px;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.nova-progress-track.is-visible {
  opacity: 1;
}
.nova-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--nova-accent),
    var(--nova-accent-soft)
  );
  box-shadow: 0 0 12px var(--nova-accent-soft);
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nova-access-stage {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 64px;
}
.nova-step-card {
  display: none;
  width: 100%;
  max-width: 640px;
}
.nova-step-card.is-active {
  display: block;
  animation: novaStepEnter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes novaStepEnter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.nova-step-card.nova-step-card--wide {
  max-width: 720px;
}

.nova-back-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--nova-copy-faint);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 22px;
  transition: color 0.2s ease;
}
.nova-back-button:hover {
  color: var(--nova-copy-muted);
}
.nova-back-button svg {
  width: 15px;
  height: 15px;
}

.nova-step-label {
  font-size: 13px;
  color: var(--nova-accent-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.nova-question-title {
  font-size: clamp(24px, 3.6vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 8px;
}
.nova-question-copy {
  color: var(--nova-copy-muted);
  font-size: 15px;
  margin-bottom: 28px;
}

.nova-option-list {
  display: grid;
  gap: 12px;
}
.nova-option-list.nova-option-list--two {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 520px) {
  .nova-option-list.nova-option-list--two {
    grid-template-columns: 1fr;
  }
}
.nova-option-card {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  background: var(--nova-panel);
  border: 1.5px solid var(--nova-line-soft);
  border-radius: var(--nova-radius);
  padding: 17px 18px;
  width: 100%;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.12s ease;
  position: relative;
}
.nova-option-card:hover {
  border-color: rgba(41, 151, 255, 0.4);
  background: var(--nova-panel-strong);
  transform: translateY(-1px);
}
.nova-option-card.is-selected {
  border-color: var(--nova-accent);
  background: linear-gradient(
    180deg,
    rgba(41, 151, 255, 0.1),
    var(--nova-panel-strong)
  );
}
.nova-option-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(41, 151, 255, 0.13);
  border: 1px solid rgba(41, 151, 255, 0.25);
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}
.nova-option-icon svg {
  width: 18px;
  height: 18px;
  color: var(--nova-accent-soft);
}
.nova-option-card.is-selected .nova-option-icon {
  background: rgba(41, 151, 255, 0.28);
}
.nova-option-label {
  font-size: 15px;
  font-weight: 500;
  flex: 1;
}
.nova-option-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid var(--nova-line);
  display: grid;
  place-items: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.nova-option-check svg {
  width: 12px;
  height: 12px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.nova-option-card.is-selected .nova-option-check {
  background: var(--nova-accent);
  border-color: var(--nova-accent);
}
.nova-option-card.is-selected .nova-option-check svg {
  opacity: 1;
}

.nova-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition:
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.2s ease,
    box-shadow 0.25s ease,
    opacity 0.2s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.nova-button--primary {
  background: var(--nova-accent);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 10px 28px -8px rgba(41, 151, 255, 0.6);
}
.nova-button--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    140px circle at var(--nova-cursor-x, 50%) var(--nova-cursor-y, 50%),
    rgba(255, 255, 255, 0.32),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}
.nova-button--primary:hover::before {
  opacity: 1;
}
.nova-button--primary:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 16px 38px -10px rgba(41, 151, 255, 0.8);
}
.nova-button--primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.nova-button--primary:disabled::before {
  opacity: 0;
}
.nova-button svg {
  width: 17px;
  height: 17px;
}
.nova-button--block {
  width: 100%;
}
.nova-continue-row {
  margin-top: 28px;
}

.nova-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(41, 151, 255, 0.12);
  border: 1px solid rgba(41, 151, 255, 0.3);
  border-radius: 999px;
  font-size: 13px;
  color: #cfc6ff;
  font-weight: 500;
  margin-bottom: 22px;
}
.nova-intro-badge svg {
  width: 14px;
  height: 14px;
}
.nova-intro-step h1 {
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #fff 35%, #c9c2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nova-intro-step p.nova-lede {
  color: var(--nova-copy-muted);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 28px;
}
.nova-intro-step {
  text-align: center;
}
.nova-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
  color: var(--nova-copy-muted);
  font-size: 14px;
}
.nova-avatars {
  display: inline-flex;
}
.nova-avatars span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-left: -9px;
  border: 2px solid var(--nova-bg);
  background-size: cover;
  background-position: center;
}
.nova-avatars span:first-child {
  margin-left: 0;
}
.nova-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 30px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 90, 95, 0.08);
  border: 1px solid rgba(255, 90, 95, 0.25);
  color: #ff9a9d;
  font-size: 13.5px;
  font-weight: 500;
}
.nova-scarcity .nova-ping {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--nova-danger);
  box-shadow: 0 0 10px var(--nova-danger);
  animation: novaSignalPulse 1.4s ease-in-out infinite;
}
@keyframes novaSignalPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.nova-fineprint {
  color: var(--nova-copy-faint);
  font-size: 13px;
  margin-top: 16px;
}

.nova-analyzing-step {
  text-align: center;
}
.nova-spinner {
  width: 58px;
  height: 58px;
  margin: 0 auto 28px;
  border-radius: 50%;
  border: 3px solid rgba(41, 151, 255, 0.2);
  border-top-color: var(--nova-accent);
  animation: novaSpin 0.8s linear infinite;
}
@keyframes novaSpin {
  to {
    transform: rotate(360deg);
  }
}
.nova-analyzing-step h2 {
  font-size: clamp(24px, 3.4vw, 30px);
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 30px;
}
.nova-analysis-list {
  display: grid;
  gap: 14px;
  max-width: 340px;
  margin: 0 auto;
  text-align: left;
}
.nova-analysis-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--nova-copy-faint);
  opacity: 0.4;
  transition:
    opacity 0.4s ease,
    color 0.4s ease;
}
.nova-analysis-item.is-done {
  opacity: 1;
  color: var(--nova-copy);
}
.nova-analysis-item .nova-tick {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid var(--nova-line);
  display: grid;
  place-items: center;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}
.nova-analysis-item .nova-tick svg {
  width: 12px;
  height: 12px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nova-analysis-item.is-done .nova-tick {
  background: var(--nova-success);
  border-color: var(--nova-success);
}
.nova-analysis-item.is-done .nova-tick svg {
  opacity: 1;
}

.nova-qualified-step {
  text-align: center;
}
.nova-qualified-badge {
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  position: relative;
}
.nova-qualified-badge .nova-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(52, 211, 153, 0.4);
  animation: novaQualifiedRing 2.2s ease-out infinite;
}
@keyframes novaQualifiedRing {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
.nova-qualified-seal {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px -10px rgba(52, 211, 153, 0.6);
}
.nova-qualified-seal svg {
  width: 38px;
  height: 38px;
  color: #062b20;
}
.nova-qualified-step h1 {
  font-size: clamp(28px, 4.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 14px;
}
.nova-qualified-step .nova-match-copy {
  color: var(--nova-copy-muted);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 22px;
}
.nova-qualified-step .nova-match-copy b {
  color: var(--nova-copy);
  font-weight: 600;
}
.nova-reserve-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 auto 26px;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(41, 151, 255, 0.1);
  border: 1px solid rgba(41, 151, 255, 0.3);
  font-size: 14px;
  color: #cfc6ff;
  font-weight: 500;
}
.nova-reserve-note svg {
  width: 16px;
  height: 16px;
  color: var(--nova-accent-soft);
}
.nova-reserve-note .nova-reserve-time {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: #fff;
}
.nova-sunk-copy {
  color: var(--nova-copy-faint);
  font-size: 14px;
  max-width: 440px;
  margin: 18px auto 0;
}

.nova-billing-step {
  max-width: 720px;
  text-align: center;
}
.nova-billing-step h2 {
  font-size: clamp(24px, 3.6vw, 34px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 700;
  max-width: 640px;
  margin: 0 auto 40px;
}
.nova-billing-step .nova-agreement-copy {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--nova-copy-muted);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.5;
}
.nova-billing-step .nova-agreement-copy b {
  color: var(--nova-copy);
  font-weight: 700;
}
.nova-consent-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  background: var(--nova-panel);
  border: 1.5px solid var(--nova-line-soft);
  border-radius: var(--nova-radius);
  padding: 22px 24px;
  max-width: 520px;
  margin: 0 auto 32px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.nova-consent-card:hover {
  border-color: var(--nova-line);
}
.nova-consent-card.is-checked {
  border-color: rgba(41, 151, 255, 0.5);
  background: var(--nova-panel-strong);
}
.nova-consent-card .nova-consent-box {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1.5px solid var(--nova-line);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  place-items: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.nova-consent-card .nova-consent-box svg {
  width: 15px;
  height: 15px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.nova-consent-card.is-checked .nova-consent-box {
  background: var(--nova-accent);
  border-color: var(--nova-accent);
}
.nova-consent-card.is-checked .nova-consent-box svg {
  opacity: 1;
}
.nova-consent-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--nova-copy-muted);
}
.nova-consent-card a {
  color: var(--nova-accent-soft);
  text-decoration: underline;
}
.nova-billing-step .nova-accept-button {
  padding: 17px 0;
  width: 100%;
  max-width: 520px;
  font-size: 16px;
  background: #0e0e13;
  border: 1px solid var(--nova-line);
  color: #fff;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease,
    box-shadow 0.2s ease;
}
.nova-billing-step .nova-accept-button:enabled:hover {
  background: #16161d;
  transform: translateY(-1px);
}
.nova-billing-step .nova-accept-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.nova-billing-step .nova-accept-button.is-armed {
  background: var(--nova-accent);
  border-color: var(--nova-accent);
  box-shadow: 0 14px 36px -10px rgba(41, 151, 255, 0.7);
}
.nova-billing-step .nova-accept-button.is-armed:hover {
  background: var(--nova-accent-hover);
}
.nova-billing-step .nova-accept-button svg {
  width: 18px;
  height: 18px;
}

/* Draftmind engineering icon language */
.nova-option-icon svg {
  display: none;
}

.nova-option-icon::before {
  color: var(--nova-accent-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 18px;
  line-height: 1;
}

[data-value="designer"] .nova-option-icon::before {
  content: "◇";
}
[data-value="mechanical_engineer"] .nova-option-icon::before {
  content: "⚙";
}
[data-value="industrial_designer"] .nova-option-icon::before {
  content: "⬡";
}
[data-value="product_lead"] .nova-option-icon::before {
  content: "▤";
}
[data-value="architect"] .nova-option-icon::before {
  content: "▱";
}
[data-value="fabricator"] .nova-option-icon::before {
  content: "⌁";
}
[data-value="engineering_firm"] .nova-option-icon::before {
  content: "⌘";
}
[data-value="maker"] .nova-option-icon::before {
  content: "+";
}
[data-value="mechanical_components"] .nova-option-icon::before {
  content: "◉";
}
[data-value="fixtures_jigs"] .nova-option-icon::before {
  content: "⊥";
}
[data-value="product_enclosures"] .nova-option-icon::before {
  content: "□";
}
[data-value="architectural_details"] .nova-option-icon::before {
  content: "△";
}
[data-value="robotic_assemblies"] .nova-option-icon::before {
  content: "⌬";
}
[data-value="printable_parts"] .nova-option-icon::before {
  content: "▧";
}
[data-value="brackets_mounts"] .nova-option-icon::before {
  content: "∩";
}
[data-value="custom_adapters"] .nova-option-icon::before {
  content: "◎";
}
