:root{
  /* Colors pulled to match your Jarian Streams poster/logo vibe */
  --bg:#060812;
  --bg2:#0b1024;
  --card:#0e1733;
  --text:#eaf2ff;
  --muted:#b8c7e8;
  --line:rgba(255,255,255,.12);

  /* Neon blues + warm gold/orange from the poster */
  --accent:#1080f0;     /* neon blue */
  --accent2:#90c0f0;    /* light cyan/blue */
  --warm:#f0a010;       /* gold/orange */
  --purple:#501070;     /* purple glow */

  --shadow: 0 10px 30px 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, Arial, sans-serif;
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(16,128,240,.28), transparent 62%),
    radial-gradient(900px 520px at 85% 16%, rgba(240,160,16,.16), transparent 62%),
    radial-gradient(760px 520px at 55% 0%, rgba(80,16,112,.18), transparent 60%),
    linear-gradient(180deg, var(--bg), #040610 70%);
  color: var(--text);
}

a{ color:inherit; text-decoration:none; }

.wrap{ width:min(1120px, 92vw); margin:0 auto; }

.skip{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:16px; top:16px; width:auto; height:auto;
  padding:10px 12px; background:#fff; color:#000; border-radius:10px; z-index:9999;
}

.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(6,8,18,.70);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-name{ font-weight:900; letter-spacing:.2px; }
.brand-tag{ font-size:12px; color:var(--muted); margin-top:4px; }

.brand-logo{
  width: 170px;
  height: auto;
  display:block;
  filter: drop-shadow(0 10px 18px rgba(16,128,240,.20));
}

@media (max-width: 520px){
  .brand-logo{ width: 140px; }
}

.nav{ display:flex; align-items:center; gap:10px; }
.nav-link{
  padding:10px 12px;
  border-radius:12px;
  color: var(--muted);
}
.nav-link:hover{ background: rgba(255,255,255,.06); color:var(--text); }
.nav-link.active{ color:var(--text); background: rgba(255,255,255,.08); }
.nav-link.cta{
  color:#07101f;
  background: linear-gradient(135deg, var(--warm), var(--accent));
  font-weight:900;
}
.nav-link.cta:hover{ filter: brightness(1.02); }

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
}
.nav-toggle-bars{
  display:block; width:22px; height:2px; background:var(--text); position:relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after{
  content:""; position:absolute; left:0; width:22px; height:2px; background:var(--text);
}
.nav-toggle-bars::before{ top:-7px; }
.nav-toggle-bars::after{ top:7px; }

@media (max-width: 860px){
  .nav-toggle{ display:block; }
  .nav{
    display:none;
    position:absolute;
    right:4vw;
    top:72px;
    flex-direction:column;
    width:min(340px, 92vw);
    background: rgba(10,14,26,.96);
    border:1px solid var(--line);
    border-radius: 16px;
    padding:10px;
    box-shadow: var(--shadow);
  }
  .nav[data-open="true"]{ display:flex; }
  .nav-link{ width:100%; }
}

.hero{ padding:56px 0 10px; }

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:start;
}
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
}

.pill{
  display:inline-block;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-size:13px;
  margin:0 0 14px;
}

h1{ font-size: clamp(32px, 5vw, 52px); line-height:1.05; margin:0 0 12px; }

.lead{ font-size:18px; color: var(--muted); line-height:1.6; margin:0 0 18px; }

.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin: 18px 0 18px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight:800;
}
.btn:hover{ background: rgba(255,255,255,.09); }

.btn.primary{
  border:none;
  color:#07101f;
  background: linear-gradient(135deg, var(--warm), var(--accent));
}

.btn.small{ padding:10px 12px; border-radius:12px; font-size:14px; }

.hero-bullets{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
  margin-top: 18px;
}

.mini{
  padding:12px 14px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.mini-title{ font-weight:900; margin-bottom:4px; }
.mini-text{ color: var(--muted); line-height:1.45; }

.hero-card .card{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(16,128,240,.22);
  background: linear-gradient(180deg, rgba(16,128,240,.12), rgba(255,255,255,.03));
  box-shadow: 0 18px 40px rgba(16,128,240,.10);
}

.card-title{ margin:0; }
.card-sub{ margin:6px 0 0; color: var(--muted); }
.card-header{ margin-bottom: 12px; }

.steps{ margin: 12px 0 0; padding:0; list-style:none; display:grid; gap:12px; }
.steps li{
  display:grid;
  grid-template-columns: 28px 1fr;
  gap:10px;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.12);
}
.step-n{
  width:28px; height:28px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(240,160,16,.22);
  border:1px solid rgba(240,160,16,.35);
  font-weight:950;
  color: var(--text);
}
.step-t{ font-weight:900; }
.step-d{ color: var(--muted); grid-column: 2; margin-top:2px; }

.card-foot{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }

.trust{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:12px;
}
.trust-item{
  padding:12px 14px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.trust-title{ font-weight:900; margin-bottom:4px; }
.trust-text{ color: var(--muted); }

.section{ padding: 44px 0; }
.section.alt{
  background: linear-gradient(180deg, transparent, rgba(16,128,240,.06), transparent);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.section-head{ margin-bottom: 18px; }
.section-head h2{ margin:0 0 6px; font-size:28px; }
.section-head p{ margin:0; color: var(--muted); }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 980px){
  .grid-3{ grid-template-columns:1fr; }
}

.plan{
  position:relative;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}

.plan.featured{
  background: linear-gradient(180deg, rgba(240,160,16,.14), rgba(255,255,255,.04));
  box-shadow: 0 18px 40px rgba(240,160,16,.10);
  border:1px solid rgba(240,160,16,.25);
}

.badge{
  position:absolute;
  top:14px; right:14px;
  font-size:12px;
  padding:6px 10px;
  border-radius: 999px;
  background: rgba(240,160,16,.20);
  border:1px solid rgba(240,160,16,.35);
  color: var(--text);
  font-weight:900;
}

.plan-top h3{ margin:0; }
.plan-sub{ margin:6px 0 0; color: var(--muted); }

.price{ display:flex; align-items:flex-end; gap:6px; margin: 10px 0 10px; }
.price-num{ color: var(--muted); font-weight:900; }
.price-big{ font-size:38px; font-weight:950; letter-spacing:-.6px; }
.price-per{ color: var(--muted); font-weight:800; }

.list{ margin: 12px 0 14px; padding-left: 18px; color: var(--muted); }
.list li{ margin: 8px 0; }

.fineprint{ color: rgba(183,199,232,.90); font-size: 13px; margin-top:14px; }

.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
@media (max-width: 980px){
  .split{ grid-template-columns: 1fr; }
}

.panel{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(0,0,0,.14);
}
.panel h3{ margin-top:0; }

.codebox{
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:12px;
  overflow:auto;
}

.mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.muted{ color: var(--muted); }

.checklist{ display:grid; gap:10px; margin: 14px 0 16px; }
.check{
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.page{ padding: 14px 0 30px; }
.page-head{ padding: 34px 0 10px; }
.page-head h1{ margin:0 0 10px; }

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 980px){
  .grid-2{ grid-template-columns:1fr; }
}

.card{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}

.form{ display:grid; gap:12px; }
label{ display:grid; gap:6px; color: var(--muted); font-weight:800; }
input,select,textarea{
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.18);
  color: var(--text);
  font: inherit;
}
input:focus,select:focus,textarea:focus{
  outline: 2px solid rgba(16,128,240,.35);
  outline-offset: 2px;
}

.faq{ display:grid; gap:12px; }
.faq-item{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 10px 12px;
}
.faq-item summary{
  cursor:pointer;
  font-weight:950;
  color: var(--text);
  padding: 8px 8px;
}
.faq-body{ padding: 0 8px 10px; color: var(--muted); line-height:1.65; }

.callout{
  margin-top:10px;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(16,128,240,.35);
  background: rgba(16,128,240,.10);
}

.sep{ border:none; height:1px; background: var(--line); margin: 16px 0; }

.contact-lines{ display:grid; gap:10px; }

.site-footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  background: rgba(0,0,0,.18);
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap:14px;
  padding-bottom: 12px;
}
@media (max-width: 980px){
  .footer-grid{ grid-template-columns:1fr; }
}

.footer-brand{ font-weight:950; margin-bottom:6px; }
.footer-title{ font-weight:950; margin-bottom:8px; }
.footer-link{ display:block; color: var(--muted); padding: 6px 0; }
.footer-link:hover{ color: var(--text); }

.footer-small{ color: var(--muted); font-size: 13px; }
.footer-bottom{ padding-top: 10px; border-top:1px solid rgba(255,255,255,.06); }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); border:0;
}

.info-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:14px;
}
@media (max-width: 980px){
  .info-grid{ grid-template-columns:1fr; }
}

.info{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
