:root{
  /* default to light; JS will set data-theme */
  --bg: #ffffff;
  --panel: #f6f6f7;
  --ink: #111214;
  --muted: rgba(17,18,20,.70);
  --rule: rgba(17,18,20,.12);
  --btn: #111214;
  --btn-ink: #ffffff;
  --btn-ghost: transparent;
  --shadow: 0 18px 60px rgba(0,0,0,.10);
  --radius: 18px;
}

:root[data-theme="dark"]{
  --bg: #0b0c0f;
  --panel: #11131a;
  --ink: #f5f6f8;
  --muted: rgba(245,246,248,.72);
  --rule: rgba(245,246,248,.12);
  --btn: rgba(245,246,248,.12);
  --btn-ink: #f5f6f8;
  --btn-ghost: transparent;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
}

*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  background: var(--bg); /* <-- gradients removed */
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a{color:var(--ink); text-decoration:none;}
a:hover{opacity:.9; text-decoration:underline;}
a{color:var(--ink); text-decoration:none;}
a:hover{opacity:.9; text-decoration:underline;}

.wrap{max-width:980px; margin:0 auto; padding:28px 18px;}
.header{
  display:flex; align-items:center; justify-content:space-between;
  position:sticky; top:0; backdrop-filter: blur(10px);
  background: rgba(11,12,15,.55);
  border-bottom:1px solid var(--rule);
  z-index:10;
}

.logo{font-weight:700; letter-spacing:.2px;}
.tag{font-size:14px; color:var(--muted); margin-top:4px;}
.nav{display:flex; gap:16px; align-items:center;}
.nav a{color:var(--muted);}
.nav a:hover{color:var(--ink); text-decoration:none;}

.hero{padding-top:26px; padding-bottom:8px;}
h1{font-size:44px; line-height:1.05; margin:14px 0 10px;}
.lede{max-width:720px; color:var(--muted); font-size:18px; line-height:1.55; margin:0 0 18px;}

.section{padding:44px 0 8px; border-top:1px solid var(--rule); margin-top:36px;}
h2{font-size:28px; margin:0 0 10px;}
.sub{color:var(--muted); margin:0 0 18px; max-width:760px; line-height:1.55;}

.grid4{display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:18px;}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:10px;}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid var(--rule);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.k{font-weight:650; margin-bottom:6px;}
.v{color:var(--muted); line-height:1.45;}

.split{display:grid; grid-template-columns:1.2fr .8fr; gap:14px;}
.panel{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid var(--rule);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.panel h3{margin:0 0 10px; font-size:18px;}
.panel ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.7;}
.price{font-size:40px; font-weight:800; margin:6px 0 6px;}
.fine{font-size:13px; color:var(--muted); line-height:1.5;}
.muted{color:var(--muted);}

.cta{display:flex; gap:10px; margin-top:14px; flex-wrap:wrap;}
.btn{
  display:inline-block;
  padding:11px 14px;
  border-radius: 999px;
  border:1px solid rgba(245,246,248,.22);
  background: rgba(245,246,248,.10);
  color: var(--ink);
  text-decoration:none;
}
.btn:hover{background: rgba(245,246,248,.14); text-decoration:none;}
.btn.ghost{
  background: transparent;
  border:1px solid rgba(245,246,248,.18);
}
.btn.small{padding:9px 12px; font-size:14px;}

.contact{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
.intake{
  border:1px dashed rgba(245,246,248,.18);
  border-radius: var(--radius);
  padding:14px;
  color: var(--muted);
  line-height:1.5;
}

.footer{
  margin-top:44px;
  padding:18px 0 8px;
  border-top:1px solid var(--rule);
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
  color:var(--muted);
}

@media (max-width: 860px){
  h1{font-size:34px;}
  .grid4{grid-template-columns:repeat(2,1fr);}
  .split{grid-template-columns:1fr;}
  .grid3{grid-template-columns:1fr;}
  .contact{grid-template-columns:1fr;}
  .nav{gap:12px;}
}
.btn{
  display:inline-block;
  padding:11px 14px;
  border-radius: 999px;
  border:1px solid var(--rule);
  background: var(--btn);
  color: var(--btn-ink);
  text-decoration:none;
}
.btn:hover{opacity:.95; text-decoration:none;}

.btn.ghost{
  background: var(--btn-ghost);
  color: var(--ink);
}

.card, .panel{
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
