@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

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

:root {
  --bg: #0f1318;
  --surface: #181e27;
  --border: #2a3340;
  --accent: #4a9ebb;
  --accent-dim: #2d6a82;
  --text: #dde3ec;
  --muted: #7a8a9a;
  --faint: #3a4555;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s;
}

a:hover {
  color: var(--text);
}

/* ── Layout ── */

.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Nav ── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 19, 24, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-name {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--accent);
}

/* ── Hero ── */

.hero {
  padding: 6rem 0 4rem;
  border-bottom: 1px solid var(--border);
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-name {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

/* Signature stat line */
.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  max-width: 560px;
}

.hero-stat {
  flex: 1;
  min-width: 120px;
  padding: 1rem 1.25rem;
  border-right: 1px solid var(--border);
}

.hero-stat:last-child {
  border-right: none;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent);
  display: block;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 0.2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 3px;
  letter-spacing: 0.04em;
  transition: all 0.15s;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #0f1318;
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: #5cb8d8;
  border-color: #5cb8d8;
  color: #0f1318;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

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

/* ── Sections ── */

section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

section:last-of-type {
  border-bottom: none;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 200px;
}

/* ── Summary ── */

.summary-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 1.25rem;
}

.summary-text:last-child {
  margin-bottom: 0;
}

/* ── Experience ── */

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.job {
  display: grid;
  grid-template-columns: 1px 1fr;
  gap: 0 2rem;
}

.job-line {
  width: 1px;
  background: var(--accent-dim);
  position: relative;
}

.job-line::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.job-content {}

.job-header {
  margin-bottom: 0.5rem;
}

.job-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.job-company {
  color: var(--accent);
  font-weight: 400;
}

.job-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.job-context {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  font-style: italic;
}

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

.job-bullets li {
  font-size: 0.92rem;
  color: var(--text);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.6;
}

.job-bullets li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.7rem;
  top: 0.25rem;
}

/* ── Quotes ── */

.quotes-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 680px;
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 3px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


.quote-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
}

.quote-attribution {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.quote-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}

.quote-title {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── Competencies ── */

.competencies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.competency-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text);
}

/* ── Technical Expertise ── */

.tech-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tech-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.tech-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tech-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 0.1rem;
}

.tech-items {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
}

/* ── Certifications ── */

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cert-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.cert-name {
  color: var(--text);
  font-weight: 500;
}

.cert-status {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.cert-status.active {
  color: var(--accent);
}

/* ── Footer ── */

footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-contact {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-contact a {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--faint);
  font-family: var(--font-mono);
}

/* ── Responsive ── */

@media (max-width: 600px) {
  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-stats {
    flex-direction: column;
  }

  .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .hero-stat:last-child {
    border-bottom: none;
  }

  .tech-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .nav-links {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
