
:root{
  --bg:#0b0f17;
  --bg2:#0f1220;
  --card:#121829;
  --ink:#e6ebff;
  --muted:#a8b2d1;
  --brand1:#6a7dff;
  --brand2:#7f53ff;
  --accent:#52d7ff;
  --ok:#5de2a5;
  --warn:#ffb85c;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:linear-gradient(120deg,var(--bg),var(--bg2));color:var(--ink);font:16px/1.5 system-ui,Segoe UI,Roboto,Arial}
a{color:var(--accent);text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:24px}
.tiny{font-size:12px;color:var(--muted)}
.lead{font-size:1.125rem;color:var(--muted)}
h1,h2,h3{margin:0 0 10px}
h1{font-size:3rem;line-height:1.1}
h2{font-size:2rem}
h3{font-size:1.25rem}

.site-header{
  position:sticky;top:0;backdrop-filter:saturate(140%) blur(8px);
  background:rgba(10,14,22,0.6);border-bottom:1px solid rgba(255,255,255,0.06);z-index:50
}
.site-header .nav{display:flex;align-items:center;justify-content:space-between;gap:18px}
.logo{display:flex;align-items:center;gap:10px;color:#fff;font-weight:700}
.logo .logo-mark{
  display:inline-grid;place-items:center;width:28px;height:28px;border-radius:8px;
  background:linear-gradient(135deg,var(--brand1),var(--brand2));
  color:#fff;font-weight:900
}
.logo.small .logo-mark{width:22px;height:22px}
.site-header nav a{margin:0 10px;color:var(--ink)}
.site-header nav .btn{margin-left:10px}

.btn{display:inline-block;padding:12px 16px;border-radius:12px;border:1px solid transparent;
  background:linear-gradient(135deg,var(--brand1),var(--brand2));color:#fff;font-weight:700;box-shadow:var(--shadow)}
.btn:hover{transform:translateY(-1px)}
.btn-outline{background:transparent;border-color:rgba(255,255,255,0.18)}
.btn-ghost{background:transparent;border-color:transparent}
.btn-primary{}

.hero{
  padding:60px 0 20px;background:
    radial-gradient(1200px 600px at 10% -10%, rgba(127,83,255,0.28), transparent 60%),
    radial-gradient(1000px 500px at 90% 0%, rgba(82,215,255,0.18), transparent 60%);
}
.hero-inner{display:grid;grid-template-columns:1.2fr 1fr;gap:36px;align-items:center}
.hero-copy .cta{display:flex;gap:14px;margin:18px 0}
.trust{margin-top:10px;color:var(--muted)}
/* constrain the whole art block */
.hero-art{
  position: relative;
  height: 320px;
  width: 100%;
  max-width: 560px;     /* tweak to taste */
  margin: 0 auto 0 0;   /* keeps it aligned right on desktop; use auto for center */
}

/* make the glass act as the mask */
.hero-art .glass{
  position: relative;      /* was absolute; let it size by parent */
  inset: auto;             /* reset from 'inset:0' */
  height: 100%;
  border-radius: 24px;
  overflow: hidden;        /* ✅ containment */
}

/* keep your gradient/glass look without blurring the image */
.hero-art .glass::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(106,125,255,0.2), rgba(127,83,255,0.2));
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: var(--shadow);
  z-index: 0;
  filter: blur(0.2px);     /* blur the overlay, not the image */
}

/* the image itself */
.hero-art img.feature{
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* ✅ fills the box, crops cleanly */
  border-radius: 24px;     /* matches the mask */
}
.hero-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;     /* fills the box */
  display: block;
  border-radius: 24px;   /* matches your glass */
  overflow: hidden;      /* simple containment */
}

/* keep the card anchored nicely relative to the new flow */
.hero-art .card{
  position: absolute;
  right: -10px;
  bottom: -20px;
  width: 320px;
}


.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.row{display:flex;align-items:center;justify-content:space-between;gap:20px}
.section-h{text-align:center;margin:34px 0 10px}

.feature{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.06);padding:18px;border-radius:16px}
.card.flat{background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.06);padding:18px;border-radius:16px}

.cta-band{background:linear-gradient(135deg,rgba(106,125,255,0.22),rgba(127,83,255,0.22));margin:34px 0;padding:24px 0;border-top:1px solid rgba(255,255,255,0.08);border-bottom:1px solid rgba(255,255,255,0.08)}

.page-h{margin-top:30px}

.plans .plan-card{
  position:relative;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;padding:18px;display:flex;flex-direction:column;gap:10px
}
.plan-card .price{font-size:24px}
.plan-card .price span{font-size:42px;font-weight:800}
.plan-card .bullets{margin:0 0 10px 18px}
.plan-card .badge{position:absolute;top:12px;right:12px;background:linear-gradient(135deg,var(--brand1),var(--brand2));padding:6px 10px;border-radius:999px;font-size:12px}
.plan-card.popular{transform:scale(1.02);box-shadow:var(--shadow)}

.note{margin:14px 0 40px}

.site-footer{margin-top:40px;border-top:1px solid rgba(255,255,255,0.08);background:rgba(255,255,255,0.02);padding:24px 0}
.site-footer .grid-3{grid-template-columns:2fr 1fr 1fr}
.site-footer h4{margin-bottom:8px}

.small{font-size:0.9rem;color:var(--muted)}

@media (max-width: 900px){
  .hero-inner{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .row{flex-direction:column;align-items:flex-start}
}
