:root{
  --bg:#0E141B;
  --surface:#151D26;
  --surface2:#1C2632;
  --border:#223041;

  --text:#E6EDF3;
  --muted:#9FB0C0;

  --accent:#3B82F6;
  --ok:#22C55E;
  --warn:#F59E0B;

  --radius:14px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 20% 10%, rgba(59,130,246,.12), transparent 55%),
              radial-gradient(900px 600px at 85% 25%, rgba(34,197,94,.08), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
.container{max-width:1100px; margin:0 auto; padding:0 20px}

.muted{color:var(--muted)}
.warn{color:var(--warn)}
.ok{color:var(--ok)}

.nav{
  position:sticky; top:0;
  backdrop-filter: blur(10px);
  background: rgba(14,20,27,.65);
  border-bottom: 1px solid rgba(34,48,65,.6);
  z-index:10;
}
.nav__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px}
.brand__mark{
  width:34px; height:34px;
  display:grid; place-items:center;
  border-radius:10px;
  background: linear-gradient(180deg, rgba(59,130,246,.25), rgba(59,130,246,.08));
  border:1px solid rgba(59,130,246,.35);
  font-weight:700;
}
.brand__name{font-weight:650; letter-spacing:.2px}

.nav__links{display:flex; gap:18px}
.nav__links a{
  color:var(--muted);
  font-size:14px;
  padding:8px 10px;
  border-radius:10px;
}
.nav__links a:hover{background:rgba(255,255,255,.04); color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  font-weight:600;
  font-size:14px;
  gap:10px;
  transition: transform .12s ease, background .12s ease, border .12s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn--primary{
  background: rgba(59,130,246,.16);
  border:1px solid rgba(59,130,246,.35);
}
.btn--primary:hover{background: rgba(59,130,246,.22)}
.btn--ghost{
  background: rgba(255,255,255,.04);
}

.hero{padding:52px 0 30px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  align-items:center;
}
.eyebrow{
  color: rgba(159,176,192,.95);
  font-size:13px;
  letter-spacing:.12em;
  text-transform: uppercase;
  margin:0 0 12px;
}
h1{
  margin:0 0 10px;
  font-size:44px;
  line-height:1.12;
  letter-spacing:-.02em;
}
.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  max-width:52ch;
}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:16px}
.hero__meta{display:flex; gap:10px; flex-wrap:wrap}
.pill{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.03);
  color: rgba(230,237,243,.92);
  font-size:12px;
}

.panel{
  background: rgba(21,29,38,.8);
  border:1px solid rgba(34,48,65,.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel__top{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid rgba(34,48,65,.7);
}
.panel__title{font-size:13px; color:var(--muted)}
.panel__dots span{
  display:inline-block; width:7px; height:7px; margin-left:6px;
  border-radius:50%;
  background: rgba(159,176,192,.35);
}
.panel__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  padding:16px;
}
.card{
  background: rgba(28,38,50,.7);
  border:1px solid rgba(34,48,65,.75);
  border-radius: 14px;
  padding:14px;
}
.card__label{font-size:12px; color:var(--muted)}
.card__value{font-size:22px; font-weight:650; margin-top:6px}
.card__hint{font-size:12px; color:var(--muted); margin-top:4px}
.card--wide{grid-column:1 / -1}

.row{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:10px;
  margin-top:12px;
  padding-top:10px;
  border-top:1px solid rgba(34,48,65,.55);
}
.row:first-of-type{border-top:none; padding-top:0; margin-top:10px}
.row__title{font-weight:600; font-size:13px}
.row__meta{font-size:12px; color:var(--muted); margin-top:2px}
.money{font-weight:650}
.money--muted{color:rgba(230,237,243,.72)}

.status{
  display:inline-flex; align-items:center;
  padding:5px 9px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  font-size:12px;
  color:var(--muted);
  margin-top:6px;
  justify-content:center;
}
.status--inprogress{border-color: rgba(59,130,246,.35); background: rgba(59,130,246,.10); color: rgba(230,237,243,.92)}
.status--hold{border-color: rgba(245,158,11,.35); background: rgba(245,158,11,.10); color: rgba(230,237,243,.92)}

.progress{
  height:7px;
  background: rgba(255,255,255,.06);
  border-radius: 99px;
  overflow:hidden;
  margin-top:10px;
}
.progress__fill{
  height:100%;
  background: rgba(59,130,246,.9);
}

.panel__footer{
  padding:12px 16px 16px;
  border-top:1px solid rgba(34,48,65,.7);
}
.footnote{font-size:12px; color:rgba(159,176,192,.9)}

.panel__grid--offer{
  grid-template-columns: 1fr 1fr;
}

.hero-offer{
  background:
    radial-gradient(500px 180px at top right, rgba(59,130,246,.16), transparent 60%),
    rgba(28,38,50,.7);
}

.hero-offer__eyebrow{
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(159,176,192,.95);
}

.hero-offer__title{
  margin-top:8px;
  font-size:28px;
  font-weight:750;
  letter-spacing:-.02em;
}

.hero-offer__text{
  margin:10px 0 0;
  color:var(--muted);
  max-width:48ch;
}

.hero-signup{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

.hero-signup__input{
  flex:1 1 230px;
  min-height:46px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(34,48,65,.8);
  background:rgba(14,20,27,.7);
  color:var(--text);
}

.hero-signup__input::placeholder{ color:rgba(159,176,192,.7); }

.hero-signup__btn{
  min-height:46px;
  white-space:nowrap;
}

.hero-signup__msg{
  margin:10px 0 0;
  font-size:12px;
}

.hero-signup__msg.is-success{ color:var(--ok); }
.hero-signup__msg.is-error{ color:var(--warn); }

.hero-checks{
  margin:12px 0 0;
  padding-left:18px;
  color:var(--muted);
}

.hero-checks li{ margin:8px 0; }

.hero__visual .progress{ display:none; }

.hero__visual .row:first-of-type .row__meta{ display:none; }

.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;
}

.section{padding:46px 0}
.section--alt{
  background: rgba(21,29,38,.45);
  border-top:1px solid rgba(34,48,65,.55);
  border-bottom:1px solid rgba(34,48,65,.55);
}
.section__head{margin-bottom:18px}
h2{
  margin:0 0 6px;
  font-size:30px;
  letter-spacing:-.01em;
}
.grid4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.tile{
  background: rgba(21,29,38,.7);
  border:1px solid rgba(34,48,65,.75);
  border-radius: var(--radius);
  padding:16px;
}
.tile__num{
  width:28px; height:28px;
  display:grid; place-items:center;
  border-radius:10px;
  background: rgba(59,130,246,.12);
  border:1px solid rgba(59,130,246,.25);
  font-weight:700;
  margin-bottom:10px;
}
.tile__title{font-weight:650; margin-bottom:6px}
.tile__text{color:var(--muted); font-size:13px}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  align-items:start;
}
.box{
  background: rgba(21,29,38,.7);
  border:1px solid rgba(34,48,65,.75);
  border-radius: var(--radius);
  padding:18px;
}
.box__title{font-weight:650; margin-bottom:12px}
.list__row{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
  border-bottom:1px solid rgba(34,48,65,.55);
}
.list__row:last-child{border-bottom:none}
.list__row--note{gap:14px; align-items:flex-start}

.checks{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.checks li{margin:8px 0}

.faq details{
  background: rgba(21,29,38,.7);
  border:1px solid rgba(34,48,65,.75);
  border-radius: var(--radius);
  padding:14px 16px;
  margin-bottom:10px;
}
.faq summary{
  cursor:pointer;
  font-weight:650;
}
.faq p{margin:10px 0 0}

.cta{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(59,130,246,.30);
  background: rgba(59,130,246,.08);
}
h3{margin:0 0 4px; font-size:18px}

.footer{
  padding:26px 0 40px;
  border-top:1px solid rgba(34,48,65,.6);
  background: rgba(14,20,27,.55);
}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer__links{display:flex; gap:14px; flex-wrap:wrap}
.footer__links a{color:var(--muted); font-size:13px}
.footer__links a:hover{color:var(--text)}

/* Responsive */
@media (max-width: 940px){
  .hero__grid{grid-template-columns:1fr; }
  h1{font-size:38px}
  .grid4{grid-template-columns:1fr 1fr}
  .split{grid-template-columns:1fr}
}
@media (max-width: 520px){
  .nav__links{display:none}
  .grid4{grid-template-columns:1fr}
}
.logo-bg{
  fill: rgba(59,130,246,.18);
  stroke: rgba(59,130,246,.45);
  stroke-width: 1.5;
}
.footer__brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.footer__notice{
  margin-top:18px;
}

.footer__notice-card{
  max-width:980px;
  padding:16px 18px;
  border-radius:16px;
  border:1px solid rgba(34,48,65,.72);
  background:rgba(21,29,38,.52);
}

.footer__notice-title{
  font-size:12px;
  font-weight:750;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(230,237,243,.92);
}

.footer__notice-text{
  margin:10px 0 0;
  color:var(--muted);
  font-size:12px;
  line-height:1.7;
  max-width:92ch;
}
/* Services hub */
.services-hub{
  margin: 10px 0 18px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(34,48,65,.75);
  background: rgba(21,29,38,.55);
}

.services-hub__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
  margin-bottom: 14px;
}

.services-hub__title{
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -.01em;
}

.services-hub__subtitle{
  margin: 0;
  font-size: 13px;
  max-width: 70ch;
}

.services-hub__meta{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

.services-hub__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.hub-item{
  display:flex;
  flex-direction:column;
  gap: 8px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(34,48,65,.65);
  background: rgba(28,38,50,.55);
  transition: transform .12s ease, background .12s ease, border .12s ease;
  min-height: 130px;
}

.hub-item:hover{
  transform: translateY(-1px);
  background: rgba(28,38,50,.72);
  border-color: rgba(59,130,246,.30);
}

.hub-item__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}

.hub-item__kicker{
  color: rgba(159,176,192,.95);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hub-item__title{
  font-weight: 650;
  font-size: 14px;
  color: rgba(230,237,243,.95);
  letter-spacing: -.01em;
}

.hub-item__desc{
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.hub-item__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(34,48,65,.45);
}

.hub-item__hint{
  color: rgba(159,176,192,.92);
  font-size: 12px;
}

.hub-item__arrow{
  color: rgba(230,237,243,.9);
  font-weight: 700;
}

.hub-item--featured{
  border-color: rgba(59,130,246,.30);
  background: rgba(59,130,246,.06);
}

.services-hub__note{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(34,48,65,.55);
  font-size: 13px;
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
  align-items:baseline;
}

@media (max-width: 1020px){
  .services-hub__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .services-hub__grid{ grid-template-columns: 1fr; }
}
/* Service list template */
.svc{
  margin-top: 12px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(34,48,65,.75);
  background: rgba(21,29,38,.45);
}

.svc__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 12px;
  flex-wrap:wrap;
  margin-bottom: 12px;
}

.svc__title{
  margin:0 0 6px;
  font-size: 18px;
  letter-spacing:-.01em;
}

.svc__subtitle{
  margin:0;
  font-size: 13px;
  max-width: 80ch;
}

.svc__legend{
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.tag{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(230,237,243,.92);
}
.tag--live{ border-color: rgba(59,130,246,.30); background: rgba(59,130,246,.08); }
.tag--milestone{ border-color: rgba(34,197,94,.28); background: rgba(34,197,94,.08); }
.tag--variance{ border-color: rgba(245,158,11,.28); background: rgba(245,158,11,.08); }

.svc__list{
  display:grid;
  gap: 10px;
}

.svc-item{
  display:grid;
  grid-template-columns: 1.25fr 1fr auto;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(34,48,65,.65);
  background: rgba(28,38,50,.55);
  transition: transform .12s ease, background .12s ease, border .12s ease;
}

.svc-item:hover{
  transform: translateY(-1px);
  background: rgba(28,38,50,.72);
  border-color: rgba(59,130,246,.28);
}

.svc-item__title{
  font-weight: 650;
  letter-spacing:-.01em;
}

.svc-item__desc{
  margin-top: 4px;
  font-size: 12.5px;
  line-height: 1.45;
}

.svc-item__chips{
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
  margin-top: 10px;
}

.chipmini{
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(230,237,243,.92);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.svc-item__meta{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-content:start;
}

.svc-kpi{
  background: rgba(21,29,38,.55);
  border: 1px solid rgba(34,48,65,.55);
  border-radius: 12px;
  padding: 10px 12px;
}

.svc-kpi__label{
  font-size: 12px;
  color: var(--muted);
}

.svc-kpi__value{
  margin-top: 6px;
  font-size: 14px;
  font-weight: 650;
  color: rgba(230,237,243,.95);
}

.svc-item__cta{
  display:flex;
  align-items:center;
  gap: 8px;
  justify-content:flex-end;
  color: rgba(230,237,243,.92);
  font-weight: 650;
}

.svc-item__link{
  color: rgba(230,237,243,.92);
  font-size: 13px;
}

.svc-item__arrow{
  color: rgba(230,237,243,.9);
  font-weight: 800;
}

.svc__note{
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(34,48,65,.55);
  font-size: 13px;
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
  align-items:baseline;
}

@media (max-width: 980px){
  .svc-item{
    grid-template-columns: 1fr;
  }
  .svc-item__cta{
    justify-content:flex-start;
  }
}
/* Smooth scroll (optional but recommended) */
html { scroll-behavior: smooth; }

/* Accessible focus (recommended) */
:focus-visible{
  outline: 2px solid rgba(59,130,246,.65);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Badges (used in services hub) */
.badge{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(230,237,243,.92);
  background: rgba(255,255,255,.04);
  white-space: nowrap;
}
.badge--neutral{ border-color: rgba(255,255,255,.10); }
.badge--blue{ border-color: rgba(59,130,246,.35); background: rgba(59,130,246,.10); }
.badge--green{ border-color: rgba(34,197,94,.30); background: rgba(34,197,94,.08); }
.badge--amber{ border-color: rgba(245,158,11,.35); background: rgba(245,158,11,.10); }

/* Category layout (Renegades section header + banner) */
.category-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
  margin-bottom: 14px;
}

.category-subtitle{
  margin: 6px 0 0;
  font-size: 13px;
  max-width: 75ch;
}

.category-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

.category-banner{
  border: 1px solid rgba(59,130,246,.25);
  background: rgba(59,130,246,.06);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 10px 0 14px;
}
.category-banner__title{
  font-weight: 650;
  margin-bottom: 4px;
  font-size: 13px;
}
.category-banner__text{
  font-size: 13px;
}

/* Small quality polish */
.section__head p.muted{ max-width: 80ch; }
.scope-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.scope-item__left{display:flex; flex-direction:column; gap:2px}

.scope-item--locked{
  border-color: rgba(34,197,94,.22);
  background: rgba(34,197,94,.05);
}
/* ===== Service Details (Praxis Blade) ===== */
.detail-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom: 14px;
}

.detail-subtitle{
  margin:6px 0 0;
  font-size:13px;
  max-width: 80ch;
}

.detail-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.detail-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 12px;
  align-items:start;
}

.detail-panel{
  background: rgba(21,29,38,.7);
  border: 1px solid rgba(34,48,65,.75);
  border-radius: var(--radius);
  padding: 16px;
}

.detail-panel__top{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(34,48,65,.55);
}

.detail-panel__title{ font-weight:650; }
.detail-panel__hint{ font-size:13px; }

.detail-block{
  padding: 12px 0;
  border-bottom: 1px solid rgba(34,48,65,.45);
}
.detail-block:last-child{ border-bottom:none; padding-bottom:0; }

.detail-block__title{
  font-weight:650;
  font-size:13px;
  margin-bottom:10px;
  color: rgba(230,237,243,.92);
}

/* Grid for options */
.detail-block__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Option cards */
.opt{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(34,48,65,.55);
  background: rgba(28,38,50,.55);
  cursor:pointer;
}
.opt:hover{
  border-color: rgba(59,130,246,.22);
  background: rgba(28,38,50,.70);
}
.opt input{
  margin-top: 3px;
  accent-color: rgba(59,130,246,.9);
}
.opt__sub{
  display:block;
  margin-top:2px;
  font-size:12px;
}

.opt-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Select */
.select{
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(34,48,65,.65);
  background: rgba(28,38,50,.65);
  color: rgba(230,237,243,.95);
}

/* Sticky summary (right column) */
.detail-panel--sticky{
  position: sticky;
  top: 84px; /* below sticky nav */
}

/* Scope list (if you used it) */
.scope-list{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.scope-item{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(34,48,65,.55);
  background: rgba(28,38,50,.45);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.scope-item__left{display:flex; flex-direction:column; gap:2px;}
.scope-item__title{font-weight:650; font-size:13px;}
.scope-item__sub{font-size:12px; margin-top:2px;}
.scope-item--locked{
  border-color: rgba(34,197,94,.22);
  background: rgba(34,197,94,.05);
}

.summary-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 6px 0;
}

.svc-detail__grid{
  display:grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 18px;
  align-items:start;
}

.svc-config,
.svc-summary{
  min-width: 0;
}

.svc-summary{
  align-self:start;
}

.cart-shell{
  overflow:hidden;
  padding:0;
  background:
    linear-gradient(180deg, rgba(59,130,246,.08), transparent 28%),
    rgba(21,29,38,.82);
}

.cart-shell__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:16px;
  border-bottom:1px solid rgba(34,48,65,.55);
}

.cart-shell__eyebrow{
  color:rgba(159,176,192,.92);
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.cart-shell__title{
  margin-top:6px;
  font-size:20px;
  font-weight:750;
  letter-spacing:-.02em;
}

.cart-shell__service{
  padding:14px 16px;
  border-bottom:1px solid rgba(34,48,65,.45);
  background:rgba(14,20,27,.24);
}

.cart-shell__service-name{
  font-weight:700;
}

.cart-shell__service-meta{
  margin-top:4px;
  color:var(--muted);
  font-size:12px;
}

.cart-shell__body{
  padding:4px 16px 16px;
}

.cart-shell__body .detail-block:first-child{
  padding-top:12px;
}

.cart-shell__body .btn{
  margin-top: 10px;
}

.cart-shell__footer{
  padding:14px 16px 16px;
  border-top:1px solid rgba(34,48,65,.55);
  background:rgba(14,20,27,.24);
}

.cart-shell__note{
  margin:0;
  color:var(--muted);
  font-size:12px;
  line-height:1.5;
}

.checkout-panel{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(34,48,65,.55);
}

.checkout-panel__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.checkout-panel__eyebrow{
  color:rgba(159,176,192,.92);
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.checkout-panel__title{
  margin-top:6px;
  font-size:18px;
  font-weight:750;
  letter-spacing:-.02em;
}

.checkout-panel__close{
  padding:9px 12px;
}

.checkout-panel__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.checkout-form{
  margin-top:14px;
}

.checkout-form__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:7px;
  margin-bottom:12px;
}

.field__label{
  font-size:12px;
  font-weight:650;
  color:rgba(230,237,243,.92);
}

.field__control{
  width:100%;
  min-height:46px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(34,48,65,.75);
  background:rgba(14,20,27,.72);
  color:var(--text);
  font:inherit;
}

.field__control::placeholder{
  color:rgba(159,176,192,.72);
}

.field__control--textarea{
  min-height:108px;
  resize:vertical;
}

.checkout-form__actions{
  display:flex;
  gap:10px;
  margin-top:12px;
}

.checkout-form__actions .btn{
  width:100%;
}

.checkout-form__status{
  margin:12px 0 0;
  font-size:12px;
}

.checkout-form__status.is-error{
  color:var(--warn);
}

.checkout-form__status.is-success{
  color:var(--ok);
}

.checkout-result{
  margin-top:14px;
  padding:14px;
  border-radius:14px;
  border:1px solid rgba(34,48,65,.75);
  background:rgba(28,38,50,.55);
}

.checkout-result--success{
  border-color:rgba(34,197,94,.3);
  background:rgba(34,197,94,.08);
}

.checkout-result--error{
  border-color:rgba(245,158,11,.3);
  background:rgba(245,158,11,.08);
}

.checkout-result p{
  margin:8px 0 0;
  color:var(--muted);
}

.checkout-result__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

/* Responsive */
@media (max-width: 940px){
  .svc-detail__grid{ grid-template-columns: 1fr; }
  .detail-grid{ grid-template-columns: 1fr; }
  .detail-panel--sticky{ position: static; }
  .detail-block__grid{ grid-template-columns: 1fr; }
  .opt-grid{ grid-template-columns: 1fr; }
  .scope-list{ grid-template-columns: 1fr; }
  .checkout-form__grid{ grid-template-columns: 1fr; }
}


/* =========================
   SERVICES (catalog ↔ detail)
   Single source of truth: #services.is-detail
========================= */

#services #svcCatalog{ display:grid; }
#services #svcDetail{ display:none; }

#services.is-detail #svcCatalog{ display:none; }
#services.is-detail #svcDetail{ display:block; }

#svcDetail { margin-top: 14px; }
#svcBack  { margin-bottom: 14px; }

/* Hard override to prevent white default buttons in CodePen/resets */
#services button.svc-card,
#services .svc-cat__head{
  appearance:none;
  -webkit-appearance:none;
  font: inherit;
  color: var(--text);
  background: transparent;
}

/* Ensure cards render dark */
#services button.svc-card{
  background:rgba(28,38,50,.6);
  border:1px solid rgba(34,48,65,.6);
  border-radius:12px;
}


#svcDetail { margin-top: 14px; }
#svcBack { margin-bottom: 14px; }

/* =========================
   FIX: Services Catalog layout (override)
   Paste at the VERY END of your CSS
========================= */

/* Make sure the catalog is a vertical list */
#svcCatalog{
  display: grid;
  gap: 16px;
}

#services-games{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 22px;
  scroll-margin-top:110px;
}

#services-games:empty{
  display:none;
  margin:0;
}

.svc-games-nav__pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 14px;
  border-radius:999px;
  border:1px solid rgba(59,130,246,.18);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:13px;
  font-weight:600;
  transition:background .12s ease, border-color .12s ease, color .12s ease, transform .12s ease;
}

.svc-games-nav__pill:hover,
.svc-games-nav__pill.is-active{
  background:rgba(59,130,246,.14);
  border-color:rgba(59,130,246,.38);
  color:var(--text);
  transform:translateY(-1px);
}

#svcCatalog .svc-game{
  border:1px solid rgba(34,48,65,.7);
  border-radius:18px;
  background:linear-gradient(180deg, rgba(21,29,38,.78), rgba(21,29,38,.52));
  padding:18px;
  scroll-margin-top:118px;
}

.svc-game__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
  padding-bottom:14px;
  border-bottom:1px solid rgba(34,48,65,.6);
}

.svc-game__eyebrow{
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(159,176,192,.92);
}

.svc-game__title{
  margin:6px 0 0;
  font-size:24px;
  letter-spacing:-.02em;
}

.svc-game__desc{
  margin:8px 0 0;
  max-width:60ch;
}

.svc-game__jump{
  flex:0 0 auto;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(34,48,65,.8);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:12px;
  font-weight:600;
}

.svc-game__jump:hover{
  color:var(--text);
  border-color:rgba(59,130,246,.34);
}

.svc-game__categories{
  display:grid;
  gap:14px;
}

/* Category container */
#svcCatalog .svc-cat{
  border: 1px solid rgba(34,48,65,.6);
  border-radius: 14px;
  background: rgba(21,29,38,.6);
  overflow: hidden;
}

/* Category header button */
#svcCatalog .svc-cat__head{
  width: 100%;
  background: none;
  border: 0;
  color: inherit;
  padding: 16px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

/* CLOSED by default */
#svcCatalog .svc-cat__body{
  display: none !important;
  padding: 0 16px 16px;
}

/* OPEN state */
#svcCatalog .svc-cat.is-open .svc-cat__body{
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}

/* Service cards MUST be block-level */
#svcCatalog .svc-card{
  display: block !important;
  width: 100% !important;

  appearance: none;
  -webkit-appearance: none;

  background: rgba(28,38,50,.6);
  border: 1px solid rgba(34,48,65,.6);
  border-radius: 12px;
  padding: 12px;

  color: inherit;
  text-align: left;
  cursor: pointer;
}

/* Inside card layout */
#svcCatalog .svc-card strong{ display:block; font-weight:650; }
#svcCatalog .svc-card .muted{ display:block; margin-top:4px; }
#svcCatalog .svc-card__cta{ display:block; margin-top:8px; font-weight:650; }

#svcCatalog .svc-card:hover{
  border-color: rgba(59,130,246,.4);
  background: rgba(28,38,50,.72);
}

/* =========================
   WEEKLY BUNDLE
========================= */
.weekly{ padding: 54px 0; }
.weekly__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom: 14px;
}
.weekly__sub{ max-width: 85ch; margin: 0; }
.weekly__meta{ display:flex; gap:10px; flex-wrap:wrap; }

.pill--accent{
  border-color: rgba(59,130,246,.35);
  background: rgba(59,130,246,.10);
}

.weekly__grid{
  display:grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 14px;
  align-items:start;
}

.weekly__card{
  border:1px solid rgba(34,48,65,.75);
  background: rgba(21,29,38,.65);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.weekly__top{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(34,48,65,.55);
}

.weekly__kicker{
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(159,176,192,.95);
  margin-bottom: 6px;
}
.weekly__title{ font-size: 22px; font-weight: 750; letter-spacing: -.01em; }
.weekly__desc{ margin-top: 6px; max-width: 70ch; }

.weekly__pricebox{
  text-align:right;
  min-width: 150px;
}
.weekly__price{
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.weekly__pricehint{ font-size: 12px; margin-top: 4px; }

.weekly__content{ padding-top: 14px; }

.weekly__cols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.weekly__label{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(230,237,243,.90);
  margin-bottom: 8px;
}

.weekly__list{
  margin: 0;
  padding-left: 18px;
}
.weekly__list li{ margin: 8px 0; }
.weekly__list--muted{ color: var(--muted); }

.weekly__footer{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  align-items:center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(34,48,65,.55);
}

.weekly__timer{ display:flex; gap:10px; align-items:baseline; }
.weekly__countdown{
  font-weight: 800;
  letter-spacing: .02em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(59,130,246,.30);
  background: rgba(59,130,246,.08);
}

.weekly__actions{ display:flex; gap: 10px; flex-wrap:wrap; }

.weekly__side{ display:grid; gap: 12px; }
.weekly__sidecard{
  border:1px solid rgba(34,48,65,.75);
  background: rgba(21,29,38,.55);
  border-radius: var(--radius);
  padding: 16px;
}

@media (max-width: 980px){
  .weekly__grid{ grid-template-columns: 1fr; }
  .weekly__pricebox{ text-align:left; }
  .weekly__cols{ grid-template-columns: 1fr; }
  .svc-game__head{ flex-direction:column; }
  .svc-game__jump{ align-self:flex-start; }
}

.nav__actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.nav__games{
  position:relative;
}

.nav__games summary{
  list-style:none;
  cursor:pointer;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-size:14px;
  font-weight:600;
}

.nav__games summary::-webkit-details-marker{ display:none; }

.nav__games[open] summary{
  border-color:rgba(59,130,246,.35);
  background:rgba(59,130,246,.12);
}

.nav__games-menu{
  position:absolute;
  right:0;
  top:calc(100% + 10px);
  min-width:240px;
  padding:10px;
  border-radius:14px;
  border:1px solid rgba(34,48,65,.85);
  background:rgba(21,29,38,.96);
  box-shadow:var(--shadow);
  display:grid;
  gap:6px;
  z-index:30;
}

.nav__games-menu a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  color:var(--muted);
  font-size:14px;
}

.nav__games-menu a:hover{
  background:rgba(59,130,246,.12);
  color:var(--text);
}

.landing{
  padding:64px 0 28px;
}

.landing__grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
  align-items:center;
}

.landing__title{
  margin:0 0 12px;
  font-size:52px;
  line-height:1.05;
  letter-spacing:-.03em;
}

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

.landing__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:18px;
}

.landing__chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.landing__panel{
  padding:18px;
}

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

.game-card{
  display:flex;
  flex-direction:column;
  gap:12px;
  min-height:220px;
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(34,48,65,.8);
  background:linear-gradient(180deg, rgba(21,29,38,.82), rgba(28,38,50,.62));
  box-shadow:var(--shadow);
}

.game-card__eyebrow{
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(159,176,192,.92);
}

.game-card__title{
  font-size:26px;
  font-weight:750;
  letter-spacing:-.02em;
}

.game-card__text{
  color:var(--muted);
  flex:1 1 auto;
}

.game-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.game-card__meta span{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  font-size:12px;
  color:rgba(230,237,243,.88);
}

.game-shell{
  padding:54px 0 24px;
}

.game-shell__hero{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:20px;
  align-items:start;
}

.game-shell__panel{
  padding:18px;
}

.game-shell__list{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--muted);
}

.game-shell__list li + li{
  margin-top:8px;
}

@media (max-width: 980px){
  .landing__grid,
  .game-shell__hero{
    grid-template-columns:1fr;
  }

  .games-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 720px){
  .nav__inner{
    flex-wrap:wrap;
  }

  .nav__actions{
    width:100%;
    justify-content:space-between;
  }

  .nav__games-menu{
    left:0;
    right:auto;
    min-width:220px;
  }

  .landing__title{
    font-size:38px;
  }
}
