:root {
  --bg: #161620;
  --panel: #20202e;
  --panel-2: #242434;
  --text: #ffffff;
  --muted: #bdbdd2;
  --yellow: #ffe234;
  --coral: #ff8a7a;
  --green: #4ade80;
  --border: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 16, 0.72), rgba(10, 10, 16, 0.36)),
    url("/assets/lp-hero.png") center / cover no-repeat;
  opacity: 0.95;
}

.nav,
.hero-inner,
.benefits,
.section,
.cta,
footer {
  position: relative;
  width: min(100% - 44px, 1160px);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
}

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

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 900;
}

.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-inner {
  display: flex;
  min-height: 640px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 84px 0;
}

.hero-copy {
  flex: 1 1 420px;
  max-width: 560px;
}

.kicker,
.section-kicker {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 15px;
  font-weight: 900;
}

.section-kicker {
  color: var(--coral);
  font-size: 13px;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(46px, 7vw, 66px);
  line-height: 1.15;
  font-weight: 900;
}

.lead {
  max-width: 600px;
  color: #e9e7dc;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary {
  color: #18120b;
  background: var(--yellow);
}

.secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.score-card {
  flex: 0 1 300px;
  min-width: 260px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(26, 26, 38, 0.88);
}

.score-card p {
  margin-bottom: 0;
  color: #afafc7;
  font-size: 13px;
  font-weight: 800;
}

.score-card strong {
  display: block;
  color: var(--yellow);
  font-size: 76px;
  line-height: 1.15;
  font-weight: 900;
}

.score-card span {
  display: block;
  color: #f3f1e8;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.meter {
  height: 10px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.meter i {
  display: block;
  width: 86%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.benefits {
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: -52px;
}

.benefits article,
.cards article,
.faq article {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
}

.benefits article {
  min-height: 116px;
  padding: 20px;
  background: var(--panel-2);
}

.benefits h2 {
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 16px;
}

.benefits p,
.cards p,
.showcase-copy p,
.pro p,
.faq p,
.cta p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 700;
}

.section {
  padding-top: 92px;
}

.section > h2,
.showcase-copy h2,
.pro h2,
.cta h2 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.26;
  font-weight: 900;
}

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

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

.cards article {
  min-height: 156px;
  padding: 24px;
}

.cards span {
  display: block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.cards h3,
.faq h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.35;
}

.showcase {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.phone {
  width: min(100%, 390px);
  padding: 18px;
  border: 8px solid #303044;
  border-radius: 28px;
  background: #0f1018;
}

.phone-top {
  width: 80px;
  height: 5px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: #47475c;
}

.photo-placeholder {
  height: 170px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #35354a;
}

.answer-line {
  height: 14px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--yellow);
}

.answer-line.short {
  width: 68%;
  background: #ff6b6b;
}

.feedback {
  margin-top: 16px;
  padding: 16px;
  border-radius: 8px;
  background: #26263a;
}

.feedback strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 13px;
}

.showcase-copy {
  flex: 1 1 300px;
  max-width: 590px;
}

.showcase-copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.showcase-copy li {
  position: relative;
  padding-left: 22px;
  font-weight: 800;
}

.showcase-copy li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.pro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: stretch;
  gap: 22px;
}

.pro article {
  padding: 26px;
  border: 1px solid rgba(74, 222, 128, 0.26);
  border-radius: 8px;
  background: #1f2e2a;
}

.pro article span {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #18120b;
  background: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

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

.faq article {
  padding: 22px;
}

.cta {
  margin-top: 96px;
  margin-bottom: 72px;
  padding: 54px 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #2a2a3c;
  text-align: center;
}

.cta h2 {
  margin-right: auto;
  margin-left: auto;
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 42px;
}

footer .brand img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
}

footer p {
  margin: 0;
  color: #8888aa;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero-inner {
    align-items: flex-start;
  }

  .benefits,
  .three,
  .pro {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav,
  .hero-inner,
  .benefits,
  .section,
  .cta,
  footer {
    width: min(100% - 32px, 1160px);
  }

  .hero {
    min-height: 680px;
  }

  .hero-inner {
    min-height: auto;
    padding: 72px 0 74px;
  }

  .lead {
    font-size: 16px;
  }

  .score-card {
    max-width: 320px;
  }

  .benefits {
    grid-template-columns: 1fr;
    margin-top: -34px;
  }

  .three,
  .pro {
    grid-template-columns: 1fr;
  }

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