:root{
  --bg: #07090d;
  --bg2:#07181d;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --line: rgba(255,255,255,.10);
  --accent: #8CD7D9;
  --accent2:#5FE1D8;
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --max: 1100px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 10% 0%, rgba(124,255,155,.12), transparent 55%),
    radial-gradient(900px 600px at 80% 15%, rgba(90,180,255,.10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:none; }
img{ max-width:100%; height:auto; }

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

.skip-link{
  position:absolute; left:-999px; top:10px;
  background:#fff; color:#000; padding:10px 12px; border-radius:10px;
}
.skip-link:focus{ left:10px; z-index:9999; }

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,9,13,.55);
  border-bottom: 1px solid var(--line);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 0; }

.brand{ display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:.2px; }
.brand-logo{
  height:34px;
  width:auto;
  display:block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.45));
}

.site-nav{ display:flex; align-items:center; gap:10px; }
.nav-link{
  padding:10px 10px;
  border-radius:12px;
  color:var(--muted);
  font-size:14px;
}
.nav-link:hover{ background: rgba(255,255,255,.05); color:var(--text); }
.nav-link.is-active{ color:var(--text); background: rgba(255,255,255,.06); }

.nav-cta{
  margin-left:6px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(124,255,155,.14);
  border: 1px solid rgba(124,255,155,.35);
  color: var(--text);
  font-weight:600;
  font-size:14px;
}
.nav-cta:hover{ background: rgba(124,255,155,.18); }

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
}
.nav-toggle-bars{
  display:block; width:18px; height:12px; position:relative;
}
.nav-toggle-bars:before,
.nav-toggle-bars:after,
.nav-toggle-bars i{
  content:""; position:absolute; left:0; right:0; height:2px;
  background: rgba(255,255,255,.85);
  border-radius:99px;
}
.nav-toggle-bars:before{ top:0; }
.nav-toggle-bars:after{ bottom:0; }
.nav-toggle-bars i{ top:5px; opacity:.9; }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

.main{ min-height:70vh; }

.hero{
  position:relative;
  overflow:hidden;
  border-bottom: 1px solid var(--line);
}
.hero-bg{
  position:absolute; inset:-1px;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(140,215,217,.22), transparent 60%),
    radial-gradient(900px 420px at 80% 0%, rgba(140,215,217,.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 55%),
    url("/assets/img/hero.webp");
  background-size: cover;
  opacity:.75;
  filter: saturate(0.95) contrast(1.08) brightness(0.85);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg, rgba(7,9,13,.82) 0%, rgba(7,9,13,.55) 45%, rgba(7,9,13,.30) 100%),
    radial-gradient(900px 520px at 20% 30%, rgba(140,215,217,.18), transparent 60%),
    radial-gradient(900px 520px at 75% 10%, rgba(140,215,217,.10), transparent 62%);
  pointer-events:none;
}
.hero-bg{ z-index:0; }
.hero-inner{ position:relative; z-index:2; }

.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.35fr .85fr;
  gap:22px;
  padding:56px 0 44px;
}
.eyebrow{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  color: var(--muted);
  font-size:13px;
}
.hero-title{
  font-size:54px;
  margin:14px 0 10px;
  letter-spacing:-.6px;
  line-height:1.05;
  text-shadow: 0 18px 50px rgba(0,0,0,.65);
}
.hero-lede{
  color: var(--muted);
  font-size:18px;
  line-height:1.55;
  max-width: 56ch;
  margin:0 0 18px;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:12px; margin-top:14px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  font-weight:650;
  font-size:14px;
  letter-spacing:.2px;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.btn-primary{
  background: linear-gradient(135deg, rgba(124,255,155,.22), rgba(54,215,122,.10));
  border-color: rgba(124,255,155,.38);
  box-shadow: 0 18px 50px rgba(124,255,155,.10);
}
.btn-primary:hover{ background: linear-gradient(135deg, rgba(124,255,155,.26), rgba(54,215,122,.12)); }

.btn-secondary{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
}
.btn-secondary:hover{ background: rgba(255,255,255,.09); }

.btn-ghost{
  background: rgba(0,0,0,.12);
  border-color: rgba(255,255,255,.14);
}
.btn-ghost:hover{ background: rgba(255,255,255,.06); }

.full{ width:100%; }

.hero-badges{ display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size:13px;
}
.dot{ width:8px; height:8px; border-radius:99px; background:#aaa; box-shadow: 0 0 0 3px rgba(255,255,255,.06); }
.dot-online{ background: var(--accent); box-shadow: 0 0 0 3px rgba(124,255,155,.10), 0 0 20px rgba(124,255,155,.35); }

.hero-card{
  align-self:start;
  padding:18px 18px 16px;
  border-radius: var(--radius);
  background: rgba(5,8,12,.55);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.hero-card h2{ margin:4px 0 10px; font-size:16px; }
.steps{ margin:0 0 14px; padding-left: 18px; color: var(--muted); line-height:1.7; }
.tiny{ font-size:12px; }
.muted{ color:var(--muted); }

.section{ padding:52px 0; }
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-cta{ padding:44px 0 62px; }
.section-head{ margin-bottom:18px; }
.section-head h2{ margin:0 0 8px; font-size:28px; letter-spacing:-.2px; }
.section-head p{ margin:0; }

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

.card{
  padding:18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.card h3{ margin:10px 0 8px; font-size:16px; }
.card p{ margin:0; line-height:1.6; }
.icon{ font-size:22px; }

.card-link:hover{
  border-color: rgba(124,255,155,.22);
  background: rgba(255,255,255,.05);
}

.card-link{
  display:flex;
  gap:14px;
  align-items:stretch;
}
.card-media{
  width: 168px;
  flex: 0 0 168px;
  border-radius: calc(var(--radius) - 6px);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.card-body{ flex:1; min-width:0; }
.featured{
  margin: 18px 0 6px;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.featured img{
  width:100%;
  height:auto;
  display:block;
}
@media (max-width: 860px){
  .card-link{ flex-direction:column; }
  .card-media{ width:100%; flex-basis:auto; height:170px; }
}


.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:start;
}

.checklist{ list-style:none; padding:0; margin:14px 0 0; display:grid; gap:10px; }
.check{ display:inline-flex; width:22px; height:22px; border-radius:8px; align-items:center; justify-content:center; margin-right:10px;
  background: rgba(140,215,217,.22); border:1px solid rgba(124,255,155,.28); color: var(--text);
}
.actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:16px; }

.stats{
  padding:18px;
  border-radius: var(--radius);
  background: rgba(0,0,0,.25);
  border: 1px solid var(--line);
}
.stat{ display:flex; align-items:baseline; justify-content:space-between; padding:12px 10px; border-radius:14px; background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); margin-bottom:10px; }
.stat-num{ font-weight:800; letter-spacing:-.3px; font-size:20px; }
.stat-label{ color:var(--muted); font-size:13px; }
.stats .tiny{ margin-top:8px; }

.mode-badge{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  background: rgba(124,255,155,.14);
  border:1px solid rgba(124,255,155,.28);
  color: var(--text);
}
.text-link{ color: rgba(124,255,155,.90); font-weight:650; }
.text-link:hover{ text-decoration:underline; }

.cta-box{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  padding:22px;
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(700px 220px at 20% 0%, rgba(124,255,155,.18), transparent 60%),
    radial-gradient(700px 220px at 80% 30%, rgba(140,215,217,.12), transparent 60%),
    rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.cta-actions{ display:flex; gap:12px; flex-wrap:wrap; }

.content{ padding-top:22px; }
.content-head h1{ margin:0 0 8px; font-size:34px; letter-spacing:-.3px; }
.prose{
  line-height:1.75;
  color: rgba(255,255,255,.88);
}
.prose h2{ margin-top:28px; }
.prose a{ color: rgba(124,255,155,.92); text-decoration:underline; text-underline-offset:3px; }
.prose code{
  background: rgba(255,255,255,.06);
  padding:2px 6px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.10);
}
.prose pre{
  overflow:auto;
  padding:16px;
  border-radius: var(--radius);
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.10);
}

.site-footer{
  margin-top:52px;
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.15);
}
.footer-grid{
  padding:32px 0 18px;
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap:18px;
}
.footer-brand{ display:flex; align-items:center; gap:10px; font-weight:750; margin-bottom:10px; }
.footer-link{ display:block; padding:8px 0; color: var(--muted); font-size:14px; }
.footer-link:hover{ color: var(--text); }
.footer-bottom{ padding:16px 0 26px; border-top:1px solid var(--line); }

@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; padding:44px 0 34px; }
  .hero-title{ font-size:44px; }
  .split{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px){
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .cta-box{ flex-direction:column; align-items:flex-start; }
  .site-nav{
    position:absolute;
    right:20px;
    top:62px;
    width:min(360px, calc(100vw - 40px));
    flex-direction:column;
    align-items:stretch;
    padding:12px;
    border-radius: 16px;
    background: rgba(7,9,13,.92);
    border:1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow);
    display:none;
  }
  .site-nav.is-open{ display:flex; }
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav-cta{ margin-left:0; text-align:center; }
}
