
:root{
  --bg:#070b1f;
  --bg2:#0b1131;
  --card:#0d1436cc;
  --text:#e8edf7;
  --muted:#b9c2d6;
  --muted2:#95a2c3;
  --brandGold:#f0b43a;
  --brandTeal:#2fc7c0;
  --brandBlue:#66a7ff;
  --brandGreen:#4ab26b;
  --border:rgba(255,255,255,.08);
  --shadow:0 18px 50px rgba(0,0,0,.35);
  --radius:18px;
  --max:1120px;
  --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 800px at 70% 15%, rgba(102,167,255,.18), transparent 55%),
              radial-gradient(900px 600px at 15% 30%, rgba(47,199,192,.14), transparent 60%),
              linear-gradient(180deg, var(--bg), var(--bg2));
}
a{color:inherit;text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 22px}
/* Top nav */
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(120%) blur(10px);
  background:rgba(7,11,31,.65);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0;
}
.brand{
  display:flex; gap:12px; align-items:center; font-weight:700; letter-spacing:.2px;
}
.brand img{height:100px; width:auto}
.brand span{font-size:18px}
.brand .accent{color:var(--brandBlue)}
.nav-links{display:flex; gap:18px; align-items:center; color:var(--muted)}
.nav-links a{padding:10px 10px; border-radius:10px}
.nav-links a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:999px; border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06); color:var(--text);
  box-shadow:none; cursor:pointer; font-weight:600;
}
.btn:hover{background:rgba(255,255,255,.10)}
.btn-primary{
  background:linear-gradient(180deg, #f7c866, #eaa42e);
  color:#111827;
  border:0;
}
.btn-primary:hover{filter:brightness(1.03)}
/* Hero */
.hero{
  padding:56px 0 44px;
  position:relative;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:34px;
  align-items:center;
}
.kicker{color:var(--brandGold); font-weight:700; letter-spacing:.2px; margin:0 0 10px}
.h1{
  font-size:52px; line-height:1.05; margin:0 0 10px; letter-spacing:-.6px;
}
.h1 .highlight{color:var(--brandGold)}
.subh{
  font-size:18px; line-height:1.6; color:var(--muted); margin:0 0 20px; max-width:56ch;
}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 0}
.hero-card{
  background: radial-gradient(600px 260px at 30% 20%, rgba(240,180,58,.12), transparent 55%),
              radial-gradient(540px 340px at 70% 30%, rgba(47,199,192,.12), transparent 60%),
              rgba(255,255,255,.03);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:26px;
}
.hero-art{
  border-radius:24px;
  border:1px solid var(--border);
  background:
    radial-gradient(420px 280px at 35% 30%, rgba(240,180,58,.16), transparent 55%),
    radial-gradient(520px 320px at 65% 55%, rgba(102,167,255,.18), transparent 60%),
    rgba(255,255,255,.03);
  box-shadow:var(--shadow);
  padding:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:360px;
}
.hero-art img{max-width:100%; height:auto; border-radius:14px}
/* Sections */
.section{padding:46px 0}
.section.light{
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-title{font-size:28px; margin:0 0 10px; letter-spacing:-.3px}
.section-desc{color:var(--muted); margin:0 0 24px; line-height:1.65}
.grid-3{display:grid; grid-template-columns:repeat(3, 1fr); gap:18px}
.grid-2{display:grid; grid-template-columns:repeat(2, 1fr); gap:18px}
.card{
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 10px 28px rgba(0,0,0,.25);
}
.card h3{margin:10px 0 8px}
.card p{margin:0 0 12px; color:var(--muted); line-height:1.6}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 10px; border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.02);
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}
.icon{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
}
.icon svg{width:18px; height:18px}
/* Work tiles */
.tile{
  display:flex; gap:14px; align-items:flex-start;
}
.tile .thumb{
  width:58px; height:58px; border-radius:16px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  display:grid; place-items:center;
  flex:0 0 auto;
}
.tile h3{margin:2px 0 6px}
.tile p{margin:0; color:var(--muted); line-height:1.6}
/* Testimonial */
.quote{
  padding:22px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}
.quote p{margin:0 0 12px; color:var(--text); line-height:1.7}
.quote .who{color:var(--muted2); font-weight:600}
/* Footer */
.footer{
  padding:34px 0;
  border-top:1px solid var(--border);
  background:rgba(0,0,0,.10);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:18px;
  align-items:flex-start;
}
.small{color:var(--muted2); font-size:13px; line-height:1.6}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}
/* Page header */
.page-head{padding:42px 0 18px}
.breadcrumb{color:var(--muted2); font-size:13px; margin:0 0 10px}
.h2{font-size:36px; margin:0 0 10px; letter-spacing:-.4px}
/* Lists */
.ul{margin:10px 0 0; padding-left:18px; color:var(--muted); line-height:1.8}
/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .nav-links{display:none}
  .h1{font-size:42px}
}
