:root{
  --bg:#060A0D;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.08);
  --border:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.62);
  --brand:#25C08B;
  --brand2:#0E5A40;
  --shadow:0 18px 50px rgba(0,0,0,.55);
  --shadow2:0 12px 30px rgba(0,0,0,.42);
  --radius:18px;
  --radius2:24px;
  --max:1160px;
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1100px 520px at 12% 6%, rgba(37,192,139,.18), transparent 55%),
    radial-gradient(900px 520px at 80% 0%, rgba(14,90,64,.24), transparent 55%),
    linear-gradient(180deg, #040607, var(--bg));
  line-height:1.55;
  overflow-x:hidden;
}

a{color:var(--brand); text-decoration:none}
a:hover{text-decoration:underline; text-decoration-color:rgba(37,192,139,.55)}

.wrap{max-width:var(--max); margin:0 auto; padding:0 18px}

.bg-orb{
  position:fixed;
  width:620px; height:620px;
  border-radius:50%;
  filter:blur(55px);
  opacity:.20;
  pointer-events:none;
  z-index:-1;
  animation:floaty 14s ease-in-out infinite;
}
.orb1{left:-180px; top:120px; background:radial-gradient(circle, rgba(37,192,139,.95), transparent 60%)}
.orb2{right:-220px; top:-80px; background:radial-gradient(circle, rgba(14,90,64,.95), transparent 60%); animation-duration:18s}
@keyframes floaty{
  0%,100%{transform:translate(0,0) scale(1)}
  50%{transform:translate(24px,-18px) scale(1.03)}
}

.topbar{
  border-bottom:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
}
.topbar-inner{
  display:flex; gap:14px; justify-content:space-between; flex-wrap:wrap; align-items:center;
  padding:10px 0;
  color:var(--muted);
  font-size:14px;
}
.topbar strong{color:var(--text)}
.topbar a{color:var(--text); text-decoration:underline; text-decoration-color:rgba(255,255,255,.25)}

header{
  position:sticky; top:0; z-index:50;
  background:linear-gradient(180deg, rgba(5,9,12,.92), rgba(7,31,23,.78));
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.nav{
  display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
  padding:12px 0;
}
.brand{
  display:flex; align-items:center; gap:12px; min-width:240px;
}
.logo{
  width:40px; height:40px; border-radius:14px;
  background:radial-gradient(circle at 30% 30%, rgba(37,192,139,1), rgba(14,90,64,1));
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 10px 26px rgba(0,0,0,.55);
}
.brand-title{display:flex; flex-direction:column; line-height:1.15}
.brand-title b{font-size:16px; letter-spacing:.3px}
.brand-title span{font-size:13px; color:rgba(255,255,255,.70); font-weight:650}

.navlinks{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.navlinks a{
  color:rgba(255,255,255,.88);
  font-weight:850;
  padding:8px 10px;
  border-radius:14px;
  border:1px solid transparent;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}
.navlinks a:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.10);
  text-decoration:none;
  transform:translateY(-1px);
}
.navlinks a.active{
  background:rgba(37,192,139,.10);
  border-color:rgba(37,192,139,.22);
  color:rgba(255,255,255,.92);
}

.menu-btn{
  display:none;
  align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.92);
  font-weight:900;
  cursor:pointer;
}

.hero{
  padding:26px 0 12px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:18px;
  align-items:stretch;
}
.pill{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.88);
  font-size:13px;
  backdrop-filter: blur(8px);
}
.hero h1{
  margin:10px 0 10px;
  font-size:42px;
  line-height:1.05;
  letter-spacing:-.6px;
}
.hero p{
  margin:0 0 16px;
  color:var(--muted);
  font-size:17px;
  max-width:62ch;
}
.cta-row{
  display:flex; gap:12px; flex-wrap:wrap; align-items:center;
  margin-top:14px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius:16px;
  font-weight:900;
  letter-spacing:.2px;
  border:1px solid transparent;
  transition: transform .15s ease, filter .15s ease, background .15s ease, border-color .15s ease;
  will-change: transform;
}
.btn:hover{transform:translateY(-1px)}
.btn.primary{
  background:linear-gradient(135deg, rgba(37,192,139,1), rgba(14,90,64,1));
  color:#03110B;
  box-shadow: var(--shadow);
}
.btn.primary:hover{filter:brightness(1.05); text-decoration:none}
.btn.ghost{
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.18);
  color:rgba(255,255,255,.92);
}
.btn.ghost:hover{background:rgba(255,255,255,.08); text-decoration:none}

main{padding:6px 0 18px}

.section{padding:22px 0}
.section-title{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:18px; flex-wrap:wrap;
  margin:0 0 14px;
}
.section-title h2{margin:0; font-size:28px; letter-spacing:-.2px}
.section-title p{margin:0; color:var(--muted2); max-width:62ch}

.grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:16px}
.grid-2{display:grid; grid-template-columns:repeat(2, 1fr); gap:16px}

.card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius2);
  box-shadow: var(--shadow2);
  padding:16px;
  backdrop-filter: blur(10px);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(37,192,139,.24);
  background: rgba(255,255,255,.06);
}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted2)}
.card ul{margin:10px 0 0 18px; color:var(--muted2)}
.badge{
  display:inline-block;
  padding:5px 10px;
  border-radius:999px;
  background:rgba(37,192,139,.10);
  border:1px solid rgba(37,192,139,.25);
  color:rgba(255,255,255,.90);
  font-weight:900;
  font-size:12px;
  letter-spacing:.2px;
}

.callout{
  background: linear-gradient(135deg, rgba(37,192,139,.10), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius2);
  padding:16px;
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px);
}

.steps{display:grid; grid-template-columns:1fr; gap:12px; margin-top:10px}
.step{
  display:flex; gap:12px; align-items:flex-start;
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.dot{
  width:12px; height:12px; margin-top:6px;
  border-radius:999px;
  background:rgba(37,192,139,.95);
  box-shadow:0 0 0 6px rgba(37,192,139,.10);
  flex:none;
}
.step b{display:block; margin-bottom:4px}
.step span{color:var(--muted2)}

footer{
  margin-top:18px;
  background: linear-gradient(180deg, #06110C, #030605);
  color:rgba(255,255,255,.84);
  border-top:1px solid rgba(255,255,255,.10);
  padding:22px 0 0;
}
.footer-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:16px}
.fineprint{
  border-top:1px solid rgba(255,255,255,.10);
  margin-top:16px;
  padding:12px 0;
  color:rgba(255,255,255,.62);
  font-size:12px;
}

.reveal{opacity:0; transform:translateY(12px); transition:opacity .65s ease, transform .65s ease}
.reveal.visible{opacity:1; transform:translateY(0)}

.to-top{
  position:fixed; right:18px; bottom:18px;
  width:44px; height:44px; border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow2);
  color:rgba(255,255,255,.92);
  cursor:pointer;
  opacity:0; transform:translateY(8px);
  transition:opacity .2s ease, transform .2s ease, background .15s ease;
  z-index:60;
}
.to-top.show{opacity:1; transform:translateY(0)}
.to-top:hover{background:rgba(255,255,255,.10)}

.page{animation: pageIn .32s ease both;}
@keyframes pageIn{
  from{opacity:.0; transform:translateY(6px)}
  to{opacity:1; transform:translateY(0)}
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .grid{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .hero h1{font-size:36px}
  .navlinks{display:none}
  .menu-btn{display:inline-flex}
  .navlinks.mobile-open{display:flex; width:100%; padding-top:10px;}
  .navlinks.mobile-open a{width:100%}
}

@media (prefers-reduced-motion: reduce){
  .bg-orb{display:none}
  .reveal, .reveal.visible{opacity:1; transform:none; transition:none}
  .btn, .navlinks a, .card{transition:none}
  .page{animation:none}
  html{scroll-behavior:auto !important}
}
