/* Xeno Development – Website V2
   Clean, modern, responsive, dark/light + cyan accent
*/

:root{
  --accent:#00e5ff;
  --accent2:#00bcd4;

  --bg:#05070c;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.04);
  --border:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.72);

  --shadow: 0 22px 80px rgba(0,0,0,.55);
  --r:18px;
  --max: min(94vw, 1200px);

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

html[data-theme="light"]{
  --bg:#f7fbff;
  --panel:rgba(0,0,0,.04);
  --panel2:rgba(0,0,0,.03);
  --border:rgba(0,0,0,.10);
  --text:rgba(0,0,0,.88);
  --muted:rgba(0,0,0,.60);
  --shadow: 0 22px 80px rgba(0,0,0,.10);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(0,229,255,.14), transparent 55%),
    radial-gradient(700px 420px at 85% 25%, rgba(0,188,212,.12), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg));
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.container{width:var(--max); margin:0 auto; padding:18px}
.spacer{height:18px}

.topbar{
  position:sticky; top:0; z-index:30;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  border-bottom:1px solid var(--border);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
}

.brand{
  display:flex; align-items:center; gap:12px;
  min-width:180px;
}
.brand img{
  width:34px; height:34px; border-radius:10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.brand .title{
  display:flex; flex-direction:column; line-height:1.1;
}
.brand .title strong{font-size:14px; letter-spacing:.4px}
.brand .title span{font-size:12px; color:var(--muted)}

.navlinks{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  justify-content:center;
}
.pill{
  padding:9px 12px;
  border:1px solid var(--border);
  background:var(--panel2);
  border-radius:999px;
  font-size:13px;
  transition: .15s ease;
}
.pill:hover{transform: translateY(-1px); border-color: color-mix(in srgb, var(--accent) 45%, var(--border))}
.pill.active{
  border-color: color-mix(in srgb, var(--accent) 55%, var(--border));
  box-shadow: 0 0 0 3px rgba(0,229,255,.12);
}

.actions{
  display:flex; align-items:center; gap:10px;
  min-width:220px;
  justify-content:flex-end;
}
.btn{
  border:1px solid var(--border);
  background:var(--panel);
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
  font-size:13px;
  transition:.15s ease;
  display:inline-flex; align-items:center; gap:8px;
}
.btn:hover{transform: translateY(-1px); border-color: color-mix(in srgb, var(--accent) 45%, var(--border))}
.badge{
  min-width:20px; height:20px;
  border-radius:999px;
  display:inline-grid; place-items:center;
  padding:0 7px;
  background: color-mix(in srgb, var(--accent) 25%, transparent);
  border:1px solid color-mix(in srgb, var(--accent) 45%, var(--border));
  font-size:12px;
}

.hero{
  padding:34px 0 10px;
}
.heroCard{
  border:1px solid var(--border);
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  border-radius: calc(var(--r) + 6px);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroInner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  padding:22px;
}
@media (max-width: 900px){
  .heroInner{grid-template-columns:1fr}
  .actions{min-width:auto}
  .brand{min-width:auto}
}

.kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-size:12px; color:var(--muted);
  border:1px solid var(--border);
  background:var(--panel2);
  padding:7px 10px;
  border-radius:999px;
}
.dot{
  width:8px; height:8px; border-radius:99px;
  background:var(--accent);
  box-shadow:0 0 18px rgba(0,229,255,.55);
}

h1{
  margin:14px 0 10px;
  font-size:38px;
  letter-spacing:-.6px;
}
.sub{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
}

.ctaRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.ctaPrimary{
  background: linear-gradient(90deg, rgba(0,229,255,.22), rgba(0,188,212,.12));
  border-color: color-mix(in srgb, var(--accent) 55%, var(--border));
}
.ctaPrimary:hover{box-shadow:0 0 0 4px rgba(0,229,255,.12)}
.ctaGhost{background:var(--panel2)}

.sideBox{
  border:1px solid var(--border);
  background:var(--panel2);
  border-radius: var(--r);
  padding:16px;
  height:100%;
}
.sideBox h3{margin:0 0 10px; font-size:14px}
.list{
  display:grid; gap:10px; margin:0; padding:0; list-style:none;
}
.li{
  display:flex; gap:10px; align-items:flex-start;
  padding:10px;
  border:1px solid var(--border);
  border-radius:14px;
  background:var(--panel);
}
.li b{font-size:13px}
.li span{display:block; font-size:12px; color:var(--muted); margin-top:2px}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 980px){.grid{grid-template-columns: repeat(2, 1fr)}}
@media (max-width: 640px){.grid{grid-template-columns: 1fr}}

.card{
  border:1px solid var(--border);
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  border-radius: var(--r);
  box-shadow: 0 14px 60px rgba(0,0,0,.18);
  overflow:hidden;
}
.card .p{padding:14px}
.card h2{margin:0 0 6px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:13px; line-height:1.55}
.card .row{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; margin-top:12px;
}
.price{
  font-weight:700;
  border:1px solid var(--border);
  background:var(--panel2);
  border-radius:999px;
  padding:7px 10px;
  font-size:13px;
}

.sectionTitle{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:12px; margin:26px 0 12px;
}
.sectionTitle h2{margin:0; font-size:18px}
.sectionTitle span{color:var(--muted); font-size:13px}

.footer{
  margin-top:34px;
  border-top:1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 70%, transparent);
}
.footer .inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; flex-wrap:wrap;
  padding:16px 0;
  color:var(--muted);
  font-size:13px;
}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}

.notice{
  border:1px dashed color-mix(in srgb, var(--accent) 40%, var(--border));
  background: color-mix(in srgb, var(--accent) 10%, var(--panel2));
  border-radius: var(--r);
  padding:14px;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 10px;
}
.table th{
  text-align:left;
  color:var(--muted);
  font-weight:600;
  font-size:12px;
  padding:0 10px 6px;
}
.table td{
  padding:12px 10px;
  background:var(--panel);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.table tr td:first-child{
  border-left:1px solid var(--border);
  border-top-left-radius:14px;
  border-bottom-left-radius:14px;
}
.table tr td:last-child{
  border-right:1px solid var(--border);
  border-top-right-radius:14px;
  border-bottom-right-radius:14px;
}
.right{text-align:right}

.small{font-size:12px; color:var(--muted)}
hr.sep{border:none; border-top:1px solid var(--border); margin:16px 0}

/* ===== Dark Select Fix (Customize Pages) ===== */
select.btn,
.btn select{
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  outline: none;

  /* try to reduce native styling */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* keep your padding/shape */
  border-radius: var(--r2);
}

/* dropdown list items */
select.btn option{
  background: #0b1220;  /* dark dropdown */
  color: rgba(255,255,255,.92);
}

/* focus ring */
select.btn:focus{
  border-color: rgba(0, 255, 255, .55);
  box-shadow: 0 0 0 3px rgba(0, 255, 255, .15);
}

/* Light Theme (optional) */
html[data-theme="light"] select.btn{
  background: #ffffff;
  color: #111;
  border-color: rgba(0,0,0,.15);
}
html[data-theme="light"] select.btn option{
  background: #ffffff;
  color: #111;
}