:root{
  --bg:#07121c;
  --surface: rgba(255,255,255,.06);
  --card: rgba(16, 30, 44, .78);
  --text:#eaf2fb;
  --muted:#a9bed1;
  --line: rgba(255,255,255,.12);

  --teal:#0b7f86;
  --teal2:#0aa6b0;
  --sky:#67c6ff;
  --sky2:#a7ddff;
  --gold:#f2c14e;
  --green:#52d6a2;

  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius:22px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(103,198,255,.24), transparent 60%),
    radial-gradient(900px 520px at 92% 0%, rgba(10,166,176,.20), transparent 55%),
    radial-gradient(900px 520px at 60% 115%, rgba(242,193,78,.12), transparent 55%),
    var(--bg);
  overflow-x:hidden;
  line-height:1.6;
}

a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:24px 18px 90px;}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(7,18,28,.82), rgba(7,18,28,.45));
  border-bottom:1px solid rgba(255,255,255,.06);
}

.topbarInner{
  max-width:var(--max);
  margin:0 auto;
  padding:12px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none; font-weight:900; letter-spacing:.2px;
}

.mark{
  width:40px; height:40px; border-radius:14px;
  background: linear-gradient(135deg, var(--sky), var(--teal2));
  box-shadow: var(--shadow);
  position:relative; overflow:hidden;
}
.mark:after{
  content:"";
  position:absolute; inset:-35%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), transparent 50%);
  transform: rotate(18deg);
}

.nav{
  display:flex; gap:8px; flex-wrap:wrap; align-items:center; justify-content:flex-end;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  padding:9px 11px;
  border-radius:12px;
  border:1px solid transparent;
}
.nav a:hover{background:rgba(255,255,255,.06); color:var(--text); border-color: rgba(255,255,255,.06);}

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--muted);
  font-weight:900;
  text-decoration:none;
  white-space:nowrap;
}
.pill strong{color:var(--text)}

.hero{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:16px;
  align-items:stretch;
}
@media (max-width: 920px){ .hero{grid-template-columns:1fr;} }

.card{
  background: var(--card);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute;
  width:440px; height:440px;
  top:-260px; right:-260px;
  background: radial-gradient(circle, rgba(103,198,255,.22), transparent 55%);
  pointer-events:none;
}

.pad{padding:28px}
.padSm{padding:18px}

.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:9px 12px; border-radius:999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--muted);
  font-weight:900;
  font-size:14px;
  margin-bottom:14px;
}
.badge .dot{
  width:10px; height:10px; border-radius:50%;
  background: linear-gradient(135deg, var(--green), var(--sky));
  box-shadow: 0 0 0 6px rgba(82,214,162,.12);
}

h1{
  margin:0 0 10px;
  font-size:46px;
  line-height:1.05;
  letter-spacing:-.7px;
}
@media (max-width: 520px){ h1{font-size:38px;} }

h2{margin:0 0 10px; font-size:30px; letter-spacing:-.3px}
h3{margin:0 0 6px; font-size:18px}

.sub{margin:0 0 18px; color:var(--muted); font-size:17px; max-width:62ch}
.muted{color:var(--muted)}

.highlight{
  background: linear-gradient(135deg, var(--sky), var(--teal2), var(--gold));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

.ctaRow{display:flex; gap:10px; flex-wrap:wrap; margin:18px 0 8px;}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:900;
}
.btn:hover{transform: translateY(-1px);}
.btnPrimary{
  background: linear-gradient(135deg, var(--sky), var(--teal2));
  color:#061018;
  border:none;
}
.btnGold{
  background: linear-gradient(135deg, var(--gold), rgba(242,193,78,.65));
  color:#061018;
  border:none;
}
.btnGhost{background: rgba(255,255,255,.03);}

.kpi{
  padding:16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.kpi b{display:block; font-size:16px;}
.kpi span{color:var(--muted); font-size:14px;}

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

.tile{
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.iconBubble{
  width:40px; height:40px;
  border-radius:16px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  margin-bottom:10px;
}

.section{margin-top:20px;}
.sectionCard{padding:22px}

.list2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
  margin-top:12px;
}
@media (max-width: 920px){ .list2{grid-template-columns:1fr;} }

.item{
  display:flex; gap:12px;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.bubble{
  width:38px; height:38px;
  border-radius:16px;
  background: linear-gradient(135deg, rgba(103,198,255,.22), rgba(10,166,176,.18));
  border:1px solid rgba(255,255,255,.12);
  flex:0 0 auto;
  display:grid; place-items:center;
}

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

.step{
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  position:relative;
  overflow:hidden;
}
.step:after{
  content:"";
  position:absolute;
  inset:auto -40% -60% auto;
  width:240px; height:240px;
  background: radial-gradient(circle, rgba(242,193,78,.16), transparent 55%);
  transform: rotate(25deg);
}
.step small{color:var(--muted); font-weight:900; letter-spacing:.4px}
.step b{display:block; margin:8px 0 6px; font-size:16px}
.step p{margin:0; color:var(--muted); font-size:14px}

.divider{height:1px; background: rgba(255,255,255,.10); margin:14px 0;}

.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:12px;
}
@media (max-width: 920px){ .contactGrid{grid-template-columns:1fr;} }

label{display:block; font-size:13px; color:var(--muted); margin:10px 0 6px; font-weight:900}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}

.footer{
  margin-top:24px;
  color:var(--muted);
  font-size:13px;
  display:flex; flex-wrap:wrap; gap:10px;
  justify-content:space-between; align-items:center;
  padding-bottom:20px;
}

.wave{
  width:100%;
  margin-top:18px;
  opacity:.95;
}

.heroArt{
  width:100%;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:14px;
}
.heroArt img{
  width:100%;
  display:block;
  border-radius:14px;
}

.callout{
  display:flex; gap:12px; align-items:flex-start;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.callout .tag{
  display:inline-flex; align-items:center; justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  font-weight:1000;
  color:#061018;
  background: linear-gradient(135deg, var(--gold), rgba(242,193,78,.75));
  border: 1px solid rgba(255,255,255,.10);
}

.stickyText{
  position:fixed; right:16px; bottom:16px; z-index:100;
  box-shadow: var(--shadow);
}

.smallPrint{font-size:12.5px; color:var(--muted)}