* {
  box-sizing: border-box;
}

:root {
  --bg: #fbfaf7;
  --text: #090909;
  --muted: #71798a;
  --soft: #e7e1d8;
  --link: #111111;
  --chip: #ffffff;
  --accent: #0f766e;
  --accent-soft: #e6f4f1;
  --card: rgba(255, 255, 255, 0.72);
  --shadow: 0 20px 60px rgba(20, 20, 20, 0.06);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 32rem),
    radial-gradient(circle at top right, rgba(210, 177, 109, 0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 4px;
  transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

a:hover {
  opacity: 0.72;
}

.page {
  width: min(920px, calc(100% - 38px));
  margin: 0 auto;
  padding: 26px 0 34px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 54px;
}

.brand {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #090909;
  color: #ffffff;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: var(--shadow);
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

.hero {
  text-align: center;
  margin: 0 auto 48px;
  padding: 30px 0 8px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 72px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.role {
  margin: 14px 0 0;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 600;
}

.tagline {
  max-width: 680px;
  margin: 16px auto 0;
  color: #323232;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.button.primary {
  background: #090909;
  color: #ffffff;
  border: 1px solid #090909;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--soft);
  color: #090909;
}

.button:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.proof {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px auto 0;
}

.proof span {
  background: var(--accent-soft);
  color: #0b5f59;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
}

.section {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 30px;
  padding: 32px 0;
  border-top: 1px solid var(--soft);
}

.label {
  color: var(--muted);
  font-size: 15px;
  padding-top: 2px;
}

.content p {
  margin: 0 0 18px;
}

.content p:last-child {
  margin-bottom: 0;
}

.experience-list {
  display: grid;
  gap: 22px;
}

.item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 18px;
  align-items: start;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(145deg, #090909, #272727);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow);
}

.item-main h2,
.work-card h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.item-main p {
  margin: 6px 0 0;
  color: #344054;
  font-size: 15px;
}

.date {
  color: #9199aa;
  font-size: 14px;
  white-space: nowrap;
  padding-top: 2px;
}

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

.stats div,
.work-card,
.contact-card {
  padding: 20px;
  border: 1px solid var(--soft);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.stats strong {
  display: block;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.work-card p {
  margin: 8px 0 0;
  color: #344054;
  font-size: 15px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips span {
  background: var(--chip);
  border: 1px solid var(--soft);
  border-radius: 999px;
  padding: 8px 12px;
  color: #303030;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.03);
}

.contact-card {
  display: grid;
  gap: 16px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-links a {
  background: #ffffff;
  border: 1px solid var(--soft);
  border-radius: 999px;
  padding: 9px 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.footer {
  display: flex;
  justify-content: center;
  gap: 34px;
  padding: 70px 0 0;
  font-size: 16px;
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 28px, 920px);
    padding-top: 20px;
  }

  .topbar {
    margin-bottom: 32px;
  }

  .nav-links {
    gap: 14px;
    font-size: 13px;
  }

  .hero {
    padding-top: 20px;
  }

  .section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .item {
    grid-template-columns: 46px 1fr;
  }

  .logo {
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }

  .date {
    grid-column: 2;
    padding-top: 0;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .contact-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    padding-top: 40px;
  }
}
