:root {
  color-scheme: dark;
  --bg: #0d1113;
  --panel: #151a1d;
  --panel-2: #1d2428;
  --panel-3: #101518;
  --text: #f8f4ea;
  --muted: #aeb8b7;
  --soft: #dfe7e3;
  --line: rgba(255, 255, 255, 0.12);
  --teal: #28e0c3;
  --teal-2: #12bfa8;
  --amber: #ffb84d;
  --amber-2: #ff8f3d;
  --danger: #ff6b6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

.app {
  min-height: 100vh;
}

.hero {
  position: relative;
  display: grid;
  min-height: 96vh;
  align-items: end;
  overflow: hidden;
  padding: 22px;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 17, 19, 0.98) 0%, rgba(13, 17, 19, 0.78) 52%, rgba(13, 17, 19, 0.36) 100%),
    linear-gradient(0deg, rgba(13, 17, 19, 1) 0%, rgba(13, 17, 19, 0.28) 46%);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header,
.hero__content,
.hero__stats {
  position: relative;
  z-index: 1;
}

.site-header {
  position: absolute;
  top: 18px;
  right: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  width: min(230px, 58vw);
  height: 58px;
  align-items: center;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.header-trust {
  display: none;
  gap: 8px;
}

.header-trust span,
.hero__proof span,
.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
}

.header-trust span {
  padding: 8px 11px;
}

.hero__content {
  max-width: 780px;
  padding: 118px 0 142px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 8vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5.2vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.08;
}

.lead {
  max-width: 650px;
  color: var(--soft);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.5;
}

.hero__actions {
  display: grid;
  gap: 10px;
  max-width: 460px;
  margin-top: 26px;
}

.microcopy {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, filter 160ms ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  color: #15100a;
  box-shadow: 0 14px 38px rgba(255, 144, 61, 0.28);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.button--xl,
.button--wide {
  width: 100%;
  min-height: 62px;
  font-size: 1.08rem;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.hero__proof span,
.trust-row span {
  padding: 8px 12px;
}

.hero__stats {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(13, 17, 19, 0.76);
  backdrop-filter: blur(14px);
}

.hero__stats div {
  min-width: 0;
  padding: 15px 12px;
  border-right: 1px solid var(--line);
}

.hero__stats div:last-child {
  border-right: 0;
}

.hero__stats strong,
.hero__stats span {
  display: block;
}

.hero__stats strong {
  font-size: clamp(1.2rem, 3vw, 1.55rem);
}

.hero__stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.test,
.analysis,
.paywall,
.result {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.task__prompt,
.answer,
.analysis__panel,
.checkout,
.paywall__summary,
.result__score,
.result__copy {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.test {
  min-height: 100vh;
  padding: 20px 0 34px;
}

.test__top {
  position: sticky;
  top: 0;
  z-index: 4;
  display: grid;
  gap: 14px;
  padding: 12px 0 14px;
  background: rgba(13, 17, 19, 0.92);
  backdrop-filter: blur(14px);
}

.test__hint {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.test__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  background: var(--panel);
}

.test__status span {
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 900;
}

.test__status strong {
  font-size: 1.05rem;
}

.progress-wrap {
  position: sticky;
  top: 116px;
  z-index: 3;
  padding-bottom: 14px;
  background: rgba(13, 17, 19, 0.88);
  backdrop-filter: blur(14px);
}

.progress-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.progress-labels span:last-child {
  color: var(--soft);
}

.progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #252c30;
}

.progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transition: width 240ms ease;
}

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

.task__prompt {
  display: grid;
  min-height: 340px;
  place-items: center;
  padding: 12px;
}

.task__prompt img,
.answer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.answer {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  min-height: 0;
  place-items: center;
  padding: 8px;
  background: var(--panel-2);
}

.answer:hover,
.answer:focus-visible {
  outline: none;
  border-color: var(--amber);
  filter: brightness(1.06);
}

.answer__badge {
  position: absolute;
  top: 9px;
  left: 9px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-weight: 900;
}

.analysis {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 34px 0;
}

.analysis__panel {
  width: min(740px, 100%);
  padding: clamp(24px, 5vw, 54px);
  background:
    radial-gradient(circle at 20% 20%, rgba(40, 224, 195, 0.14), transparent 34%),
    radial-gradient(circle at 80% 30%, rgba(255, 184, 77, 0.14), transparent 30%),
    var(--panel);
}

.analysis__panel p {
  color: var(--soft);
  line-height: 1.6;
}

.analysis__meter {
  height: 14px;
  overflow: hidden;
  margin: 28px 0 18px;
  border-radius: 999px;
  background: #252c30;
}

.analysis__meter span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transition: width 680ms ease;
}

.analysis__steps {
  display: grid;
  gap: 10px;
}

.analysis__steps span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
  text-align: center;
}

.analysis__steps span:first-child,
.analysis__steps .is-active {
  border-color: rgba(40, 224, 195, 0.5);
  color: var(--text);
}

.paywall,
.result {
  display: grid;
  min-height: 100vh;
  gap: 16px;
  padding: 26px 0;
}

.paywall__summary,
.checkout,
.result__score,
.result__copy {
  padding: clamp(22px, 4vw, 44px);
}

.paywall__summary {
  background:
    linear-gradient(135deg, rgba(40, 224, 195, 0.08), rgba(255, 184, 77, 0.08)),
    var(--panel);
}

.paywall__summary p,
.checkout p,
.result__copy p {
  color: #cbd5d2;
  line-height: 1.6;
}

.price-box,
.urgency {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
}

.price-box span,
.price-box small,
.urgency span,
.locked-result span,
.locked-result small {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.locked-result {
  display: grid;
  min-height: 210px;
  place-items: center;
  border: 1px solid rgba(255, 184, 77, 0.34);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 184, 77, 0.14), transparent 45%),
    #111719;
}

.locked-result strong {
  color: var(--amber);
  font-size: clamp(4rem, 14vw, 6rem);
  letter-spacing: 0;
}

.checkout {
  display: flex;
  align-content: start;
  flex-direction: column;
  gap: 14px;
}

.checkout__promise {
  margin-bottom: 0;
}

.price-box {
  padding: 16px;
}

.price-box strong {
  display: block;
  margin: 4px 0 2px;
  color: var(--amber);
  font-size: clamp(2.2rem, 8vw, 3.2rem);
  line-height: 1;
}

.benefits {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  position: relative;
  min-height: 40px;
  padding: 11px 10px 11px 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--soft);
  line-height: 1.35;
}

.benefits li::before {
  position: absolute;
  top: 17px;
  left: 15px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  content: "";
}

.urgency {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
}

.urgency strong {
  color: var(--amber);
  font-size: 1.2rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.result__score {
  min-height: 360px;
  background:
    radial-gradient(circle at 30% 20%, rgba(40, 224, 195, 0.18), transparent 34%),
    var(--panel);
}

.result__logo {
  display: block;
  width: min(220px, 100%);
  height: 58px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 22px;
}

.result__score h2 {
  margin: 18px 0 6px;
  color: var(--amber);
  font-size: clamp(5rem, 18vw, 9rem);
}

.is-hidden {
  display: none;
}

@media (min-width: 720px) {
  .hero {
    padding: 32px;
  }

  .site-header {
    top: 28px;
    right: 32px;
    left: 32px;
  }

  .header-trust {
    display: flex;
  }

  .hero__content {
    padding-bottom: 132px;
  }

  .hero__stats {
    right: 32px;
    bottom: 32px;
    left: 32px;
  }

  .test__top {
    grid-template-columns: minmax(0, 1fr) 210px;
    align-items: start;
  }

  .progress-wrap {
    top: 98px;
  }

  .task {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 22px;
  }

  .task__prompt {
    min-height: 540px;
    padding: 18px;
  }

  .answers {
    gap: 14px;
  }

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

  .paywall,
  .result {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
    align-items: center;
    gap: 22px;
    padding: 40px 0;
  }

}

@media (max-width: 460px) {
  .hero__stats span,
  .microcopy,
  .progress-labels {
    font-size: 0.82rem;
  }

  .hero__proof span {
    font-size: 0.78rem;
  }

  .task__prompt {
    min-height: 300px;
  }

  .answer__badge {
    width: 24px;
    height: 24px;
    font-size: 0.82rem;
  }
}
