:root {
  --bg: #0b0b0d;
  --bg-alt: #131316;
  --card: #17171b;
  --border: #26262b;
  --text: #f2f1ed;
  --text-dim: #a3a3ac;
  --accent: #d7ff3f;
  --accent-dim: #9fb832;
  --radius: 14px;
  --max: 1100px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 20% 10%, rgba(215,255,63,0.06), transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(215,255,63,0.04), transparent 45%);
}

a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  backdrop-filter: blur(12px);
  background: rgba(11,11,13,0.75);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.92rem;
  color: var(--text-dim);
}

.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* HERO */
.hero {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

.hero-inner { max-width: 620px; }

.hero-photo {
  flex-shrink: 0;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  outline: 1px solid var(--accent);
  outline-offset: 8px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.02;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 2.25rem;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }

.btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  display: inline-block;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #0b0b0d;
}
.btn-primary:hover { background: #e4ff70; }

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.stat { display: flex; flex-direction: column; gap: 0.4rem; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* SECTIONS */
.section {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-head { max-width: 560px; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }

/* WORK */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.work-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color .2s ease, transform .2s ease;
}
.work-card:hover { border-color: var(--accent-dim); transform: translateY(-3px); }

.work-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.work-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
}

.work-date {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.work-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.work-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.work-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.work-list li {
  font-size: 0.88rem;
  color: var(--text-dim);
  padding-left: 1.1rem;
  position: relative;
}
.work-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ABOUT */
.section-about { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text h2 { font-size: clamp(1.7rem, 4vw, 2.2rem); margin-bottom: 1.25rem; }
.about-text p { color: var(--text-dim); margin-bottom: 1rem; font-size: 1.02rem; }
.about-text em { color: var(--accent); font-style: normal; }

.about-skills h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  color: var(--text-dim);
}

.chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* LEADERSHIP */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.leadership-card {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}

.leadership-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.leadership-card p { color: var(--text-dim); font-size: 0.95rem; }

/* CONTACT */
.contact { text-align: center; }
.contact h2 { font-size: clamp(1.9rem, 5vw, 2.8rem); margin: 1rem 0 2.5rem; max-width: 640px; margin-left: auto; margin-right: auto; }

.contact-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
  transition: border-color .2s ease, color .2s ease;
}
.contact-link:hover { color: var(--accent); border-color: var(--accent); }

.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.5rem 2rem;
  color: var(--text-dim);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

/* RESPONSIVE */
@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 4rem 1.25rem 3rem; }
  .hero-top { flex-direction: column-reverse; align-items: center; text-align: center; gap: 1.25rem; }
  .hero-inner { max-width: 100%; }
  .hero-photo { width: 96px; height: 96px; outline-offset: 4px; }
  .hero-cta { justify-content: center; }
  .hero-stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .section { padding: 3.5rem 1.25rem; }
  .work-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .contact-links { flex-direction: column; gap: 1.25rem; }
}

@media (max-width: 780px) {
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1.25rem;
  }
}
