:root{
  --bg:#291e4f;
  --surface:#34255f;
  --surface-soft:#3d2d6d;
  --text:#ffffff;
  --text-soft:rgba(255,255,255,.78);
  --signal:#6f4cee;
  --alert:#fdda0b;
  --border:rgba(255,255,255,.10);
  --border-strong:rgba(255,255,255,.16);
  --shadow:0 24px 60px rgba(0,0,0,.24);
}

html{scroll-behavior:smooth;}
*,:before,:after{box-sizing:border-box;}
body{
  margin:0;
  font-family:'Figtree',system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at top right, rgba(253,218,11,.08), transparent 20%),
    radial-gradient(circle at left center, rgba(111,76,238,.20), transparent 28%),
    var(--bg);
  color:var(--text);
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{max-width:100%;height:auto;display:block;}
a{color:var(--alert);text-decoration:none;transition:.2s ease;}
a:hover{color:#fff;text-decoration:none;}
::selection{background:rgba(253,218,11,.30);color:#fff;}

.hero-section{padding:1.25rem 0 3.5rem;}
.hero-wrap{padding-top:.5rem;}
.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  padding-bottom:2rem;
}
.brand img{width:240px;max-width:100%;height:auto;}
.topbar-note{
  color:var(--text-soft);
  font-size:.95rem;
  font-weight:600;
  text-align:right;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.5rem .85rem;
  border-radius:999px;
  background:rgba(111,76,238,.20);
  border:1px solid rgba(111,76,238,.32);
  color:#fff;
  font-size:.9rem;
  font-weight:800;
  margin-bottom:1rem;
}
.hero-grid{padding-top:1rem;}
.hero-section h1{
  font-size:clamp(2.3rem,6vw,4.6rem);
  line-height:.98;
  font-weight:900;
  letter-spacing:-.04em;
  max-width:12ch;
  margin:0 0 1.25rem;
}
.lead{
  color:var(--text-soft);
  font-size:1.14rem;
  line-height:1.7;
  max-width:60ch;
  margin-bottom:1.5rem;
}
.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
}
.hero-points span{
  display:inline-flex;
  align-items:center;
  padding:.72rem 1rem;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  color:#fff;
  font-weight:700;
  font-size:.94rem;
}
.hero-card,
.product-card,
.info-card,
.footer-box{
  background:rgba(255,255,255,.05);
  border:1px solid var(--border);
  border-radius:28px;
  box-shadow:var(--shadow);
}
.hero-card{padding:1.5rem;}
.hero-card-label,
.section-kicker{
  color:var(--alert);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.78rem;
  font-weight:900;
  margin-bottom:.75rem;
}
.hero-facts{list-style:none;padding:0;margin:0;display:grid;gap:1rem;}
.hero-facts li{
  display:grid;
  gap:.2rem;
  padding-bottom:1rem;
  border-bottom:1px solid var(--border);
}
.hero-facts li:last-child{padding-bottom:0;border-bottom:0;}
.hero-facts strong{font-size:.88rem;color:var(--text-soft);font-weight:700;}
.hero-facts span{font-size:1rem;font-weight:700;color:#fff;}

.section-block{padding:2rem 0 0;}
.section-soft{padding-bottom:3rem;}
.section-head{max-width:760px;margin-bottom:1.5rem;}
.section-head h2,
.info-card h2{
  font-size:clamp(1.8rem,3.2vw,3rem);
  line-height:1.05;
  font-weight:900;
  letter-spacing:-.03em;
  margin:0 0 .75rem;
}
.section-head p,
.info-card p{color:var(--text-soft);line-height:1.75;font-size:1.04rem;}
.product-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1.25rem;
}
.product-card{
  padding:1.35rem;
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.product-logo-wrap{
  min-height:86px;
  display:flex;
  align-items:center;
  margin-bottom:1rem;
}
.product-logo-wide{max-width:190px;}
.product-logo-membera{max-width:210px;}
.product-card p{color:var(--text-soft);line-height:1.7;margin:0 0 1rem;}
.product-card a{font-weight:800;margin-top:auto;}
.card-note{
  display:inline-flex;
  align-items:center;
  margin-top:auto;
  padding:.55rem .8rem;
  border-radius:999px;
  background:rgba(253,218,11,.14);
  color:#fff;
  font-weight:800;
  font-size:.9rem;
}
.text-logo{
  font-size:1.5rem;
  font-weight:900;
  line-height:1.05;
  color:#fff;
  margin-bottom:1rem;
}
.product-card-textonly{
  background:linear-gradient(180deg, rgba(111,76,238,.20) 0%, rgba(255,255,255,.05) 100%);
}
.info-card{padding:1.5rem;height:100%;}
.focus-list{list-style:none;margin:0;padding:0;display:grid;gap:.85rem;}
.focus-list li{
  position:relative;
  padding-left:1.6rem;
  color:var(--text-soft);
  line-height:1.65;
}
.focus-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.52rem;
  width:.6rem;
  height:.6rem;
  border-radius:50%;
  background:var(--alert);
}

footer{padding:0 0 2rem;}
.footer-links a{text-decoration:none;color:inherit;}
.footer-links a:hover{text-decoration:underline;color:#fff;}
.footer-box{margin-top:2rem;padding:1.6rem;}
.footer-brand{font-weight:900;font-size:1.35rem;color:#fff;line-height:1.1;margin-bottom:.75rem;}
.footer-copy{color:var(--text-soft);font-size:.98rem;line-height:1.7;}
.footer-bottom{border-color:var(--border-strong)!important;}
.footer-bottom a{color:var(--alert);text-decoration:none;font-weight:800;}
.footer-bottom a:hover{text-decoration:underline;color:#fff;}

.modal-content{background:#fff;border:1px solid rgba(111,76,238,.14);box-shadow:0 22px 56px rgba(41,30,79,.20);}
.modal-header{border-bottom:1px solid rgba(111,76,238,.12);}
.modal-title{color:#291E4F;}
.modal-body{color:#5f547f;line-height:1.75;}
.modal-body h3{font-size:1rem;font-weight:800;color:#291E4F;margin-top:1.15rem;margin-bottom:.45rem;}
.modal-body a{color:#6F4CEE;font-weight:700;text-decoration:none;}
.modal-body a:hover{text-decoration:underline;}

@media (max-width: 1199.98px){
  .product-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width: 767.98px){
  body{margin:20px;}
  .hero-section{padding:1rem 0 2rem;}
  .topbar{flex-direction:column;align-items:flex-start;padding-bottom:1.5rem;}
  .topbar-note{text-align:left;}
  .hero-card,.product-card,.info-card,.footer-box{border-radius:24px;}
  .footer-box{padding:1.25rem;}
  .modal-dialog{margin:.85rem;}
  .product-grid{grid-template-columns:1fr;}
  .hero-points span{width:100%;justify-content:center;text-align:center;border-radius:18px;}
}
