:root {
  --bg: #f3f0ff;
  --surface: #fffefa;
  --blue: #1746f5;
  --ink: #0b153f;
  --yellow: #ffc515;
  --lav: #cfc4ff;
  --mint: #63cda5;
  --coral: #ff8068;
  --muted: #50566f;
  --line: #dadcec;
  --shell: min(1420px, calc(100% - 48px));
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
.shell {
  width: var(--shell);
  margin: auto;
}
.notice-banner {
  background: #fff4b0;
  color: var(--ink);
  text-align: center;
  font-weight: 700;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.notice-banner p {
  margin: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 99;
  padding: 12px;
  background: var(--yellow);
  transform: translateY(-150%);
}
.skip:focus {
  transform: none;
}
.header {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 23px;
  font-weight: 850;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.spark {
  font-size: 48px;
  color: var(--blue);
  position: relative;
}
.spark:after {
  content: "✦";
  position: absolute;
  font-size: 25px;
  color: var(--yellow);
  right: -3px;
  bottom: -4px;
}
.nav {
  display: flex;
  gap: 55px;
  font-weight: 750;
}
.nav a {
  padding: 12px 2px;
  border-bottom: 2px solid transparent;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--blue);
  border-color: var(--blue);
}
.menu {
  display: none;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-weight: 750;
}
.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding: 35px 0;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(56px, 5.6vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  margin: 0;
}
.hero h1 span {
  display: block;
  color: var(--blue);
}
.lede {
  font-size: 21px;
  line-height: 1.5;
  color: #343b5b;
  max-width: 680px;
}
.actions {
  display: flex;
  gap: 16px;
  margin: 28px 0;
}
.button {
  min-height: 52px;
  padding: 14px 23px;
  border-radius: 10px;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-weight: 800;
}
.button.primary {
  background: var(--blue);
  color: #fff;
}
.button.secondary {
  background: #fff;
  border-color: var(--blue);
  color: var(--blue);
}
.button.yellow {
  background: var(--yellow);
}
.button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}
.trust {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #3b4260;
}
.trust i {
  font-style: normal;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ddd5ff;
  display: grid;
  place-items: center;
  color: var(--blue);
}
.assessment {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 21px;
  box-shadow: 0 18px 48px rgba(31, 38, 80, 0.12);
  overflow: hidden;
}
.assessment-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
.assessment-head h2 {
  margin: 0;
  font-size: 22px;
}
.steps {
  display: flex;
  gap: 10px;
}
.steps span {
  width: 29px;
  height: 29px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.steps .active {
  background: var(--blue);
  color: #fff;
}
.assessment-body {
  padding: 22px;
}
.assessment-body h3 {
  margin: 0 0 5px;
}
.assessment-body > p {
  margin: 0 0 15px;
  color: var(--muted);
}
.choices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.choice {
  min-height: 88px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  text-align: center;
  font-size: 13px;
}
.choice input {
  position: absolute;
  opacity: 0;
}
.choice:has(input:checked) {
  border: 2px solid var(--blue);
  background: #f0f3ff;
}
.choice b {
  font-size: 25px;
  color: var(--blue);
}
.result {
  margin-top: 14px;
  border: 1px solid #f0d78a;
  background: #fffaf0;
  border-radius: 13px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hours {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  border: 10px solid var(--blue);
  border-right-color: var(--yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: none;
}
.hours strong {
  font-size: 28px;
}
.hours span {
  font-size: 10px;
}
.result ul {
  list-style: none;
  padding: 0;
  margin: 5px 0;
  font-size: 13px;
}
.result li:before {
  content: "✓";
  color: #159d67;
  margin-right: 8px;
}
.assessment-foot {
  padding: 13px 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: flex-end;
}
.topics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.topic {
  min-height: 165px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}
.topic:nth-child(1) {
  background: #e9faf4;
}
.topic:nth-child(2) {
  background: #f0ecff;
}
.topic:nth-child(3) {
  background: #eaf3ff;
}
.topic:nth-child(4) {
  background: #fff7d9;
}
.topic:nth-child(5) {
  background: #fff0ec;
}
.topic h2 {
  font-size: 17px;
}
.topic p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.section {
  padding: 95px 0;
}
.section-title {
  font-size: clamp(40px, 4.2vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 0;
}
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: end;
}
.copy {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}
.text-link {
  color: var(--blue);
  font-weight: 800;
}
.feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}
.feature-main {
  background: var(--blue);
  color: #fff;
  border-radius: 24px;
  padding: 48px;
}
.pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 99px;
  background: #e7e2ff;
  color: var(--blue);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.09em;
}
.feature-main h2 {
  font-size: 45px;
  letter-spacing: -0.05em;
}
.clean-list {
  list-style: none;
  padding: 0;
  line-height: 2;
}
.clean-list li:before {
  content: "✓";
  color: var(--yellow);
  margin-right: 10px;
}
.stack {
  display: grid;
  gap: 15px;
}
.stack article,
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 27px;
}
.stack h3,
.card h2,
.card h3 {
  margin-top: 0;
}
.cta {
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 90px;
}
.cta h2 {
  font-size: 43px;
  line-height: 1.06;
  margin: 0;
}
.cta p {
  color: #d8dbeb;
  line-height: 1.7;
}
.page-hero {
  padding: 80px 0 60px;
}
.page-hero p:last-child {
  font-size: 21px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 760px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.number {
  color: var(--blue);
  font-weight: 850;
}
.price {
  font-size: 28px;
  font-weight: 850;
  margin: 20px 0;
}
.legal {
  max-width: 850px;
  padding: 80px 0 110px;
}
.legal h1 {
  font-size: 60px;
  letter-spacing: -0.055em;
  margin: 0;
}
.legal h2 {
  margin-top: 38px;
}
.legal p {
  line-height: 1.8;
  color: var(--muted);
}
.footer {
  background: #090f2d;
  color: #fff;
  padding: 65px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer h2 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aeb7db;
}
.footer a {
  display: block;
  margin: 14px 0;
  color: #eef0fa;
}
.footer p {
  color: #aeb7c7;
}
.footer-bottom {
  border-top: 1px solid #273052;
  margin-top: 45px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #8993b8;
  font-size: 12px;
}
.cookie {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: min(410px, calc(100% - 32px));
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(11, 21, 63, 0.22);
}
.cookie p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.cookie .actions {
  margin: 12px 0 0;
  justify-content: flex-end;
}
.cookie[hidden] {
  display: none;
}
.error {
  text-align: center;
  min-height: 600px;
  display: grid;
  place-content: center;
}
.error strong {
  font-size: 95px;
  color: var(--blue);
}
@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .topics {
    overflow-x: auto;
  }
  .topic {
    min-width: 240px;
  }
  .split,
  .feature {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  :root {
    --shell: min(100% - 28px, 1420px);
  }
  .header {
    height: 84px;
  }
  .brand {
    font-size: 18px;
  }
  .spark {
    font-size: 38px;
  }
  .menu {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    z-index: 20;
    top: 75px;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px;
    flex-direction: column;
    gap: 0;
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    padding: 15px;
  }
  .hero {
    padding-top: 25px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: clamp(46px, 14vw, 64px);
  }
  .actions {
    flex-direction: column;
  }
  .choices {
    grid-template-columns: repeat(2, 1fr);
  }
  .result {
    flex-direction: column;
  }
  .topics {
    width: calc(100% - 14px);
    margin-left: 14px;
  }
  .section {
    padding: 65px 0;
  }
  .grid-3,
  .grid-2,
  .cta {
    grid-template-columns: 1fr;
  }
  .cta,
  .feature-main {
    padding: 32px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
