:root{
  --bg:#0b0b0c;
  --panel:#111114;
  --panel2:#0f0f12;
  --text:#f2f2f2;
  --muted:#b7b7bd;
  --line:rgba(255,255,255,.12);
  --accent:#ffffff;
  --shadow: 0 20px 70px rgba(0,0,0,.45);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 20% 0%, rgba(255,255,255,.06), transparent 55%),
              radial-gradient(900px 600px at 90% 10%, rgba(255,255,255,.04), transparent 60%),
              var(--bg);
  color:var(--text);
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1100px, 92%); margin:0 auto; }

/* NAV */
.nav{
  position:sticky; top:0; z-index:40;
  backdrop-filter: blur(10px);
  background: rgba(11,11,12,.75);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  font-weight:700; letter-spacing:.4px;
}
.brand span{ font-weight:300; opacity:.92; margin-left:2px; }
.links{ display:flex; gap:18px; align-items:center; }
.links a{ color:var(--muted); font-weight:500; font-size:14px; }
.links a:hover{ color:var(--text); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background: transparent;
  color:var(--text);
  font-weight:600;
  font-size:14px;
}
.btn:hover{ border-color: rgba(255,255,255,.28); }
.btn.primary{
  background: var(--accent);
  color:#0b0b0c;
  border-color: transparent;
}
.btn.primary:hover{ filter: brightness(.95); }
.btn.ghost{ color:var(--muted); }

/* HERO */
.hero{ padding:56px 0 10px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .9fr;
  gap:24px;
  align-items:start;
}
.kicker{
  color:var(--muted);
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
  margin:0 0 12px;
}
h1{
  font-size: clamp(36px, 4.4vw, 56px);
  line-height:1.02;
  margin:0 0 14px;
}
.lead{
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  max-width:52ch;
  margin:0 0 18px;
}
.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; margin:14px 0 22px; }

.hero-badges{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.badge{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:14px;
}
.badge-title{ font-weight:700; font-size:13px; margin-bottom:6px; }
.badge-text{ color:var(--muted); font-size:13px; line-height:1.35; }

/* CARD */
.card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-top{
  display:flex; gap:8px; padding:14px;
  border-bottom:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.dot{ width:10px; height:10px; border-radius:999px; background: rgba(255,255,255,.20); }
.card-body{ padding:18px; }
.stat{ padding:12px 0; border-bottom:1px solid var(--line); }
.stat:last-of-type{ border-bottom:none; }
.stat-num{ font-weight:800; font-size:18px; }
.stat-label{ color:var(--muted); font-size:13px; margin-top:4px; }
.note{ margin:14px 0 0; color:rgba(255,255,255,.55); font-size:12px; line-height:1.5; }

/* SECTIONS */
.section{ padding:58px 0; }
.section.alt{ background: rgba(255,255,255,.03); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section-head{ margin-bottom:18px; }
.section-head h2{ margin:0 0 8px; font-size:26px; }
.section-head p{ margin:0; color:var(--muted); line-height:1.6; }

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.work{
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,.02);
  transition: transform .18s ease, border-color .18s ease;
}
.work:hover{ transform: translateY(-2px); border-color: rgba(255,255,255,.26); }
.thumb{
  height:160px;
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.45);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.01));
}
.work-meta{ padding:14px; }
.work-title{ font-weight:700; }
.work-tag{ color:var(--muted); font-size:13px; margin-top:6px; }

/* SERVICES */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.svc{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  background: rgba(255,255,255,.02);
}
.svc h3{ margin:0 0 8px; }
.svc p{ margin:0 0 12px; color:var(--muted); line-height:1.6; }
.svc ul{ margin:0; padding-left:18px; color:rgba(255,255,255,.78); line-height:1.65; font-size:14px; }

/* ABOUT */
.about{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:18px;
  align-items:start;
}
.about p{ color:var(--muted); line-height:1.7; }
.about-box{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  padding:16px;
}
.about-item{ padding:12px 0; border-bottom:1px solid var(--line); }
.about-item:last-child{ border-bottom:none; }
.label{ color:rgba(255,255,255,.55); font-size:12px; letter-spacing:.12em; text-transform:uppercase; }
.value{ margin-top:6px; font-weight:700; }

/* CONTACT */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.contact-card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  padding:16px;
}
.contact-card h3{ margin:0 0 8px; }
.muted{ color:var(--muted); }
.fine{ color:rgba(255,255,255,.55); font-size:12px; line-height:1.6; margin:12px 0 0; }
.contact-card ul{ margin:10px 0 0; padding-left:18px; line-height:1.7; color:rgba(255,255,255,.78); }

/* FOOTER */
.footer{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-top:26px;
  padding-top:16px;
  border-top:1px solid var(--line);
  color:rgba(255,255,255,.65);
  font-size:13px;
}

/* RESPONSIVE */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns:1fr; }
  .cards{ grid-template-columns:1fr; }
  .about{ grid-template-columns:1fr; }
  .contact{ grid-template-columns:1fr; }
  .links{ gap:12px; }
}
