:root{
  --bg:#0b0c10;
  --panel:#12141b;
  --panel2:#0f1117;
  --text:#e8eaf0;
  --muted:#aab1c5;
  --border:#22263a;
  --accent:#7c5cff;
  --accent2:#32d3a0;
  --danger:#ff4d6d;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 16px;
  --radius2: 24px;
  --max: 1100px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--sans);
  background: radial-gradient(1200px 800px at 20% 0%, rgba(124,92,255,.25), transparent 60%),
              radial-gradient(900px 700px at 90% 10%, rgba(50,211,160,.18), transparent 55%),
              var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.9}
code{font-family:var(--mono); font-size:.92em}

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position:absolute; left:-9999px; top:10px;
  background:var(--panel); padding:10px 12px; border-radius:10px;
  border:1px solid var(--border);
}
.skip-link:focus{left:10px; z-index:50}

.header{
  position:sticky;
  top:0;
  backdrop-filter: blur(10px);
  background: rgba(11,12,16,.65);
  border-bottom:1px solid rgba(34,38,58,.7);
  z-index:40;
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:42px; height:42px;
  border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(124,92,255,.9), rgba(50,211,160,.7));
  font-weight:900;
  box-shadow: 0 10px 25px rgba(124,92,255,.22);
}
.brand__name{font-weight:800; letter-spacing:.3px}
.brand__tag{font-size:.9rem; color:var(--muted)}
.brand--small .brand__mark{width:36px;height:36px;border-radius:12px}

.nav{display:flex; gap:16px; align-items:center}
.nav a{
  padding:10px 10px;
  border-radius:12px;
  color:var(--muted);
}
.nav a:hover{background: rgba(255,255,255,.04); color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(124,92,255,.65);
  background: linear-gradient(135deg, rgba(124,92,255,.92), rgba(124,92,255,.65));
  color:white;
  font-weight:700;
  box-shadow: 0 14px 40px rgba(124,92,255,.18);
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.btn--ghost{
  background: transparent;
  border:1px solid rgba(170,177,197,.35);
  color:var(--text);
  box-shadow:none;
}
.btn--small{padding:10px 12px; border-radius:12px; font-weight:700}

.hero{padding:56px 0 24px}
.hero__inner{
  display:grid;
  grid-template-columns: 1.45fr .85fr;
  gap:24px;
  align-items:start;
}
.pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(34,38,58,.8);
  color: var(--muted);
  width: fit-content;
}
.hero h1{
  margin:14px 0 12px;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height:1.05;
}
.lead{color: var(--muted); font-size:1.05rem; line-height:1.6}
.hero__cta{display:flex; gap:12px; margin-top:16px; flex-wrap:wrap}

.hero__card{
  background: linear-gradient(180deg, rgba(18,20,27,.85), rgba(15,17,23,.85));
  border:1px solid rgba(34,38,58,.85);
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: var(--shadow);
}
.hero__stat{display:flex; align-items:baseline; justify-content:space-between; padding:10px 0}
.hero__statNum{font-weight:900; font-size:1.3rem}
.hero__statLbl{color:var(--muted); font-size:.95rem}
.divider{border:none; border-top:1px solid rgba(34,38,58,.85); margin:12px 0}

.region{margin-top:18px}
.region__label{color:var(--muted); font-size:.95rem; margin-bottom:8px}
.segmented{
  display:inline-flex;
  border:1px solid rgba(34,38,58,.9);
  border-radius: 999px;
  overflow:hidden;
  background: rgba(255,255,255,.03);
}
.segmented__btn{
  appearance:none;
  border:0;
  padding:10px 14px;
  background: transparent;
  color: var(--muted);
  font-weight:700;
  cursor:pointer;
}
.segmented__btn.is-active{
  color: var(--text);
  background: rgba(124,92,255,.22);
}
.region__note{margin-top:10px; color:var(--muted); font-size:.95rem}

.trust{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.trust__item{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(34,38,58,.8);
  color:var(--muted);
  padding:10px 12px;
  border-radius:14px;
}

.section{padding:48px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent 65%);
  border-top:1px solid rgba(34,38,58,.55);
  border-bottom:1px solid rgba(34,38,58,.55);
}
.section__head{margin-bottom:18px}
.section__head h2{margin:0 0 8px; font-size:1.8rem}
.muted{color:var(--muted)}
.small{font-size:.95rem}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}
.card{
  grid-column: span 6;
  background: rgba(18,20,27,.78);
  border:1px solid rgba(34,38,58,.9);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.card__top{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
.card__title{font-weight:900; font-size:1.1rem}
.badge{
  font-size:.85rem;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(170,177,197,.25);
  color:var(--muted);
  background: rgba(255,255,255,.03);
}
.badge--hot{border-color: rgba(50,211,160,.35); color: rgba(50,211,160,.95)}
.badge--soon{border-color: rgba(170,177,197,.22); color: rgba(170,177,197,.95)}
.badge--service{border-color: rgba(124,92,255,.35); color: rgba(124,92,255,.95)}

.priceRow{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  padding-top:6px;
}
.price{
  font-weight:900;
  font-size:1.25rem;
}
.meta{color:var(--muted); font-size:.95rem; line-height:1.5}
.card__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:4px}
.btn--secondary{
  background: transparent;
  border:1px solid rgba(50,211,160,.35);
  color: var(--text);
  box-shadow:none;
}
.btn--secondary:hover{background: rgba(50,211,160,.08)}

.grid--services .card{grid-column: span 4}

.policyStrip{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  color:var(--muted);
}
.policyStrip > div{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(34,38,58,.8);
  background: rgba(255,255,255,.03);
}

.callout{
  margin-top:18px;
  background: rgba(15,17,23,.72);
  border:1px solid rgba(34,38,58,.85);
  border-radius: var(--radius);
  padding:16px;
}
.steps{margin: 10px 0 0 18px; color: var(--muted)}
.steps li{margin: 8px 0}

.faq details{
  background: rgba(18,20,27,.75);
  border:1px solid rgba(34,38,58,.9);
  border-radius: var(--radius);
  padding:12px 14px;
  margin-bottom:10px;
}
.faq summary{cursor:pointer; font-weight:800}
.faq__body{margin-top:8px; color:var(--muted); line-height:1.6}

.form{
  background: rgba(18,20,27,.78);
  border:1px solid rgba(34,38,58,.9);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.form label{display:flex; flex-direction:column; gap:8px; color:var(--muted); font-weight:700}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-bottom:12px;
}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(34,38,58,.9);
  background: rgba(11,12,16,.55);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(124,92,255,.75);
  box-shadow: 0 0 0 4px rgba(124,92,255,.18);
}

.footer{
  padding:26px 0 34px;
  border-top:1px solid rgba(34,38,58,.65);
}
.footer__inner{display:flex; justify-content:space-between; gap:20px; align-items:flex-start}
.footer__right{display:flex; gap:14px; flex-wrap:wrap; color:var(--muted)}
.footer__right a{padding:8px 10px; border-radius:12px}
.footer__right a:hover{background: rgba(255,255,255,.04); color:var(--text)}

@media (max-width: 920px){
  .hero__inner{grid-template-columns:1fr}
  .card{grid-column: span 12}
  .grid--services .card{grid-column: span 12}
  .form__row{grid-template-columns:1fr}
  .nav{display:none}
  
/* Xbox Builder */
.builderCard{
  background: rgba(18,20,27,.78);
  border:1px solid rgba(34,38,58,.9);
  border-radius: var(--radius2);
  padding:16px;
  box-shadow: var(--shadow);
}

.builderTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

.builderTitle{
  font-weight:900;
  font-size:1.25rem;
  margin-bottom:6px;
}

.builderControls{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:12px;
  align-items:stretch;
}

.builderLabel{
  display:flex;
  flex-direction:column;
  gap:8px;
  color: var(--muted);
  font-weight:800;
}

.builderPrice{
  background: rgba(11,12,16,.45);
  border:1px solid rgba(34,38,58,.9);
  border-radius: 16px;
  padding:12px;
}

.builderPriceLabel{color: var(--muted); font-weight:800; margin-bottom:6px}
.builderPriceValue{font-size:1.5rem; font-weight:900}

@media (max-width: 920px){
  .builderControls{grid-template-columns:1fr}
}