:root{
  --bg:#05070a;
  --bg2:#0b1017;
  --card:#111723;
  --text:#f5f5f7;
  --muted:#a0a6b4;
  --accent:#e0b45a;
  --border:rgba(255,255,255,0.08);
  --shadow:0 18px 50px rgba(0,0,0,0.55);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background: radial-gradient(circle at top, #161b26 0, var(--bg) 55%, #000 100%);
  color:var(--text);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}

a{color:inherit}
.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(5,7,10,0.85);
  border-bottom:1px solid rgba(255,255,255,0.05);
}
.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}
.brand-mark{
  width:36px;height:36px;
  border-radius:10px;
  border:1px solid rgba(224,180,90,0.7);
  display:flex;align-items:center;justify-content:center;
  font-weight:700;
  letter-spacing:0.12em;
  font-size:13px;
  box-shadow: 0 0 22px rgba(224,180,90,0.35);
}
.brand-title{
  font-size:13px;
  letter-spacing:0.18em;
  text-transform:uppercase;
}
.brand-subtitle{
  color:var(--muted);
  font-size:12px;
  margin-top:2px;
}
.nav{
  display:flex;
  gap:16px;
  font-size:13px;
  color:var(--muted);
  opacity:0.9;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  text-decoration:none;
  padding:6px 8px;
  border-radius:8px;
}
.nav a:hover{
  background: rgba(224,180,90,0.10);
  color:var(--text);
}

.hero{
  padding:44px 0;
  border-bottom:1px solid rgba(255,255,255,0.05);
}
.hero-grid{
  display:grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap:28px;
  align-items:start;
}
.pill{
  display:inline-block;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.14em;
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(224,180,90,0.35);
  background: radial-gradient(circle at top left, rgba(224,180,90,0.20), transparent 60%);
  color:var(--accent);
  margin-bottom:14px;
}
h1{
  font-size: clamp(30px, 4vw, 44px);
  line-height:1.1;
  margin:0 0 14px;
}
.lead{
  color:var(--muted);
  font-size:15px;
  max-width:62ch;
  margin:0 0 18px;
}
.cta-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:999px;
  border:1px solid rgba(224,180,90,0.55);
  background: rgba(8,11,17,0.9);
  color:var(--accent);
  text-decoration:none;
  font-size:14px;
  cursor:pointer;
  transition:0.18s ease;
}
.btn:hover{ background: rgba(224,180,90,0.12); }
.btn-ghost{
  border:1px solid var(--border);
  color:var(--text);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.06); }

.fineprint{
  margin-top:14px;
  color:var(--muted);
  font-size:12px;
}

.section{
  padding:38px 0;
  border-bottom:1px solid rgba(255,255,255,0.05);
}
.section h2{
  margin:0 0 18px;
  font-size:16px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color: rgba(245,245,247,0.92);
}

.card{
  background: radial-gradient(circle at top left, rgba(255,255,255,0.04), rgba(8,11,17,0.96));
  border:1px solid rgba(255,255,255,0.06);
  border-radius:14px;
  padding:18px;
  box-shadow: var(--shadow);
}
.card-title{
  margin:0 0 10px;
  font-size:13px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  opacity:0.92;
}
.list{
  margin:0;
  padding-left:18px;
  color: rgba(245,245,247,0.92);
}
.list li{ margin:8px 0; }
.muted{ color:var(--muted); }
.small{ font-size:12px; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}

.divider{
  height:1px;
  background: rgba(255,255,255,0.08);
  margin:14px 0;
}

.portfolio-item{
  display:flex;
  gap:16px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}
.portfolio-left{ min-width:240px; }
.portfolio-title{ margin:6px 0 6px; font-size:18px; }
.tag{
  display:inline-block;
  font-size:11px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color: var(--accent);
  border:1px solid rgba(224,180,90,0.35);
  border-radius:999px;
  padding:4px 10px;
  background: rgba(224,180,90,0.08);
}

label{
  display:block;
  font-size:13px;
  color: rgba(245,245,247,0.92);
  margin-top:6px;
}
input, textarea{
  width:100%;
  margin-top:8px;
  margin-bottom:12px;
  padding:12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.15);
  background:#121721;
  color:var(--text);
  font-size:14px;
}
textarea{ resize:vertical; min-height:120px; }

.status{
  margin-top:10px;
  font-size:13px;
  color:var(--muted);
}

.footer{
  padding:22px 0 40px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  font-size:12px;
  color: var(--muted);
}

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .brand{ min-width:unset; }
}
