:root {
  --ink: #f7f7f9;
  --muted: #b6a0d3;
  --panel: #0b0019;
  --line: rgba(235, 220, 255, 0.14);
  --soft: #090014;
  --night: #090014;
  --green: #9c4fff;
  --mint: #ebdcff;
  --amber: #d7b9fc;
  --danger: #ff8f8f;
  --purple-main: #9c4fff;
  --purple-hover: #6505e0;
  --purple-deep: #1c053a;
  --purple-card: #281545;
  --purple-border: #432170;
  --purple-soft: #ebdcff;
  --shadow: 0 30px 90px rgba(50, 0, 117, 0.34);
}

body {
  color: var(--purple-soft);
  background:
    radial-gradient(circle at 50% -10%, rgba(156, 79, 255, 0.26), transparent 34rem),
    radial-gradient(circle at 90% 20%, rgba(197, 155, 253, 0.14), transparent 24rem),
    var(--night);
  font-family: Inter, Arial, sans-serif;
}

.page {
  background:
    linear-gradient(180deg, rgba(9, 0, 20, 0.18), rgba(9, 0, 20, 0.98) 70%),
    url("/cdn.prod.website-files.com/68066cc6233fff475b6d67e7/68066cc6233fff475b6d68e8_Background%20Home.avif") top center / 100% auto no-repeat;
}

.nav {
  position: sticky;
  border-bottom: 1px solid rgba(67, 33, 112, 0.75);
  background: rgba(9, 0, 20, 0.78);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 88px;
}

.brand {
  gap: 0;
}

.brand-mark,
.brand span:not(.brand-mark) {
  display: none;
}

.brand-logo {
  width: 188px;
  height: auto;
}

.nav-links {
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:not(.button):hover {
  color: var(--purple-soft);
}

.button {
  min-height: 0;
  padding: 12px 32px;
  border: 1px solid #0000;
  border-radius: 100px;
  background:
    radial-gradient(circle at 50% 100%, #944feb, #6505e0 51%),
    linear-gradient(#9440fe, #be94f2);
  background-clip: padding-box, border-box;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 0 1px #6f0eea;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  transition: all 0.2s ease;
}

.button::after {
  content: "";
  pointer-events: none;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.32);
  filter: blur(18px);
  position: absolute;
  top: -38px;
  left: 24px;
  opacity: 0.72;
}

.button:hover {
  transform: translateY(-1px);
  background:
    radial-gradient(circle at 50% 100%, #944feb 18%, #6505e0 51%),
    linear-gradient(#9440fe, #be94f2);
  box-shadow: 0 2px 0 1px #6f0eea;
}

.button:active {
  transform: translateY(0);
  background:
    linear-gradient(#2c065c 40%, #7b20ee),
    linear-gradient(#2c065c 40%, #7b20ee);
  box-shadow: inset 0 8px 4px 1px #0006, inset 0 0 4px 1px #0006;
}

.button.secondary {
  border: 1px solid var(--purple-main);
  background: transparent;
  box-shadow: none;
  color: #ebdcff;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#fff, #ebdcfe 20%, #d7b9fc);
  -webkit-background-clip: text;
  background-clip: text;
}

.button.secondary::after {
  display: none;
}

.button.secondary:hover {
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(#a566f5, #9440ff);
  background-clip: border-box;
  color: #fff;
}

.hero {
  min-height: 860px;
  padding: 96px 0 76px;
  background: transparent;
}

.hero::before {
  background:
    linear-gradient(180deg, rgba(9, 0, 20, 0.18), rgba(9, 0, 20, 0.86)),
    radial-gradient(circle at 50% 18%, rgba(156, 79, 255, 0.34), transparent 34rem);
}

.hero-content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(235, 220, 255, 0.18);
  border-radius: 100px;
  background:
    linear-gradient(270deg, #160728, #422070),
    linear-gradient(#411e6e, #6632a8);
  color: #d7b9fc;
  font-size: 13px;
}

.eyebrow::before {
  background: linear-gradient(#fff, #c59bfd);
  box-shadow: 0 0 18px rgba(197, 155, 253, 0.75);
}

h1,
h2,
h3 {
  color: #fff;
}

h1,
.hero h1 {
  max-width: 980px;
  margin: 0 auto;
  background-image: linear-gradient(#fff, #ebdcfe 22%, #d7b9fc);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  background-image: linear-gradient(#fff, #ebdcfe 22%, #d7b9fc);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(34px, 4.2vw, 56px);
}

h3 {
  font-size: 22px;
}

.hero-copy {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 21px;
}

.split-copy h2,
.section-head h2,
.proof h2,
.faq h2,
.final-cta h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.hero-actions {
  justify-content: center;
  margin-top: 34px;
}

.microcopy,
.hero .microcopy {
  max-width: 590px;
  margin: 16px auto 0;
  color: rgba(235, 220, 255, 0.68);
}

.hero-points {
  max-width: 1060px;
  margin: 70px auto 0;
}

.hero-point,
.panel,
.step,
.module,
.proof-card,
.faq details,
.proof-note,
.fit-card,
.form-card,
.final-cta-panel,
.signal-line {
  border: 1px solid transparent;
  background:
    linear-gradient(#1c053a, #0b0019 24%) padding-box,
    linear-gradient(135deg, rgba(137, 59, 236, 0.9), rgba(54, 24, 95, 0.7) 32%, rgba(46, 23, 78, 0.75)) border-box;
  box-shadow: none;
}

.hero-point,
.panel,
.step,
.module,
.proof-card,
.faq details,
.proof-note,
.fit-card {
  border-radius: 16px;
}

.hero-point {
  color: var(--purple-soft);
}

.hero-point strong,
.step strong,
.proof-card strong,
.module h3,
.proof-note h2,
.fit-card h2,
.signal-label strong {
  color: #fff;
}

.hero-point span,
.step p,
.proof-card span,
.split-copy p,
.section-head p,
.list li,
.faq details p,
.module p,
.module span,
.tag,
.signal-label span,
.signal-status,
.final-cta p,
.hint,
.form-progress-label,
.check,
.result {
  color: var(--muted);
}

.band,
.proof,
.faq {
  background: transparent;
}

.section-head {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.split-copy .section-head,
.fit-card .section-head {
  max-width: none;
  margin: 0 0 22px;
  text-align: left;
}

.split-copy .section-head p,
.fit-card .section-head p {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.fit-section .grid-2 {
  align-items: stretch;
}

.fit-card {
  padding: 34px;
}

.fit-card h2 {
  font-size: clamp(32px, 3.2vw, 48px);
}

.fit-card .list {
  gap: 14px;
}

.fit-card .list li {
  line-height: 1.45;
}

.list li::before {
  background: rgba(156, 79, 255, 0.2);
  box-shadow: inset 0 0 0 5px #9c4fff;
}

.list.no li::before {
  background: rgba(255, 143, 143, 0.14);
  box-shadow: inset 0 0 0 5px #ff8f8f;
}

.visual-tile {
  border-radius: 20px;
  background:
    radial-gradient(circle at 70% 20%, rgba(156, 79, 255, 0.24), transparent 18rem),
    linear-gradient(35deg, #0b0019 75%, #2e0a5c);
}

.signal-board {
  width: min(86%, 470px);
}

.signal-line {
  grid-template-columns: 42px 1fr auto;
  padding: 16px;
  border-radius: 14px;
}

.signal-status {
  justify-self: end;
  white-space: nowrap;
}

.signal-dot,
.number,
.step::before {
  background: linear-gradient(#9440ff, #6505e0);
  color: #fff;
}

.signal-dot {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.callout {
  border: 1px solid transparent;
  border-radius: 20px;
  background:
    linear-gradient(35deg, #0b0019 75%, #2e0a5c) padding-box,
    linear-gradient(45deg, #1a0b30, #220d3f 76%, #6a2db9) border-box;
}

.callout h2,
.callout p {
  color: #fff;
}

.proof-note {
  padding: 38px;
}

.proof-note h2 {
  max-width: 720px;
  font-size: clamp(34px, 4vw, 58px);
}

.proof-note p {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.faq-list summary {
  color: #fff;
}

.faq summary {
  color: #fff;
}

.faq details p {
  max-width: 860px;
}

.module {
  padding: 22px;
}

.module span,
.tag {
  color: var(--muted);
}

.tag {
  border: 1px solid rgba(235, 220, 255, 0.16);
  background: rgba(235, 220, 255, 0.06);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.section-cta .button {
  min-width: 244px;
}

.final-cta-section,
.form-section {
  background:
    radial-gradient(circle at 50% 20%, rgba(156, 79, 255, 0.2), transparent 30rem),
    var(--night);
}

.final-cta-panel {
  border-radius: 20px;
}

.mini-flow span {
  color: var(--purple-soft);
}

.mini-flow span::before {
  background: linear-gradient(#fff, #c59bfd);
}

.form-section {
  min-height: calc(100vh - 88px);
}

.form-layout {
  width: min(1040px, calc(100% - 40px));
}

.form-intro {
  margin-bottom: 6px;
}

.form-intro p {
  color: var(--muted);
}

.form-card {
  border-radius: 20px;
  padding: 42px;
  color: var(--purple-soft);
}

.form-progress-track {
  height: 9px;
  background: rgba(235, 220, 255, 0.12);
}

.form-progress-bar {
  background: linear-gradient(90deg, #c59bfd, #9440ff 55%, #6505e0);
  box-shadow: 0 0 24px rgba(156, 79, 255, 0.52);
}

label,
.label {
  color: #fff;
}

input,
select,
textarea {
  min-height: 54px;
  border: 1px solid rgba(235, 220, 255, 0.18);
  border-radius: 14px;
  background: rgba(10, 5, 25, 0.86);
  color: #fff;
}

input::placeholder,
textarea::placeholder {
  color: rgba(235, 220, 255, 0.45);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #b88cff;
  box-shadow: 0 0 0 3px rgba(184, 140, 255, 0.2);
}

select option {
  background: #0b0019;
  color: #fff;
}

.check input {
  accent-color: #9c4fff;
}

.result {
  border: 1px solid rgba(235, 220, 255, 0.18);
  background: rgba(156, 79, 255, 0.12);
  color: var(--purple-soft);
}

.footer {
  border-top: 1px solid rgba(67, 33, 112, 0.75);
  background: #090014;
  color: var(--muted);
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(42px, 5.4vw, 78px);
}

.compact-section {
  padding-top: 72px;
}

.outcome-card {
  min-height: 255px;
}

.result-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.68fr);
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 30px;
  border-radius: 22px;
}

.result-preview .eyebrow {
  margin-bottom: 18px;
}

.result-preview-copy h3 {
  max-width: 620px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.result-preview-copy p {
  max-width: 560px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.result-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(235, 220, 255, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 10%, rgba(156, 79, 255, 0.22), transparent 12rem),
    rgba(9, 0, 20, 0.72);
}

.result-card-top,
.result-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.result-card-top {
  align-items: end;
}

.result-card-top span,
.result-row span {
  color: var(--muted);
  font-size: 14px;
}

.result-card-top strong {
  color: #fff;
  font-size: 42px;
  line-height: 1;
}

.score-track {
  overflow: hidden;
  height: 10px;
  border-radius: 100px;
  background: rgba(235, 220, 255, 0.12);
}

.score-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c59bfd, #9440ff 55%, #6505e0);
  box-shadow: 0 0 22px rgba(156, 79, 255, 0.52);
}

.result-row {
  padding-top: 12px;
  border-top: 1px solid rgba(235, 220, 255, 0.12);
}

.result-row strong {
  max-width: 210px;
  color: #fff;
  font-size: 15px;
  line-height: 1.3;
  text-align: right;
}

.number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 12px;
  font-weight: 700;
}

.problem-section {
  padding-top: 72px;
}

.problem-section .grid-2 {
  align-items: stretch;
}

.problem-section .visual-tile,
.problem-section .split-copy {
  min-height: 440px;
}

.proof-panel h3,
.scarcity-callout h3 {
  margin-bottom: 16px;
}

.proof-assets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.proof-samples {
  display: grid;
  gap: 24px;
  margin-top: 34px;
  padding: 30px;
  border: 1px solid transparent;
  border-radius: 22px;
  background:
    linear-gradient(#1c053a, #0b0019 24%) padding-box,
    linear-gradient(135deg, rgba(137, 59, 236, 0.9), rgba(54, 24, 95, 0.7) 32%, rgba(46, 23, 78, 0.75)) border-box;
}

.proof-samples-head {
  max-width: 790px;
}

.proof-samples-head .eyebrow {
  margin-bottom: 16px;
}

.proof-samples-head h2 {
  font-size: clamp(32px, 3.5vw, 48px);
}

.proof-samples-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

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

.proof-sample-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(235, 220, 255, 0.14);
  border-radius: 18px;
  background: rgba(235, 220, 255, 0.045);
}

.proof-sample-card span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(156, 79, 255, 0.18);
  color: #d7b9fc;
  font-size: 12px;
  font-weight: 700;
}

.proof-sample-card h3 {
  font-size: 21px;
}

.proof-sample-card p {
  margin-top: 10px;
  color: var(--muted);
}

.scarcity-callout {
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 0;
}

.scarcity-callout h3 {
  color: #fff;
}

.scarcity-callout p {
  color: var(--muted);
}

.final-cta-panel .button {
  white-space: normal;
}

@media (max-width: 980px) {
  .nav-inner {
    min-height: 72px;
  }

  .hero {
    min-height: auto;
    padding: 76px 0 58px;
  }

  .final-cta {
    gap: 22px;
  }

  .fit-card,
  .proof-note {
    padding: 26px;
  }

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

  .proof-samples-grid {
    grid-template-columns: 1fr;
  }

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

  .problem-section .visual-tile,
  .problem-section .split-copy {
    min-height: auto;
  }

  .fit-card .section-head {
    margin-bottom: 18px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 150px;
  }

  h1,
  .hero h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 38px;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-copy {
    font-size: 18px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .fit-card h2,
  .proof-note h2 {
    font-size: 32px;
  }

  .signal-line {
    grid-template-columns: 42px 1fr;
  }

  .signal-status {
    grid-column: 2;
    justify-self: start;
  }

  .proof-assets {
    grid-template-columns: 1fr;
  }

  .proof-samples {
    padding: 20px;
  }

  .proof-sample-card {
    min-height: auto;
  }

  .outcome-card {
    min-height: auto;
  }

  .result-preview {
    padding: 20px;
  }

  .result-preview-copy h3 {
    font-size: 28px;
  }

  .result-card-top,
  .result-row {
    display: grid;
    gap: 5px;
  }

  .result-row strong {
    max-width: none;
    text-align: left;
  }

  .form-card {
    padding: 22px;
  }

  .form-intro {
    gap: 8px;
  }
}
