:root{
  --bg:#0a0d11;
  --bg-2:#0e131a;
  --panel:#121923;
  --panel-2:#17202b;
  --line:rgba(255,255,255,.08);
  --text:#eef3f8;
  --muted:#a8b4c1;
  --gold:#d7a54b;
  --gold-soft:rgba(215,165,75,.15);
  --blue:#74b9ff;
  --blue-soft:rgba(116,185,255,.16);
  --max:1120px;
  --radius:24px;
  --shadow:0 30px 80px rgba(0,0,0,.34);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  line-height:1.6;
  background:
    radial-gradient(circle at top right, rgba(116,185,255,.12), transparent 28%),
    radial-gradient(circle at top left, rgba(215,165,75,.08), transparent 22%),
    linear-gradient(180deg,#080b0f 0%,#0a0d11 100%);
}
a{color:inherit;text-decoration:none}
.shell{max-width:var(--max);margin:0 auto;padding:0 20px}

.site-header{
  border-bottom:1px solid rgba(255,255,255,.05);
  background:linear-gradient(180deg,rgba(255,255,255,.01),rgba(255,255,255,0));
}
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  letter-spacing:.01em;
}
.brand-mark{
  width:14px;
  height:14px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold),#f0cf88);
  box-shadow:0 0 24px rgba(215,165,75,.35);
}
.nav{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.nav a{
  color:var(--muted);
  font-size:.95rem;
}
.nav a:hover{color:var(--text)}

.hero{
  padding:72px 20px 46px;
  display:grid;
  grid-template-columns:1.2fr .85fr;
  gap:24px;
}
.hero-copy,.hero-panel,.card{
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-copy{padding:34px}
.eyebrow,.section-eyebrow{
  color:var(--gold);
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.13em;
}
h1{
  margin:14px 0 14px;
  font-size:clamp(2.4rem,5vw,4.5rem);
  line-height:1.04;
  letter-spacing:-.04em;
}
.lead{
  margin:0 0 24px;
  color:var(--muted);
  font-size:1.08rem;
  max-width:60ch;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:14px;
  border:1px solid var(--line);
  font-weight:600;
}
.button.primary{
  color:#121212;
  border-color:transparent;
  background:linear-gradient(135deg,var(--gold),#efc976);
}
.button.secondary{
  background:rgba(255,255,255,.03);
}
.hero-note{
  margin-top:18px;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(116,185,255,.08);
  border:1px solid rgba(116,185,255,.18);
  color:#dbe9f7;
  font-size:.95rem;
}
.hero-panel{
  padding:26px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.panel-block{
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.panel-block:last-child{border-bottom:none;padding-bottom:0}
.panel-label{
  color:var(--muted);
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.panel-block strong{
  display:block;
  margin-top:8px;
  font-size:1.08rem;
}

.section{padding:22px 0 8px}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:18px;
}
.section-head h2{
  margin:6px 0 0;
  font-size:1.65rem;
  letter-spacing:-.03em;
}
.section-head p{
  margin:0;
  color:var(--muted);
  max-width:36rem;
}
.project-grid,.service-grid,.about-grid{
  display:grid;
  gap:18px;
}
.project-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.service-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.about-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.card{
  padding:24px;
}
.card h2,.card h3{
  margin:6px 0 12px;
  letter-spacing:-.02em;
}
.card p{
  margin:0;
  color:var(--muted);
}
.project-card{position:relative;overflow:hidden}
.card-accent{
  width:100%;
  height:3px;
  position:absolute;
  inset:0 0 auto 0;
}
.card-accent.gold{background:linear-gradient(90deg,var(--gold),transparent)}
.card-accent.blue{background:linear-gradient(90deg,var(--blue),transparent)}
.tag-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}
.tag{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:#d2dae3;
  font-size:.82rem;
}
.link-row{
  margin-top:18px;
}
.link-row a,.clean-list a{
  color:var(--blue);
}
.clean-list{
  margin:14px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.clean-list li{margin:7px 0}
.final-note{padding-bottom:54px}

@media (max-width: 940px){
  .hero,.project-grid,.service-grid,.about-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width: 640px){
  .shell{padding:0 16px}
  .topbar{padding:14px 16px}
  .hero{padding:48px 16px 28px}
  .hero-copy,.hero-panel,.card{border-radius:20px}
  .nav{gap:14px}
}
