:root {
  --bg:#0b0b0c;
  --ink:#e7e7ea;
  --muted:#b6b8c3;
  --steel-400:#9aa0aa;
  --graphite-700:#2a2f36;
  --graphite-800:#1a1d22;
  --accent:linear-gradient(135deg,#f5f7fa,#9aa0aa,#d7dbe1);
  --shadow:0 10px 30px rgba(0,0,0,.45);
}

* { box-sizing:border-box; margin:0; padding:0; }

body {
  background:var(--bg);
  color:var(--ink);
  font-family: Inter, sans-serif;
  line-height:1.6;
}

.wrap {
  max-width:1200px;
  margin:auto;
  padding:24px;
}

/* HEADER */
header {
  position:sticky;
  top:0;
  background:rgba(11,11,11,0.85);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--graphite-700);
}
.nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.logo {
  display:flex;
  gap:12px;
  align-items:center;
}
.logo img {
  display:block;
  object-fit:contain;
}
.word .brand {
  background:var(--accent);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  font-family: Montserrat, sans-serif;
  font-weight:800;
}
.word .sub {
  color:var(--muted);
  font-size:0.9rem;
}

/* BUTTONS */
.btn {
  padding:10px 16px;
  border-radius:10px;
  border:1px solid var(--graphite-700);
  background:var(--graphite-800);
  color:var(--ink);
  transition:.2s;
}
.btn:hover { transform:translateY(-1px); box-shadow:var(--shadow); }
.btn.primary {
  background:var(--accent);
  border:0;
  color:#000;
  font-weight:700;
}

/* HERO */
.hero { padding:60px 0; }
h1 {
  font-size:clamp(2rem, 5vw, 3rem);
  font-family:Montserrat, sans-serif;
  line-height:1.2;
  margin-bottom:12px;
}
.lead { color:var(--muted); font-size:1.1rem; }
.bullets {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 18px;
  margin-top:16px;
}
.bullet { display:flex; gap:10px; align-items:center; }
.check {
  width:18px; height:18px;
  border-radius:5px;
  background:var(--accent);
}
.hero-card {
  border:1px solid var(--graphite-700);
  border-radius:12px;
  background:var(--graphite-800);
  padding:20px;
  box-shadow:var(--shadow);
}
.pill {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:6px 12px;
  border-radius:30px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.15);
  margin-bottom:14px;
}
.spark {
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent);
}

/* SECTIONS */
section { padding:50px 0; }
.kicker {
  font-size:.8rem;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--steel-400);
  margin-bottom:6px;
}
h2 {
  font-family:Montserrat, sans-serif;
  font-size:clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom:20px;
}

/* CARDS */
.cards {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}
.card {
  border:1px solid var(--graphite-700);
  border-radius:12px;
  background:var(--graphite-800);
  box-shadow:var(--shadow);
}
.thumb {
  padding:30px;
  background:#16191f;
  text-align:center;
  color:var(--muted);
  font-weight:600;
}
.card-body { padding:16px; }
.meta { color:var(--muted); font-size:0.95rem; }

/* FILTERS */
.filters {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:20px;
}
.filter {
  padding:6px 12px;
  border-radius:8px;
  border:1px solid var(--graphite-700);
  background:var(--graphite-800);
  cursor:pointer;
}
.filter.active,
.filter:hover {
  background:var(--accent);
  border:0;
  color:#000;
  font-weight:700;
}

/* PRICING */
.pricing {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:18px;
}
.price {
  border:1px solid var(--graphite-700);
  border-radius:14px;
  background:var(--graphite-800);
  padding:20px;
  position:relative;
  box-shadow:var(--shadow);
}
.price .tag {
  position:absolute;
  top:14px;
  right:14px;
  padding:4px 10px;
  background:var(--accent);
  color:#000;
  font-weight:700;
  border-radius:999px;
}
.price h3 {
  font-family:Montserrat, sans-serif;
  margin-bottom:6px;
}
.price .num {
  font-size:2rem;
  font-weight:800;
  background:var(--accent);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  margin-bottom:12px;
}
.list {
  list-style:none;
  padding:0;
  margin:0;
  color:var(--muted);
}
.list li { margin:8px 0; }

/* FORMS */
form input,
form select,
form textarea {
  width:100%;
  padding:12px;
  border-radius:10px;
  border:1px solid var(--graphite-700);
  background:var(--graphite-800);
  color:var(--ink);
  margin-top:6px;
  margin-bottom:12px;
}
form button { margin-top:6px; }

/* FOOTER */
footer {
  border-top:1px solid var(--graphite-700);
  padding:24px 0;
  color:var(--muted);
}
.foot {
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
}
