:root{
  --bg:#070c12;
  --bg2:#0b1220;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.09);
  --text:#eaf2ff;
  --muted:rgba(234,242,255,.72);
  --line:rgba(255,255,255,.12);
  --brand:#ffb400;
  --brand2:#5ad2ff;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(90,210,255,.16), transparent 55%),
              radial-gradient(900px 500px at 80% 10%, rgba(255,180,0,.16), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit}
code{background:rgba(255,255,255,.08); padding:2px 6px; border-radius:10px; border:1px solid var(--line)}
.skip{
  position:absolute; left:-9999px; top:0;
}
.skip:focus{left:12px; top:12px; z-index:9999; background:#000; padding:10px 12px; border-radius:12px}

.container{width:min(1180px, 92%); margin:0 auto}
.muted{color:var(--muted)}
.small{font-size:.92rem}

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

.brand{display:flex; align-items:center; gap:10px; text-decoration:none}
.brand__mark{
  width:38px; height:38px; display:grid; place-items:center;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(255,180,0,.95), rgba(90,210,255,.7));
  color:#071018; font-weight:900;
  box-shadow: 0 12px 30px rgba(255,180,0,.18);
}
.brand__text{font-weight:800; letter-spacing:.2px}

.nav{display:flex; align-items:center; gap:18px}
.nav a{
  text-decoration:none;
  color:rgba(234,242,255,.88);
  padding:10px 10px;
  border-radius:12px;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.nav a:hover{background:rgba(255,255,255,.06); transform: translateY(-1px)}
.nav .pill{
  background: linear-gradient(135deg, rgba(255,180,0,.95), rgba(255,214,90,.9));
  color:#071018;
  font-weight:800;
}

.navbtn{
  display:none;
  width:44px; height:44px; border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:var(--text);
}
.navbtn span{
  display:block; height:2px; margin:6px 10px; background:rgba(234,242,255,.9);
  border-radius:10px;
}

.hero{
  position:relative;
  min-height: 92vh;
  display:flex;
  align-items:center;
  background:
    radial-gradient(600px 220px at 10% 20%, rgba(255,180,0,.14), transparent 60%),
    radial-gradient(800px 340px at 90% 10%, rgba(90,210,255,.14), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55)),
    var(--hero) center/cover no-repeat;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero__glow{
  position:absolute; inset:-220px -220px auto -220px;
  height:520px;
  background: radial-gradient(closest-side, rgba(255,180,0,.22), transparent 70%);
  filter: blur(8px);
  opacity:.9;
}
.hero__inner{position:relative; display:grid; grid-template-columns: 1.15fr .85fr; gap:28px; padding:88px 0 64px}
.hero h1{font-size: clamp(2.2rem, 3.7vw, 3.4rem); line-height:1.05; margin:12px 0 12px}
.accent{background: linear-gradient(135deg, rgba(255,180,0,1), rgba(90,210,255,1)); -webkit-background-clip:text; background-clip:text; color:transparent}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  font-size:.92rem;
  padding:8px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.hero__cta{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 16px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:rgba(234,242,255,.95);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  font-weight:750;
}
.btn:hover{transform: translateY(-2px); background: rgba(255,255,255,.09)}
.btn--primary{
  background: linear-gradient(135deg, rgba(255,180,0,.98), rgba(255,214,90,.92));
  border-color: rgba(255,180,0,.35);
  color:#071018;
}
.btn--ghost{background: rgba(0,0,0,.18)}

.hero__card{
  position:relative;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  padding:18px;
  overflow:hidden;
}
.hero__card:before{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(500px 240px at 10% 20%, rgba(90,210,255,.20), transparent 60%),
              radial-gradient(500px 240px at 90% 10%, rgba(255,180,0,.22), transparent 60%);
  opacity:.9;
  pointer-events:none;
}
.hero__card>*{position:relative}
.hero__cardTop{display:flex; justify-content:space-between; gap:10px; margin-bottom:16px}
.chip{
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.12);
  font-weight:750;
  font-size:.9rem;
}
.chip--ok{background: rgba(90,210,255,.18); border-color: rgba(90,210,255,.25)}

.meter__label{font-weight:800}
.meter__bar{
  height:12px; border-radius:999px;
  background: rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.10);
  margin:10px 0 8px;
  overflow:hidden;
}
.meter__bar span{
  display:block; height:100%;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(90,210,255,1), rgba(255,180,0,1));
  box-shadow: 0 12px 25px rgba(255,180,0,.18);
}
.meter__meta{display:flex; justify-content:space-between; color:var(--muted); font-weight:650; font-size:.95rem}

.miniGrid{display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:14px}
.mini{padding:12px; border-radius: 16px; background: rgba(0,0,0,.22); border:1px solid rgba(255,255,255,.10)}
.mini__t{color:var(--muted); font-weight:650; font-size:.95rem}
.mini__v{font-weight:850; margin-top:4px}

.hero__stats{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.stat{padding:12px; border-radius: 16px; background: rgba(0,0,0,.22); border:1px solid rgba(255,255,255,.10)}
.stat__k{color:var(--muted); font-weight:700}
.stat__v{font-weight:900; margin-top:4px}

.section{padding:72px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:18px}
.section__head h2{margin:0; font-size: clamp(1.6rem, 2.4vw, 2.2rem)}
.section__head p{margin:0}

.cards{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; margin-top:14px}
.card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
  padding:18px;
  transition: transform .18s ease, background .18s ease;
}
.card:hover{transform: translateY(-4px); background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06))}
.card__icon{font-size:28px}
.card h3{margin:10px 0 8px}
.link{display:inline-flex; gap:8px; margin-top:10px; color:rgba(90,210,255,.95); font-weight:800; text-decoration:none}
.link:hover{text-decoration:underline}

.split{display:grid; grid-template-columns: 1fr 1fr; gap:22px; align-items:center}
.split--narrow{grid-template-columns: .9fr 1.1fr}
.img{width:100%; height:auto; border-radius: 22px; border:1px solid rgba(255,255,255,.14); box-shadow: var(--shadow)}
.ticks{margin:16px 0 0; padding:0; list-style:none}
.ticks li{margin:10px 0; padding-left:28px; position:relative; color:rgba(234,242,255,.88); font-weight:650}
.ticks li:before{
  content:"✓";
  position:absolute; left:0; top:0;
  width:20px; height:20px; display:grid; place-items:center;
  border-radius: 8px;
  background: rgba(90,210,255,.18);
  border:1px solid rgba(90,210,255,.22);
  color:rgba(234,242,255,.95);
  font-weight:900;
}

.row{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}

.cta{
  border-radius: 22px;
  background: radial-gradient(700px 240px at 10% 20%, rgba(90,210,255,.18), transparent 60%),
              radial-gradient(700px 240px at 90% 10%, rgba(255,180,0,.18), transparent 60%),
              rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  padding: 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.cta h2{margin:0 0 6px}
.cta p{margin:0}

.pageHero{
  position:relative;
  padding: 86px 0 60px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.65)),
    var(--hero) center/cover no-repeat;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pageHero--mini{padding:72px 0 44px}
.pageHero__inner h1{margin:0 0 8px; font-size: clamp(2rem, 3vw, 2.8rem)}
.pageHero__inner p{margin:0; color: rgba(234,242,255,.82)}
.pageHero__glow{position:absolute; inset:auto -160px -260px -160px; height:420px; background: radial-gradient(closest-side, rgba(90,210,255,.20), transparent 70%); filter: blur(8px)}

.timeline{display:grid; gap:12px}
.step{
  display:grid; grid-template-columns: 64px 1fr;
  gap:14px;
  padding:16px;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
}
.step__n{
  width:52px; height:52px; border-radius: 18px;
  display:grid; place-items:center;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.10);
  font-weight:950;
  color: rgba(255,214,90,.95);
}
.step__c h3{margin:2px 0 6px}
.step__c p{margin:0}

.logoGrid{display:grid; grid-template-columns: repeat(4,1fr); gap:12px; margin-top:18px}
.logoCard{
  padding:16px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  display:flex; align-items:center; gap:12px;
}
.logoCard__mark{
  width:36px; height:36px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(90,210,255,.18);
  border:1px solid rgba(90,210,255,.22);
}
.logoCard__text{font-weight:850}

.quote{
  margin-top:18px;
  display:flex; gap:14px;
  padding:18px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
}
.quote__icon{font-size:46px; line-height:1; color: rgba(255,214,90,.95)}

.formCard{
  padding:18px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}
.alert{
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  margin-bottom:14px;
  font-weight:750;
}
.alert.success{background: rgba(0, 220, 130, .12); border-color: rgba(0,220,130,.22)}
.alert.warn{background: rgba(255, 180, 0, .12); border-color: rgba(255,180,0,.22)}
.alert.danger{background: rgba(255, 70, 70, .12); border-color: rgba(255,70,70,.22)}
.alert.info{background: rgba(90,210,255,.12); border-color: rgba(90,210,255,.22)}

.form{display:grid; gap:12px}
.grid2{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
label span{display:block; font-weight:800; margin:0 0 8px}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: rgba(234,242,255,.95);
  outline:none;
}
input:focus, textarea:focus, select:focus{border-color: rgba(90,210,255,.55); box-shadow: 0 0 0 4px rgba(90,210,255,.12)}
textarea{resize:vertical}
.consent{display:flex; gap:10px; align-items:flex-start}
.consent input{width:auto; margin-top:4px}
.infoCard{
  padding:18px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
}
.infoCard__t{font-weight:950; margin-bottom:12px}
.infoLine{display:flex; gap:10px; align-items:center; padding:8px 0; color:rgba(234,242,255,.9)}

.footer{
  margin-top: 40px;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.20);
  padding: 34px 0 18px;
}
.footer__grid{display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap:16px}
.footer__brand{font-weight:950; font-size:1.1rem}
.footer__title{font-weight:900; margin-bottom:8px}
.footer__bottom{padding-top:14px; margin-top:14px; border-top:1px solid rgba(255,255,255,.08); color:var(--muted); font-weight:650}

.reveal{
  opacity:0;
  transform: translateY(14px);
}
.reveal.visible{
  opacity:1;
  transform: translateY(0);
  transition: opacity .75s ease, transform .75s ease;
}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none}
  .reveal.visible{transition:none}
  .btn,.card,.nav a{transition:none}
}

@media (max-width: 980px){
  .hero__inner{grid-template-columns: 1fr; padding:76px 0 52px}
  .cards{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .logoGrid{grid-template-columns: 1fr 1fr}
  .footer__grid{grid-template-columns: 1fr}
  .navbtn{display:inline-block}
  .nav{
    position:absolute;
    right:4%;
    top:72px;
    width:min(360px, 92vw);
    display:none;
    flex-direction:column;
    padding:12px;
    border-radius: 18px;
    background: rgba(8,12,18,.85);
    border:1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
  }
  .nav.open{display:flex}
  .nav a{width:100%}
  .nav .pill{text-align:center}
  .grid2{grid-template-columns: 1fr}
}
