:root{
  --bg:#f7f8fb;
  --surface:#ffffff;
  --surface2:#ffffff;
  --text:#0b1220;
  --muted:#475569;
  --line:rgba(15,23,42,.12);
  --brand:#2563eb;
  --brand2:#22c3a6;
  --shadow: 0 18px 50px rgba(2,6,23,.10);
  --radius:18px;
  --max:1120px;
}

*{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:
    radial-gradient(900px 500px at 10% 5%, rgba(79,140,255,.25), transparent 55%),
    radial-gradient(700px 450px at 90% 20%, rgba(34,195,166,.18), transparent 55%),
    radial-gradient(800px 600px at 40% 110%, rgba(79,140,255,.18), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}
img{max-width:100%;display:block}
.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

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

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(247,248,251,.85);
  border-bottom:1px solid var(--line);
}
.header__inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0}

.brand{display:flex; align-items:center; gap:10px}
.brand__logo{border-radius:10px}
.brand__name{font-weight:700; letter-spacing:.2px}

.nav{display:flex; align-items:center; gap:18px}
.nav a{color:var(--muted); font-weight:600; font-size:14px}
.nav a:hover{color:var(--text)}
.nav__cta{
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--text)!important;
  background: linear-gradient(135deg, rgba(79,140,255,.18), rgba(34,195,166,.12));
}

.nav__toggle{
  display:none;
  width:44px; height:40px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--text);
}
.nav__toggleLine{display:block; height:2px; width:18px; background: var(--text); margin:4px auto; border-radius:2px}

@media (max-width: 860px){
  .nav__toggle{display:inline-flex; align-items:center; justify-content:center}
  .nav{
    position:absolute;
    top:64px; right:20px; left:20px;
    display:flex; flex-direction:column; align-items:stretch;
    gap:10px;
    padding:14px;
    border:1px solid var(--line);
    border-radius:16px;
    background: rgba(15,26,46,.95);
    box-shadow: var(--shadow);
  }
  .nav a{padding:10px 12px; border-radius:12px}
  .nav a:hover{background: rgba(255,255,255,.05)}
  .nav__cta{ text-align:center }
}

.hero{padding:56px 0 24px}
.hero__grid{display:grid; grid-template-columns: 1.15fr .85fr; gap:34px; align-items:center}
@media (max-width: 980px){ .hero__grid{grid-template-columns:1fr; gap:24px} }

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
}

h1{font-size:48px; line-height:1.05; margin:14px 0 12px}
@media (max-width: 520px){ h1{font-size:38px} }

.lead{color:var(--muted); font-size:17px; max-width: 54ch}

.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  font-weight:700;
}
.btn--primary{
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #08101c;
}
.btn--ghost{background: rgba(15,23,42,.04); color:var(--text)}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}

.trust{display:grid; grid-template-columns: repeat(3,1fr); gap:12px; margin-top:22px}
@media (max-width: 980px){ .trust{grid-template-columns:1fr} }
.trust__item{padding:14px; border:1px solid var(--line); border-radius:var(--radius); background: rgba(255,255,255,.03)}
.trust__kpi{font-weight:800; margin-bottom:4px}

.hero__art{position:relative; min-height:360px}
.card{
  border-radius:22px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:18px;
  box-shadow: var(--shadow);
}
.card--glass{backdrop-filter: blur(10px)}
.card__badge{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
  margin-bottom:14px;
}
.card__row{display:flex; gap:12px; align-items:flex-start; padding:10px 0}
.card__title{font-weight:800}

.dot{width:12px; height:12px; border-radius:999px; background: var(--brand); margin-top:4px}
.dot--b{background: var(--brand2)}
.dot--c{background: #ffd56a}

.orb{
  position:absolute; border-radius:999px; filter: blur(0px);
  opacity:.85;
}
.orb--a{width:180px; height:180px; background: rgba(79,140,255,.35); top:-20px; right:-10px; filter: blur(10px)}
.orb--b{width:140px; height:140px; background: rgba(34,195,166,.28); bottom:-20px; right:30px; filter: blur(10px)}
.orb--c{width:220px; height:220px; background: rgba(255,213,106,.14); bottom:-40px; left:-20px; filter: blur(12px)}

.section{padding:54px 0}
.section--alt{background: rgba(255,255,255,.02); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section__head{display:flex; align-items:flex-end; justify-content:space-between; gap:14px; margin-bottom:18px}
.section__head h2{margin:0}
h2{font-size:28px; margin:0 0 10px}
h3{margin:0 0 8px}

.grid3{display:grid; grid-template-columns: repeat(3,1fr); gap:14px}
@media (max-width: 920px){ .grid3{grid-template-columns:1fr} }

.feature{
  padding:18px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background: rgba(255,255,255,.03);
}

.split{display:grid; grid-template-columns: 1.1fr .9fr; gap:18px; align-items:start}
@media (max-width: 980px){ .split{grid-template-columns:1fr} }

.links{display:grid; gap:12px; margin-top:14px}
.linkCard{
  padding:16px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.linkCard__title{font-weight:800; margin-bottom:4px}

.panel{
  padding:18px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background: rgba(15,26,46,.55);
}
.panel__title{font-weight:900; margin-bottom:10px}
.dl{display:grid; gap:10px; margin:0}
.dl div{display:flex; justify-content:space-between; gap:12px; padding:10px 0; border-bottom:1px solid rgba(255,255,255,.06)}
.dl div:last-child{border-bottom:none}
dt{color:var(--muted); font-weight:700}
dd{margin:0; text-align:right}
.small{font-size:13px}

.cta{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:20px;
  border:1px solid var(--line);
  border-radius:24px;
  background: linear-gradient(135deg, rgba(79,140,255,.12), rgba(34,195,166,.10));
}

.page{padding-bottom:44px}
.pageHero{padding:40px 0 10px}
.pageHero h1{font-size:38px; margin:0 0 8px}
.pageBody{padding:18px 0 0}

.prose{max-width: 860px}
.prose p, .prose li{color: var(--muted)}
.prose strong{color: var(--text)}
.prose h2{margin-top:26px}
.prose a{color: var(--text); text-decoration: underline; text-decoration-color: rgba(255,255,255,.35)}

.muted{color:var(--muted)}
.footer{border-top:1px solid var(--line); padding:34px 0 22px; margin-top:40px; background: rgba(0,0,0,.10)}
.footer__grid{display:grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap:16px}
@media (max-width: 980px){ .footer__grid{grid-template-columns:1fr 1fr} }
@media (max-width: 560px){ .footer__grid{grid-template-columns:1fr} }
.footer__brand{font-weight:900; font-size:16px; margin-bottom:6px}
.footer__title{font-weight:900; margin-bottom:8px}
.footer__list{list-style:none; padding:0; margin:0; display:grid; gap:8px; color:var(--muted)}
.footer__list a{color:var(--muted)}
.footer__list a:hover{color:var(--text)}
.footer__bottom{display:flex; justify-content:space-between; gap:12px; padding-top:18px; margin-top:16px; border-top:1px solid rgba(255,255,255,.06); color:var(--muted); font-size:13px}
@media (max-width: 700px){ .footer__bottom{flex-direction:column} }


/* Products */
.productGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}
.productCard{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
  display:flex;
  flex-direction:column;
}
.productCard__img{
  background: linear-gradient(180deg, rgba(37,99,235,.06), rgba(34,195,166,.06));
  padding:16px;
}
.productCard__img img{width:100%; height:auto; border-radius:14px; border:1px solid var(--line); background:#fff;}
.productCard__body{padding:14px 16px 16px; display:flex; flex-direction:column; gap:10px; flex:1;}
.productCard__title{font-weight:800; letter-spacing:-0.01em;}
.productCard__meta{color:var(--muted); font-size:14px; line-height:1.4;}
.productCard__actions{margin-top:auto; display:flex; gap:10px; flex-wrap:wrap;}
.badge{
  display:inline-flex; align-items:center;
  gap:8px;
  padding:7px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
  font-weight:700;
  font-size:12px;
  background: rgba(15,23,42,.03);
}
@media (max-width: 920px){
  .productGrid{grid-template-columns: repeat(2, minmax(0,1fr));}
}
@media (max-width: 640px){
  .productGrid{grid-template-columns: 1fr;}
}


/* Policies + business details (Stripe-friendly layout) */
.policies{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:20px;
  margin-top:28px;
  align-items:start;
}
@media (max-width: 980px){
  .policies{grid-template-columns:1fr;}
}
.policies-left h2{margin:0 0 6px;}
.policies-left p{margin:0 0 14px; color:var(--muted);}

.policy-card{
  display:block;
  padding:16px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 28px rgba(15,23,42,.06);
  margin-bottom:12px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.policy-card span{display:block; margin-top:6px; color:var(--muted);}
.policy-card:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(15,23,42,.09);
}

.business-card{
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 40px rgba(15,23,42,.10);
  padding:18px 18px 14px;
}
.business-card__header h3{margin:0; font-size:16px; font-weight:900;}
.business-card__hint{margin:8px 0 0; color:var(--muted); font-size:13px; line-height:1.35;}
.business-dl{margin:14px 0 0; display:grid; gap:10px;}
.business-dl div{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
  border-top:1px solid rgba(15,23,42,.08);
}
.business-dl dt{color:var(--muted); font-weight:700;}
.business-dl dd{margin:0; font-weight:800; text-align:right;}
.plainlink{text-decoration:none; border-bottom:1px dashed rgba(15,23,42,.25);}
.plainlink:hover{border-bottom-color: rgba(15,23,42,.45);}
