/* Apple-ish, minimal, serious — no external assets */
:root{
  --bg: #eef3ff;
  --bg2:#f7f9ff;
  --text:#0b0f1a;
  --muted:#667085;
  --line: rgba(16,24,40,.12);
  --card: rgba(255,255,255,.72);
  --shadow: 0 22px 60px rgba(15, 23, 42, .10);
  --shadow2: 0 10px 28px rgba(15, 23, 42, .10);
  --blue:#2f6df6;
  --blue2:#87a9ff;
  --radius: 22px;
  --radius2: 18px;
  --container: 1080px;
  --font: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: var(--font);
  color:var(--text);
  background: radial-gradient(1200px 700px at 50% -200px, #dbe7ff 0%, transparent 60%),
              linear-gradient(180deg, var(--bg) 0%, var(--bg2) 40%, #ffffff 100%);
}

a{color:inherit}
.container{max-width:var(--container); margin:0 auto; padding:0 22px}

.skip-link{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{left:22px; top:12px; width:auto; height:auto; background:#fff; padding:10px 12px; border-radius:12px; outline:2px solid var(--blue)}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16,24,40,.08);
}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; gap:18px; padding:14px 0}

.brand{display:flex; align-items:center; gap:12px; min-width:240px}
.brand__mark{
  width:38px; height:38px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(180deg, rgba(47,109,246,.18), rgba(47,109,246,.06));
  border:1px solid rgba(47,109,246,.22);
  box-shadow: 0 10px 24px rgba(47,109,246,.12);
  font-weight:700;
  letter-spacing:.2px;
}
.brand__text{line-height:1.1}
.brand__name{font-size:12px; letter-spacing:.14em; font-weight:700; opacity:.92}
.brand__tag{font-size:12px; color:var(--muted); margin-top:4px}

.nav{display:flex; align-items:center; gap:18px}
.nav__link{
  text-decoration:none;
  font-size:14px;
  color:rgba(15,23,42,.76);
}
.nav__link:hover{color:rgba(15,23,42,1)}
.nav__cta{
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(255,255,255,.75);
  border:1px solid rgba(16,24,40,.10);
  padding:10px 14px;
  border-radius:999px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}
.nav__cta:focus-visible{outline:2px solid var(--blue); outline-offset:2px}
.nav__ctaIcon{font-size:14px; opacity:.75}

.hero{padding:56px 0 26px}
.hero__badgeRow{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.badge{
  font-size:11px; letter-spacing:.14em;
  font-weight:700;
  color:rgba(47,109,246,.95);
  background: rgba(47,109,246,.12);
  border: 1px solid rgba(47,109,246,.22);
  padding:8px 12px;
  border-radius:999px;
}
.badgeNote{font-size:13px; color:rgba(15,23,42,.60)}
.hero__grid{display:grid; grid-template-columns:1fr; margin-top:18px}
.display{
  font-size: clamp(40px, 5vw, 62px);
  line-height:1.03;
  letter-spacing:-.03em;
  margin:14px 0 16px;
}
.muted{color:rgba(15,23,42,.40)}
.lead{
  font-size:16px;
  line-height:1.55;
  color:rgba(15,23,42,.70);
  max-width: 720px;
  margin:0 0 18px;
}
.hero__actions{display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin:12px 0 12px}
.btn{
  text-decoration:none;
  border-radius:999px;
  padding:12px 16px;
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  will-change: transform;
}
.btn:focus-visible{outline:2px solid var(--blue); outline-offset:2px}
.btn--primary{
  background: #0b0f1a;
  color:white;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .18);
}
.btn--primary:hover{transform: translateY(-1px); box-shadow:0 18px 46px rgba(15, 23, 42, .22)}
.btn--ghost{
  background: rgba(255,255,255,.62);
  border-color: rgba(16,24,40,.10);
  box-shadow: 0 14px 32px rgba(15, 23, 42, .08);
}
.btn--ghost:hover{transform: translateY(-1px)}
.btn--light{
  background: rgba(255,255,255,.62);
  border-color: rgba(16,24,40,.10);
  width:100%;
  justify-content:center;
  margin-top:auto;
}
.btn--light:hover{transform: translateY(-1px)}
.btn__dot{
  width:10px; height:10px; border-radius:999px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, rgba(255,255,255,.55) 35%, rgba(255,255,255,.15) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
}
.btn__arrow{opacity:.75}
.btn__icon{opacity:.75}

.smallNote{
  font-size:13px;
  line-height:1.5;
  color:rgba(15,23,42,.62);
  max-width: 720px;
  margin:10px 0 12px;
}

.chips{display:flex; gap:10px; flex-wrap:wrap; margin: 8px 0 0}
.chip{
  font-size:12px;
  color:rgba(15,23,42,.68);
  background: rgba(255,255,255,.66);
  border:1px solid rgba(16,24,40,.10);
  padding:8px 12px;
  border-radius:999px;
}

.section{padding:34px 0 34px}
.section--tight{padding-top:18px}
.section__head{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:24px;
  align-items:end;
  margin-bottom:18px;
}
.section__head h2{margin:0; font-size:22px; letter-spacing:-.01em}
.section__sub{margin:0; color:rgba(15,23,42,.62); font-size:13px; line-height:1.55}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  align-items:stretch;
}
.card{
  background: var(--card);
  border:1px solid rgba(16,24,40,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px 18px 16px;
  display:flex;
  flex-direction:column;
  min-height: 440px;
  position:relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(700px 220px at 20% 0%, rgba(47,109,246,.14), transparent 55%);
  pointer-events:none;
  opacity:.8;
}
.card > *{position:relative}
.card--featured{
  border-color: rgba(47,109,246,.35);
  box-shadow: 0 28px 80px rgba(47,109,246,.18);
}
.card__top{margin-bottom:10px}
.eyebrow{
  font-size:11px;
  letter-spacing:.18em;
  font-weight:700;
  color: rgba(47,109,246,.92);
  margin-bottom:10px;
}
.card h3{margin:0 0 10px; font-size:18px; letter-spacing:-.01em}
.price{display:flex; align-items:baseline; gap:10px; margin:0 0 10px}
.price__main{font-size:28px; font-weight:750; letter-spacing:-.02em}
.price__suffix{font-size:13px; color:rgba(15,23,42,.56)}
.card__desc{margin:0; color:rgba(15,23,42,.58); font-size:13px; line-height:1.55}

.list{list-style:none; padding:0; margin:12px 0 16px; display:grid; gap:10px}
.list li{
  display:flex; gap:10px;
  font-size:13px;
  color:rgba(15,23,42,.62);
  line-height:1.45;
}
.check{
  width:18px; height:18px;
  border-radius:999px;
  flex:0 0 18px;
  background: rgba(47,109,246,.12);
  border:1px solid rgba(47,109,246,.22);
  position:relative;
}
.check::after{
  content:"";
  position:absolute;
  left:5px; top:4px;
  width:6px; height:9px;
  border-right:2px solid rgba(47,109,246,.95);
  border-bottom:2px solid rgba(47,109,246,.95);
  transform: rotate(40deg);
}

.steps{list-style:none; padding:0; margin:18px 0 0; display:grid; gap:14px; max-width:760px}
.step{display:flex; gap:12px; align-items:flex-start}
.step__num{
  width:22px; height:22px; border-radius:999px;
  display:grid; place-items:center;
  background: rgba(47,109,246,.12);
  border:1px solid rgba(47,109,246,.18);
  color: rgba(47,109,246,.95);
  font-weight:700;
  font-size:12px;
  flex:0 0 22px;
  margin-top:2px;
}
.step__title{font-size:13px; font-weight:700; color:rgba(15,23,42,.78)}
.step__text{font-size:13px; color:rgba(15,23,42,.62); margin-top:4px; line-height:1.5}

.footer{
  padding:26px 0 40px;
  border-top: 1px solid rgba(16,24,40,.08);
  background: rgba(255,255,255,.58);
  backdrop-filter: blur(10px);
}
.footer__inner{display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap}
.footer__left{min-width:260px}
.footer__brand{font-weight:800; letter-spacing:-.01em}
.footer__addr{color:rgba(15,23,42,.62); font-size:13px; margin-top:6px; line-height:1.5}
.footer__email{display:inline-block; margin-top:8px; color:rgba(15,23,42,.72); text-decoration:none}
.footer__email:hover{text-decoration:underline}
.footer__disclaimer{margin-top:10px; font-size:12px; color:rgba(15,23,42,.52)}
.footer__right{display:flex; flex-direction:column; gap:10px; font-size:13px}
.footer__right a{text-decoration:none; color:rgba(15,23,42,.70)}
.footer__right a:hover{text-decoration:underline}
.footer__copy{margin-top:4px; color:rgba(15,23,42,.52); font-size:12px}

.footer--legal{background:rgba(255,255,255,.75)}

.legalTop{position:sticky; top:0; z-index:30; background: rgba(255,255,255,.70); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(16,24,40,.08)}
.legalTop__inner{display:flex; justify-content:space-between; align-items:center; padding:14px 0}
.backLink{text-decoration:none; color:rgba(15,23,42,.70)}
.backLink:hover{text-decoration:underline}
.miniBrand{text-decoration:none; font-weight:800}

.legal{padding:34px 0 60px}
.legal__inner{max-width: 860px}
.legal h1{margin:0 0 8px; font-size:34px; letter-spacing:-.02em}
.legal h2{margin-top:28px; font-size:18px}
.legal p, .legal li{color:rgba(15,23,42,.68); line-height:1.6}
.legal__meta{color:rgba(15,23,42,.56); margin:0 0 18px}
.legal__note{margin-top:28px; font-size:13px; color:rgba(15,23,42,.55)}

.sigGrid{display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:18px}
.sigBox{border:1px solid rgba(16,24,40,.10); border-radius:18px; padding:14px; background: rgba(255,255,255,.62)}
.sigTitle{font-weight:800; margin-bottom:10px}
.sigLine{color:rgba(15,23,42,.68); margin:8px 0}

@media (max-width: 960px){
  .section__head{grid-template-columns: 1fr; gap:10px}
  .cards{grid-template-columns:1fr}
  .card{min-height:auto}
  .nav{gap:12px}
}


/* Pro credibility sections */
.cards--2{grid-template-columns: repeat(2, 1fr);}
.card--mini{min-height:auto}
@media (max-width: 900px){
  .cards, .cards--2{grid-template-columns:1fr;}
}
.faq{max-width:860px; margin-top:16px}
.faq details{
  background: rgba(255,255,255,.58);
  border:1px solid rgba(16,24,40,.10);
  border-radius: 14px;
  padding: 14px 14px;
  box-shadow: var(--shadow2);
  margin-bottom:10px;
}
.faq summary{
  cursor:pointer;
  font-weight:700;
  color:rgba(15,23,42,.82);
  list-style:none;
}
.faq summary::-webkit-details-marker{display:none}
.faq details p{margin:10px 0 0; color:rgba(15,23,42,.62); line-height:1.6}
