:root{
  --bg1:#0B1220;
  --bg2:#111827;
  --card:#0F172A;
  --text:#E5E7EB;
  --muted:#94A3B8;
  --border:rgba(148,163,184,.18);
  --accent:#2B6CB0;
  --accent2:#38BDF8;
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --radius: 16px;
  --max: 1080px;
  --pad: 22px;
  --font: 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(--font);
  color:var(--text);
  background: radial-gradient(1200px 500px at 50% 0%, rgba(56,189,248,.22), transparent 65%),
              linear-gradient(180deg, var(--bg1), var(--bg2));
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.9}

.wrap{max-width:var(--max); margin:0 auto; padding:0 var(--pad)}
.header{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:24px; padding-bottom:18px;
}
.brand{display:flex; align-items:center; gap:14px}
.logo{
  width:58px; height:58px; object-fit:contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}
.brand-name{font-weight:700; letter-spacing:.2px}
.brand-tag{font-size:13px; color:var(--muted); margin-top:2px}

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

.hero{padding:26px 0 12px}
h1{
  font-size: clamp(28px, 3.6vw, 44px);
  line-height:1.1;
  margin: 12px 0 12px;
}
.lead{font-size:17px; color:rgba(229,231,235,.88); max-width:740px; line-height:1.6}

.cta{display:flex; flex-wrap:wrap; gap:12px; margin:18px 0 10px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  font-weight:600;
}
.btn.primary{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-color: transparent;
  color:#06101F;
}
.btn.ghost{background:transparent}

.note{
  margin-top:14px;
  display:flex; align-items:center; gap:10px;
  color:var(--muted);
  font-size:13px;
}
.dot{
  width:9px; height:9px; border-radius:50%;
  background: var(--accent2);
  box-shadow: 0 0 18px rgba(56,189,248,.6);
}

.section{padding:34px 0 6px}
h2{margin:0 0 14px; font-size:20px; letter-spacing:.2px}
.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.grid.two{grid-template-columns: repeat(2, 1fr)}
.card{
  background: rgba(15,23,42,.72);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 8px; font-size:15px}
.card p{margin:0; color:rgba(229,231,235,.82); line-height:1.55; font-size:14px}

.small{color:var(--muted); font-size:12.5px; margin-top:12px}

.contact .contact-box{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  background: rgba(255,255,255,.03);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
}
.label{font-size:12px; color:var(--muted)}
.value{margin-top:6px; font-weight:650}
.value a{color: var(--accent2)}

.footer{
  margin-top:36px;
  padding:18px 0 26px;
  display:flex; justify-content:space-between; align-items:center;
  color:var(--muted);
  font-size:13px;
  border-top:1px solid var(--border);
}

@media (max-width: 980px){
  .grid{grid-template-columns: repeat(2, 1fr)}
}
@media (max-width: 640px){
  .header{flex-direction:column; align-items:flex-start; gap:10px}
  .nav{flex-wrap:wrap; gap:8px}
  .grid, .grid.two{grid-template-columns: 1fr}
  .contact .contact-box{grid-template-columns: 1fr}
}


.list{
  margin:10px 0 8px 18px;
  padding:0;
}
.list li{
  margin-bottom:6px;
  font-size:14px;
  color:rgba(229,231,235,.85);
}


/* Rootline extras */
.palette{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:12px;
}
.swatch{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
}
.chip{
  width:18px; height:18px;
  border-radius:6px;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}
.meta .name{font-weight:650; font-size:13px}
.meta .code{font-size:12px; color:var(--muted); margin-top:1px}

.variants{
  width:100%;
  height:auto;
  display:block;
  border-radius: 12px;
}

.card.highlight{
  position:relative;
  border-color: rgba(56,189,248,.35);
  background: linear-gradient(180deg, rgba(56,189,248,.10), rgba(15,23,42,.72));
}
.pill{
  position:absolute;
  top:12px; right:12px;
  font-size:11px;
  font-weight:700;
  padding:6px 10px;
  border-radius:999px;
  color:#06101F;
  background: linear-gradient(90deg, var(--accent2), rgba(56,189,248,.55));
}
