:root{
  --text:#0b1020;
  --muted:#66708a;
  --line:#e7ebf4;
  --bg:#ffffff;

  --shadow: 0 18px 45px rgba(12,18,38,.12);
  --shadowSoft: 0 14px 28px rgba(12,18,38,.10);

  /* Hero gradient like screenshot style */
  --heroGrad: linear-gradient(110deg, #2a0a4f 0%, #4a2f82 28%, #16c7b1 62%, #0f69c9 100%);

  /* Title gradient */
  --titleGrad: linear-gradient(90deg, #1173d3 0%, #6b6fdc 38%, #c04fd6 100%);

  /* Large CTA pill gradient */
  --pillGrad: linear-gradient(90deg, #ff56c7 0%, #4a8be6 45%, #00c2ff 100%);

  /* Floating CTA gradient */
  --floatGrad: linear-gradient(90deg, #1773c9 0%, #19d6a1 100%);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* Container similar to screenshot spacing */
.container{
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

/* Topbar */
.topbar{
  position: sticky;
  top:0;
  z-index: 30;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:-.02em;
  text-decoration:none;
  color:inherit;
}
.brand__dot{
  width:12px;
  height:12px;
  border-radius:999px;
  background: linear-gradient(135deg, #ff56c7, #1ce7b4);
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
}
.brand__name{font-size:20px}
.topbar__actions{
  display:flex;
  align-items:center;
  gap:18px;
}
.topbar__link{
  font-weight:900;
  font-size:12px;
  letter-spacing:.1em;
  text-decoration:none;
  color:#1a2240;
  opacity:.85;
}
.topbar__link:hover{opacity:1}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  cursor:pointer;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.04em;
}
.btn--nav{
  height:40px;
  padding: 0 16px;
  border-radius:999px;
  background:#0b1020;
  color:#fff;
  box-shadow: 0 16px 34px rgba(11,16,32,.22);
}

/* Hero */
.hero-wrap{padding: 26px 0 14px;}
.hero{
  border-radius: 44px;
  overflow:hidden;
  box-shadow: var(--shadow);
  position:relative;
}
.hero__bg{
  position:absolute; inset:0;
  background: var(--heroGrad);
}
.hero__content{
  position:relative;
  padding: 44px 44px 38px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  min-height: 360px;
}
.hero__title{
  margin:0;
  font-size: clamp(56px, 5.2vw, 78px);
  line-height: .9;
  letter-spacing:-.04em;
  color:#fff;
}
.hero__bullets{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap: 12px 16px;
  color: rgba(255,255,255,.92);
  font-weight:800;
  font-size:14px;
}
.bullet{
  display:flex;
  align-items:center;
  gap: 10px;
}
.tick{
  width:20px;
  height:20px;
  border-radius:999px;
  background: rgba(0,0,0,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.hero__ctaRow{
  margin-top: 22px;
  display:flex;
  align-items:center;
  gap: 18px;
}
.btn--hero{
  height:54px;
  padding: 0 34px;
  border-radius:999px;
  background:#fff;
  color:#0b1020;
  box-shadow: 0 22px 40px rgba(0,0,0,.20);
  font-size:14px;
}
.hero__rating{
  background: rgba(0,0,0,.25);
  border-radius: 16px;
  padding: 12px 14px;
  color:#fff;
  min-width: 118px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.hero__ratingTop{display:flex; align-items:baseline; gap:8px}
.hero__ratingValue{font-size:24px; font-weight:900}
.hero__ratingStar{opacity:.95}
.hero__ratingSub{margin-top:2px; font-size:12px; opacity:.85; font-weight:800}

/* Right side mock */
.hero__right{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.phone{
  width: min(310px, 100%);
  aspect-ratio: 10/13;
  border-radius: 30px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  padding: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,.26);
  backdrop-filter: blur(8px);
}
.phone__inner{
  height:100%;
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 16px;
}
.scoreCard{
  width:100%;
  border-radius: 18px;
  border: 1px solid #eef1f8;
  box-shadow: 0 18px 32px rgba(16,24,40,.12);
  padding: 14px;
  background:#fff;
}
.scoreCard__row{
  display:flex;
  justify-content:space-between;
  gap:10px;
}
.pill{
  font-size:12px;
  font-weight:900;
  padding: 8px 12px;
  border-radius:999px;
  background:#f3f6ff;
  color:#1a2b56;
}
.pill--mint{background:#e8fff8; color:#0a6b5d}
.scoreCard__big{
  margin: 10px 0 10px;
  display:flex;
  align-items:baseline;
  gap:10px;
}
.scoreCard__num{
  font-size:52px;
  font-weight:900;
  letter-spacing:-.03em;
}
.scoreCard__lbl{font-weight:900; color:#3c4760}
.scoreCard__chips{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.chip{
  font-size:12px;
  font-weight:900;
  padding: 8px 12px;
  border-radius:999px;
  background:#dffef4;
  color:#0a6b5d;
}
.meter{
  height:12px;
  border-radius:999px;
  overflow:hidden;
  display:flex;
  position:relative;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}
.m{flex:1}
.m1{background:#ff5a6a}
.m2{background:#ff9956}
.m3{background:#ffd34d}
.m4{background:#27d38c}
.dot{
  position:absolute;
  top:50%;
  left:72%;
  transform: translate(-50%,-50%);
  width: 14px;
  height: 14px;
  border-radius:999px;
  background:#fff;
  border: 2px solid rgba(0,0,0,.12);
  box-shadow: 0 12px 22px rgba(0,0,0,.20);
}

/* glows */
.glow{
  position:absolute;
  filter: blur(24px);
  opacity:.6;
  border-radius:999px;
  z-index:0;
}
.glow--a{width:180px;height:180px;background:#ff56c7;left:-30px;bottom:-70px}
.glow--b{width:180px;height:180px;background:#1ce7b4;right:-40px;top:-70px}

/* Sections */
.section{padding: 64px 0;}
.section--pill{padding: 54px 0 70px;}

/* BIG gradient heading (like screenshot) */
.megaTitle{
  margin: 0 0 34px;
  text-align:center;
  font-size: clamp(44px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing:-.04em;
  font-weight: 900;
  background: var(--titleGrad);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
  text-shadow: 0 18px 40px rgba(0,0,0,.08);
}

/* 3 big cards */
.cards3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 10px;
}
.bigCard{
  background:#fff;
  border-radius: 22px;
  border: 1px solid #eef1f7;
  box-shadow: 0 22px 42px rgba(14,20,40,.10);
  padding: 28px 28px 26px;
  min-height: 380px;
  display:flex;
  flex-direction:column;
}
.bigCard__title{
  margin:0 0 18px;
  font-size: 30px;
  letter-spacing:-.02em;
  font-weight: 900;
  color:#0b1020;
  text-align:left;
}
.bigCard__art{
  flex: 1;
  border-radius: 18px;
  background: #fbfcff;
  border: 1px dashed rgba(20,30,60,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
}
.bigCard__text{
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: #222a44;
  text-align:center;
}

/* “bureaus” generic */
.badgeStack{
  display:flex;
  flex-direction:column;
  gap: 12px;
  width: 100%;
  align-items:center;
}
.badge{
  width: min(260px, 100%);
  text-align:center;
  padding: 12px 14px;
  border-radius: 999px;
  background:#fff;
  border: 1px solid #eef1f7;
  box-shadow: 0 16px 26px rgba(16,24,40,.06);
  font-weight: 900;
  color:#2b3350;
  font-size: 16px;
}

/* gauge icon size */
.iconGauge{
  width: min(320px, 100%);
  height: auto;
}

/* safe art */
.safeArt{
  width: 100%;
  height: 100%;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.safeArt__avatar{
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #b8f6ea, #7aa7ff);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}
.safeArt__shield{
  position:absolute;
  left: 22%;
  top: 42%;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background:#e9fff7;
  border: 1px solid rgba(15,118,110,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#0a6b5d;
  box-shadow: 0 18px 35px rgba(0,0,0,.12);
}
.safeArt__shield svg{width:34px;height:34px}
.safeArt__orbit{
  position:absolute;
  width: 220px;
  height: 110px;
  border-radius: 999px;
  border: 3px solid rgba(0, 210, 190, .35);
  transform: rotate(-12deg);
  filter: blur(.2px);
}

/* Big pill CTA */
.pillCta{
  width: min(980px, 100%);
  margin: 0 auto;
  background: var(--pillGrad);
  border-radius: 999px;
  padding: 34px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  box-shadow: 0 26px 60px rgba(0,0,0,.16);
}
.pillCta__left{
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 900;
  letter-spacing:-.03em;
  color:#fff;
  text-shadow: 0 14px 30px rgba(0,0,0,.14);
}
.pillCta__btn{
  height: 66px;
  padding: 0 34px;
  border-radius: 999px;
  background:#fff;
  color:#0b1020;
  font-weight: 900;
  font-size: 26px;
  letter-spacing:-.02em;
  text-decoration:none;
  box-shadow: 0 22px 44px rgba(0,0,0,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  border: 2px solid rgba(0,0,0,.06);
}

/* FAQ like screenshot */
.faqTitle{
  text-align:center;
  font-size: clamp(38px, 4.3vw, 58px);
  font-weight: 900;
  letter-spacing:-.04em;
  margin: 0;
  color:#120f2a;
}
.faqLine{
  width: min(760px, 100%);
  height: 2px;
  background: #e7ecf6;
  margin: 26px auto 0;
  border-radius: 999px;
}
.faqWrap{
  width: min(860px, 100%);
  margin: 28px auto 0;
}
.faqRow{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 26px 0;
  border:0;
  background: transparent;
  border-bottom: 2px solid #e7ecf6;
  cursor:pointer;
  font-family: inherit;
  font-size: 22px;
  font-weight: 900;
  color:#0b1020;
  text-align:left;
}
.chev{
  width: 16px;
  height: 16px;
  border-right: 3px solid #1473c9;
  border-bottom: 3px solid #1473c9;
  transform: rotate(45deg);
  transition: transform .18s ease;
  margin-right: 6px;
}
.faqRow[aria-expanded="true"] .chev{
  transform: rotate(-135deg);
}
.faqAns{
  padding: 0 0 22px;
  color: #2c3556;
  font-size: 18px;
  line-height: 1.75;
  border-bottom: 2px solid #e7ecf6;
}

/* Footer */
.footer{
  background:#0b0f24;
  color: rgba(255,255,255,.86);
  padding: 46px 0 32px;
  margin-top: 40px;
}
.footer__inner{display:flex; flex-direction:column; gap: 18px}
.footer__cols{
  display:grid;
  grid-template-columns: 1fr 0fr;
  gap: 28px;
  padding-bottom: 10px;
}
.footer__title{
  font-weight: 900;
  color:#fff;
  margin-bottom: 12px;
  font-size: 16px;
}
.footer__link{
  display:block;
  color: rgba(255,255,255,.78);
  text-decoration:none;
  margin: 10px 0;
  font-weight: 800;
}
.footer__link:hover{color:#fff}
.footer__fine{
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.60);
}

/* FIXED FLOATING CTA (middle bottom, like screenshot) */
.floatingCta{
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 60;
  pointer-events: none;
}
.floatingCta__inner{
  pointer-events: auto;
  background: var(--floatGrad);
  border-radius: 999px;
  padding: 14px 18px;
  width: min(720px, calc(100% - 24px));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  box-shadow: 0 26px 55px rgba(0,0,0,.22);
  border: 2px solid rgba(255,255,255,.18);
}
.floatingCta__text{
  font-size: 22px;
  font-weight: 900;
  letter-spacing:-.03em;
  color:#fff;
  text-shadow: 0 16px 30px rgba(0,0,0,.16);
  padding-left: 14px;
}
.floatingCta__btn{
  height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: #ffffff;
  color: #0b1020;
  font-weight: 900;
  font-size: 18px;
  letter-spacing:.02em;
  text-decoration:none;
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
  border: 2px solid rgba(0,0,0,.06);
  display:flex;
  align-items:center;
  justify-content:center;
      text-align: center;
}

/* Make room for floating CTA so it doesn’t cover content */
body{padding-bottom: 120px;}

/* Responsive */
@media (max-width: 980px){
  .hero__content{
    grid-template-columns: 1fr;
    padding: 34px 20px 26px;
    gap: 22px;
  }
  .cards3{grid-template-columns: 1fr; gap: 18px;}
  .bigCard{min-height: auto;}
  .pillCta{padding: 22px 18px;}
  .pillCta__btn{height: 56px; font-size: 20px;}
  .faqRow{font-size: 18px; padding: 20px 0;}
  .floatingCta__text{font-size: 30px;}
  .floatingCta__btn{height: 52px;}
  .footer__cols{grid-template-columns: 1fr;}
}

@media (max-width: 520px){
  .container{width: calc(100% - 28px);}
  .hero{border-radius: 28px;}
  .hero__title{font-size: 52px;}
  .btn--hero{width: 100%;}
  .hero__ctaRow{flex-direction:column; align-items:flex-start;}
  .hero__rating{width: 100%;}
  .pillCta{flex-direction:column; align-items:stretch; border-radius: 32px;}
  .pillCta__btn{width: 100%;}
  .floatingCta__inner{padding: 12px;}
}
