:root{
  --bg: #faf7f4;
  --bg2: rgba(245, 244, 250, 0.8);
  --text: #121218;
  --muted: rgba(18, 18, 24, 0.68);

  --surface: rgba(255, 255, 255, 0.72);
  --surface2: rgba(255, 255, 255, 0.55);
  --stroke: rgba(18, 18, 24, 0.10);

  --shadow: 0 20px 60px rgba(17, 17, 25, 0.10);
  --shadow2: 0 12px 30px rgba(17, 17, 25, 0.08);

  --radius: 18px;
  --radius2: 12px;

  --accentA: rgba(145, 92, 255, 0.95);
  --accentB: rgba(255, 131, 178, 0.92);

  --focus: rgba(145, 92, 255, 0.35);
  --max: 1120px;

  --gap: 18px;
  --pad: 20px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 14% 8%, rgba(145, 92, 255, 0.18), transparent 60%),
    radial-gradient(1000px 520px at 82% 10%, rgba(255, 131, 178, 0.14), transparent 58%),
    radial-gradient(900px 520px at 60% 92%, rgba(72, 175, 255, 0.10), transparent 56%),
    var(--bg);
  line-height: 1.5;
}

img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
a:hover{ opacity: 0.92; }
button{ font: inherit; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.srOnly{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.muted{ color: var(--muted); }
.fineprint{
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.badge{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.66);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
  font-size: 13px;
  color: rgba(18,18,24,0.80);
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(250, 247, 244, 0.72);
  border-bottom: 1px solid var(--stroke);
}
.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
}
.brand__mark{
  width: 14px;
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accentA), var(--accentB));
  box-shadow: 0 10px 30px rgba(145, 92, 255, 0.20);
}
.brand__name{
  font-weight: 700;
  letter-spacing: 0.2px;
}

.navToggle{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.6);
  box-shadow: var(--shadow2);
}
.navToggle__line{
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: rgba(18,18,24,0.65);
}

.nav{
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__link{
  padding: 10px 10px;
  border-radius: 12px;
  color: rgba(18,18,24,0.72);
}
.nav__link--active{
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
}
.nav__note{
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
  max-width: 220px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.65);
  box-shadow: var(--shadow2);
  cursor: pointer;
  font-weight: 650;
}

.btn--primary{
  border: 1px solid rgba(145,92,255,0.20);
  background: linear-gradient(135deg, rgba(145,92,255,0.95), rgba(255,131,178,0.90));
  color: white;
  box-shadow: 0 18px 50px rgba(145, 92, 255, 0.18);
}
.btn--ghost{
  background: rgba(255,255,255,0.45);
}
.btn--lg{ padding: 14px 16px; border-radius: 16px; }
.btn--sm{ padding: 10px 12px; border-radius: 12px; font-size: 14px; }

.btn:focus-visible,
.nav__link:focus-visible,
.textLink:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.hero{
  padding: 52px 0 26px;
}
.hero--inner{
  padding-top: 46px;
}
.hero__grid{
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
  align-items: center;
}
.hero__title{
  margin: 14px 0 10px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.6px;
}
.hero__lead{
  margin: 0;
  font-size: 17px;
  color: rgba(18, 18, 24, 0.72);
  max-width: 58ch;
}
.hero__cta{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__media{
  position: relative;
}
.media{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.35);
  box-shadow: var(--shadow);
}
.media--sm{
  border-radius: 18px;
}
.hero__glass{
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.66);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: min(320px, calc(100% - 28px));
}
.hero__glassRow{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 4px;
  border-bottom: 1px dashed rgba(18,18,24,0.10);
}
.hero__glassRow:last-child{ border-bottom: none; }
.hero__glassText{
  font-size: 13px;
  color: rgba(18,18,24,0.70);
}

.dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(18,18,24,0.25);
}
.dot--ok{ background: rgba(64, 170, 120, 0.95); }
.dot--warn{ background: rgba(255, 163, 69, 0.95); }

.trustline{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trustline__item{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.50);
  color: rgba(18,18,24,0.70);
  font-size: 13px;
}

.section{
  padding: 44px 0;
}
.section--soft{
  background: radial-gradient(1000px 420px at 50% 0%, rgba(255,255,255,0.65), transparent 60%), var(--bg2);
  border-top: 1px solid rgba(18,18,24,0.06);
  border-bottom: 1px solid rgba(18,18,24,0.06);
}
.sectionHead{
  margin-bottom: 18px;
}
.sectionHead h1, .sectionHead h2{
  margin: 0 0 6px;
  letter-spacing: -0.3px;
}
.sectionHead p{ margin: 0; }

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

.card{
  padding: var(--pad);
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--surface);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.card--dir .card__top{ margin-bottom: 10px; }
.card--dir h3{ margin: 0 0 6px; }
.card--dir p{ margin: 0 0 12px; }

.card__kicker{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(18,18,24,0.55);
  margin-bottom: 8px;
}
.card__title{
  margin: 0 0 12px;
}
.card__ctaRow{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.listCheck{
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.listCheck li{
  position: relative;
  padding-left: 26px;
  color: rgba(18,18,24,0.72);
}
.listCheck li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px; height: 12px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(145,92,255,0.95), rgba(255,131,178,0.90));
  box-shadow: 0 10px 20px rgba(145,92,255,0.18);
}

.textLink{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 700;
  color: rgba(18,18,24,0.80);
}

.steps{
  display: grid;
  gap: 12px;
}
.step{
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.55);
  box-shadow: var(--shadow2);
}
.step__num{
  width: 34px; height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(145,92,255,0.95), rgba(255,131,178,0.90));
}
.step__body h3{ margin: 0 0 2px; }
.step__body p{ margin: 0; }

.ctaBand{
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(145,92,255,0.18);
  background: linear-gradient(135deg, rgba(145,92,255,0.10), rgba(255,131,178,0.08));
  box-shadow: var(--shadow2);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}
.ctaBand__text h3{ margin: 0 0 4px; }
.ctaBand__text p{ margin: 0; }
.ctaBand__cta{ text-align: right; }

.divider{
  height: 1px;
  background: rgba(18,18,24,0.08);
  margin: 14px 0;
}

.faq{
  display: grid;
  gap: 10px;
}
.faq__item{
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.55);
  border-radius: var(--radius2);
  padding: 12px 14px;
  box-shadow: var(--shadow2);
}
.faq__item summary{
  cursor: pointer;
  font-weight: 750;
  color: rgba(18,18,24,0.82);
}
.faq__content{
  margin-top: 10px;
  color: rgba(18,18,24,0.70);
}

.prose{
  max-width: 80ch;
}
.prose h2{
  margin: 18px 0 8px;
}
.prose p, .prose li{
  color: rgba(18,18,24,0.72);
}
.prose ul{
  margin: 8px 0 14px 18px;
}

.stickyCta{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
  background: rgba(250, 247, 244, 0.72);
  border-top: 1px solid var(--stroke);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 40;
}
.stickyCta__inner{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.footer{
  padding: 44px 0 70px;
  border-top: 1px solid rgba(18,18,24,0.08);
}
.footer__grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 18px;
  align-items: start;
}
.footer__brand{
  font-weight: 800;
  margin-bottom: 6px;
}
.footer__links{
  display: grid;
  gap: 8px;
  color: rgba(18,18,24,0.76);
}
.footer__reqTitle{
  font-weight: 800;
  margin-bottom: 8px;
}
.footer__req{
  color: rgba(18,18,24,0.72);
  line-height: 1.5;
}
.footer__bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(18,18,24,0.06);
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .ctaBand{ grid-template-columns: 1fr; }
  .ctaBand__cta{ text-align: left; }
  .grid--3{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
}
@media (max-width: 860px){
  .navToggle{ display: inline-block; }
  .nav{
    position: absolute;
    top: 68px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--stroke);
    background: rgba(250, 247, 244, 0.92);
    box-shadow: var(--shadow);
  }
  .nav.isOpen{ display: flex; }
  .nav__note{ max-width: none; }
  .grid--2{ grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; }
}
