:root {
  --purple: #6638ba;
  --purple-dark: #2c1655;
  --purple-deep: #170d2f;
  --orange: #ff6a00;
  --ink: #17131f;
  --muted: #6d6578;
  --soft: #f6f3fb;
  --line: #e6dfef;
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 22px 70px rgba(29, 13, 58, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.narrow { width: min(820px, calc(100% - 40px)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(102,56,186,.08);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; gap: 12px; align-items: center; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: white;
  background: linear-gradient(145deg, #3a8add, #6331b8);
  box-shadow: 0 8px 24px rgba(75, 52, 161, .3);
}
.brand strong, .brand small { display: block; }
.brand strong { font-family: "Manrope", sans-serif; font-size: 1.03rem; }
.brand small { color: var(--muted); font-size: .72rem; letter-spacing: .03em; }

.nav-menu { display: flex; align-items: center; gap: 25px; font-size: .94rem; }
.nav-menu > a:not(.button):hover { color: var(--purple); }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  background: var(--orange);
  color: white;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255,106,0,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(255,106,0,.3); }
.button-small { min-height: 42px; padding: 0 18px; }
.button-secondary { background: white; color: var(--purple-dark); box-shadow: none; }
.button-ghost { background: transparent; color: var(--purple-dark); border: 1px solid var(--line); box-shadow: none; }
.button-light { background: white; color: var(--purple-dark); box-shadow: none; }

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,.15), transparent 28%),
    linear-gradient(135deg, #7a48d1 0%, #5e31b1 55%, #3b1b78 100%);
  padding: 92px 0 98px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image:
    linear-gradient(120deg, transparent 35%, rgba(255,255,255,.18) 36%, transparent 37%),
    linear-gradient(30deg, transparent 60%, rgba(255,255,255,.15) 61%, transparent 62%);
  background-size: 260px 260px;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.eyebrow, .mini-label {
  display: inline-flex;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  color: var(--purple);
}
.eyebrow {
  color: white;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 8px 13px;
}
.mini-label.light { color: #ded0ff; }
h1, h2, h3 { font-family: "Manrope", sans-serif; line-height: 1.12; margin-top: 0; }
h1 { font-size: clamp(2.65rem, 5.5vw, 5rem); letter-spacing: -.045em; margin: 24px 0; max-width: 780px; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -.035em; margin: 10px 0 18px; }
h3 { font-size: 1.16rem; margin-bottom: 10px; }
.hero-lead { font-size: 1.15rem; color: rgba(255,255,255,.84); max-width: 680px; }
.hero-actions { display: flex; gap: 14px; margin: 34px 0; flex-wrap: wrap; }
.trust-row { display: flex; gap: 36px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.18); padding-top: 24px; }
.trust-row div { display: grid; }
.trust-row strong { font-family: "Manrope"; font-size: 1.35rem; }
.trust-row span { color: rgba(255,255,255,.7); font-size: .82rem; }

.hero-card {
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.22);
  padding: 14px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.hero-card img { border-radius: 18px; aspect-ratio: 1 / 1; object-fit: cover; }
.hero-card-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 8px 2px;
  font-size: .88rem;
  color: rgba(255,255,255,.82);
}
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #65e59b; box-shadow: 0 0 0 6px rgba(101,229,155,.12); }

.risk-strip { background: var(--purple-deep); color: white; padding: 48px 0; }
.risk-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; }
.risk-grid h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 0; }
.risk-grid p { color: rgba(255,255,255,.72); margin: 0; }

.section { padding: 100px 0; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 700px; margin-bottom: 48px; }
.section-heading p, .sticky-heading p { color: var(--muted); font-size: 1.04rem; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: white;
  min-height: 260px;
}
.step-card span { color: var(--purple); font-family: "Manrope"; font-weight: 800; font-size: .8rem; }
.step-card h3 { margin-top: 50px; }
.step-card p { color: var(--muted); }

.feature-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.sticky-heading { position: sticky; top: 120px; }
.text-link { color: var(--purple); font-weight: 700; }
.feature-list { display: grid; gap: 15px; }
.feature-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}
.feature-list p { margin: 0; color: var(--muted); }
.feature-icon {
  width: 50px; height: 50px; border-radius: 16px;
  display: grid; place-items: center;
  background: #efe7ff; color: var(--purple);
  font-weight: 800;
}

.assessment-section { background: linear-gradient(145deg, #30165d, #6b3bc1); color: white; }
.assessment-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.assessment-grid > div > p { color: rgba(255,255,255,.74); font-size: 1.05rem; }
.assessment-card { background: white; color: var(--ink); padding: 34px; border-radius: 28px; box-shadow: var(--shadow); }
.question { display: none; }
.question.active { display: block; }
.question-count { text-transform: uppercase; letter-spacing: .11em; color: var(--purple); font-weight: 800; font-size: .72rem; }
.question label {
  display: flex; gap: 12px; align-items: center;
  border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 16px; margin-top: 10px; cursor: pointer;
}
.question label:hover { border-color: #bba5e3; background: #faf8ff; }
.question input { accent-color: var(--purple); }
.assessment-controls { display: flex; justify-content: space-between; margin-top: 28px; gap: 12px; }
.result .button { margin: 10px 8px 0 0; }

.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.proof-points { border-left: 2px solid var(--line); padding-left: 36px; }
.proof-points p { padding: 13px 0; margin: 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.proof-points strong { color: var(--ink); }

.faq-list details { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-list summary { cursor: pointer; font-family: "Manrope"; font-weight: 700; font-size: 1.04rem; }
.faq-list p { color: var(--muted); margin-bottom: 0; }

.final-cta { background: var(--orange); color: white; padding: 78px 0; }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta h2 { max-width: 760px; }
.final-cta p { color: rgba(255,255,255,.83); }
.cta-stack { display: grid; gap: 14px; min-width: 230px; text-align: center; }
.phone-link { font-weight: 800; }

footer { padding: 70px 0 28px; background: #120a25; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .6fr; gap: 50px; }
.footer-grid > div { display: grid; align-content: start; gap: 8px; }
.footer-grid p, .footer-grid a, .footer-bottom { color: rgba(255,255,255,.65); }
.footer-brand small { color: rgba(255,255,255,.55); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 50px; padding-top: 22px; font-size: .8rem;
}

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; border: 1px solid var(--line); background: white; border-radius: 10px; padding: 9px 13px; }
  .nav-menu {
    display: none; position: absolute; left: 20px; right: 20px; top: 68px;
    background: white; padding: 18px; border-radius: 18px; box-shadow: var(--shadow);
    align-items: stretch; flex-direction: column; gap: 14px;
  }
  .nav-menu.open { display: flex; }
  .hero-grid, .risk-grid, .feature-layout, .assessment-grid, .proof-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero { padding-top: 70px; }
  .hero-card { max-width: 620px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-heading { position: static; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container, .narrow { width: min(100% - 28px, 1160px); }
  .section { padding: 72px 0; }
  h1 { font-size: 2.55rem; }
  .hero-actions .button { width: 100%; }
  .trust-row { gap: 22px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: auto; }
  .step-card h3 { margin-top: 32px; }
  .assessment-card { padding: 24px 18px; }
  .assessment-controls { flex-direction: column-reverse; }
  .assessment-controls .button, .result .button { width: 100%; margin-right: 0; }
  .feature-list article { grid-template-columns: 46px 1fr; padding: 20px; }
  .feature-icon { width: 42px; height: 42px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
