﻿@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #0b0f14;
  --bg-soft: #121823;
  --card: #141b27;
  --accent: #66f0c8;
  --accent-soft: rgba(102, 240, 200, 0.15);
  --text: #e9eef5;
  --muted: #95a3b6;
  --line: rgba(148, 163, 184, 0.25);
  --shadow: 0 20px 60px rgba(10, 12, 18, 0.55);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top, rgba(102, 240, 200, 0.1), transparent 45%),
    linear-gradient(160deg, #0b0f14 0%, #0f1722 40%, #0a0f16 100%);
  color: var(--text);
  min-height: 100vh;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 40px;
}

h1, h2, h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.8rem, 2.7vw, 2.5rem);
  margin-top: 8px;
}

h3 {
  font-size: 1.25rem;
}

p {
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0 30px;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--accent-soft);
}

.hero {
  padding: 30px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: start;
}

.hero-side {
  display: grid;
  gap: 20px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lede {
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #0b1218;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(102, 240, 200, 0.35);
}

.btn.ghost:hover,
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14, 20, 30, 0.6);
}

.hero-portrait {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  display: grid;
  gap: 12px;
  align-content: start;
  box-shadow: var(--shadow);
}

.portrait-placeholder {
  height: 240px;
  border-radius: 18px;
  border: 1px dashed var(--line);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(102, 240, 200, 0.18), rgba(76, 110, 245, 0.2));
  color: rgba(233, 238, 245, 0.7);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.portrait-caption {
  font-size: 0.9rem;
}
.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.card-head {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.card-body {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-label {
  color: var(--muted);
  font-size: 0.85rem;
}

.stat-value {
  font-weight: 600;
}

.section {
  padding: 60px 0;
  border-top: 1px solid var(--line);
}

.section:first-of-type {
  border-top: none;
}

.section-title {
  max-width: 680px;
}

.section-content {
  margin-top: 24px;
  display: grid;
  gap: 18px;
  max-width: 680px;
}

.muted {
  color: var(--muted);
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.pill-grid span {
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(15, 22, 32, 0.6);
}

.timeline-list {
  margin-top: 28px;
  display: grid;
  gap: 22px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 16px;
  align-items: start;
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 6px;
  box-shadow: 0 0 0 6px rgba(102, 240, 200, 0.1);
}

.projects .project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.projects-links {
  margin-top: 20px;
}

.project-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: 160px auto;
}

.img-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(102, 240, 200, 0.2), rgba(76, 110, 245, 0.25));
  color: rgba(233, 238, 245, 0.7);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.project-body {
  padding: 20px;
  display: grid;
  gap: 10px;
}

.contact-card {
  margin-top: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 40px 0 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero {
    padding-top: 10px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    gap: 16px;
  }
}



