:root {
  --bg: #06101f;
  --bg-soft: #0b1728;
  --card: rgba(255, 255, 255, 0.07);
  --text: #f7f8fb;
  --muted: #aab4c2;
  --gold: #f4a621;
  --blue: #27a7ff;
  --line: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px min(40px, 5vw);
  background: rgba(6, 16, 31, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.logo {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid rgba(244, 166, 33, 0.55);
  border-radius: 12px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: -0.04em;
}
nav { display: flex; gap: 24px; color: var(--muted); font-size: 14px; }
nav a:hover { color: var(--text); }

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 86px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(39, 167, 255, 0.22), transparent 30%),
    radial-gradient(circle at 82% 72%, rgba(244, 166, 33, 0.13), transparent 34%),
    linear-gradient(135deg, #06101f 0%, #0b1728 52%, #081423 100%);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, black, transparent 80%);
}
.hero::after {
  content: "";
  position: absolute; inset: auto -15% -30% -15%; height: 55%;
  background: radial-gradient(circle at 50% 0%, rgba(39,167,255,0.18), transparent 58%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}
.eyebrow, .section-label {
  display: inline-flex;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 13px;
}
h1 {
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.95;
  margin: 18px 0 16px;
  letter-spacing: -0.07em;
}
.subtitle {
  color: #eaf2ff;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 600;
  margin: 0 0 20px;
}
.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 20px;
  margin-bottom: 34px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--line);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--gold); color: #07101d; border-color: var(--gold); }
.btn.secondary { background: rgba(255,255,255,0.07); }
.profile-card {
  max-width: 390px;
  justify-self: end;
  border-radius: 50%;
  padding: 10px;
  background: linear-gradient(145deg, rgba(244,166,33,0.55), rgba(39,167,255,0.25));
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}
.profile-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.featured-cover {
  padding: 0 0 88px;
  margin-top: -18px;
}
.featured-cover img {
  width: 100%;
  display: block;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0,0,0,.42);
}

.section { padding: 96px 0; }
.two-col { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 70px; align-items: start; }
h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin: 14px 0 0;
}
.text-block p { color: var(--muted); font-size: 18px; margin: 0 0 20px; }
.dark-panel { background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)); border-block: 1px solid var(--line); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}
.card h3 { margin: 0 0 10px; font-size: 20px; }
.card p { margin: 0; color: var(--muted); }
.work-list { display: grid; gap: 16px; }
.work-list div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.work-list strong { display: block; font-size: 19px; margin-bottom: 4px; }
.work-list span { color: var(--muted); }
.contact-section { padding-top: 0; }
.contact-box {
  background:
    radial-gradient(circle at 0% 0%, rgba(244,166,33,0.16), transparent 35%),
    radial-gradient(circle at 100% 100%, rgba(39,167,255,0.18), transparent 40%),
    var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.contact-box p { color: var(--muted); max-width: 560px; }
.contact-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.contact-links a {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line);
  font-weight: 700;
}
.contact-links a:hover { border-color: rgba(244,166,33,0.65); }
footer { color: var(--muted); text-align: center; padding: 28px; border-top: 1px solid var(--line); }

@media (max-width: 860px) {
  nav { display: none; }
  .hero { min-height: auto; padding: 130px 0 70px; }
  .hero-grid, .two-col { grid-template-columns: 1fr; gap: 34px; }
  .profile-card { max-width: 320px; justify-self: start; }
  .cards { grid-template-columns: 1fr; }
  .contact-box { flex-direction: column; align-items: flex-start; }
  .contact-links { justify-content: flex-start; }
  .featured-cover { padding-bottom: 64px; }
}
