:root {
  --bg: #f5f6f3;
  --surface: #ffffff;
  --surface-soft: #eef2ee;
  --text: #172026;
  --muted: #66727c;
  --line: #d9ded6;
  --accent: #173f39;
  --accent-soft: #e6eee9;
  --shadow: 0 24px 70px rgba(23, 32, 38, 0.08);
  --shadow-soft: 0 16px 40px rgba(23, 32, 38, 0.06);
  --radius-lg: 28px;
  --radius-md: 20px;
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.8;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(23, 63, 57, 0.10), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 38%, var(--bg) 100%);
}

a {
  color: inherit;
}

.page {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

/* Hero */

.hero {
  position: relative;
  padding: 56px;
  margin-bottom: 28px;
  border: 1px solid rgba(217, 222, 214, 0.9);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 245, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(23, 63, 57, 0.14), transparent 68%);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.95;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(23, 63, 57, 0.14);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

/* Profile Card */

.hero-profile {
  padding: 28px 24px;
  border: 1px solid rgba(217, 222, 214, 0.95);
  border-radius: 30px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f1f4f0 100%);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.profile-image {
  display: block;
  width: 172px;
  height: 172px;
  margin: 0 auto;
  border: 5px solid #ffffff;
  border-radius: 9999px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 44px rgba(23, 32, 38, 0.18);
}

.profile-name {
  margin: 20px 0 4px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.profile-title {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Sections */

.section {
  padding: 44px 0;
  border-bottom: 1px solid rgba(217, 222, 214, 0.85);
}

.section:last-child {
  border-bottom: 0;
}

.section h2 {
  margin: 0 0 22px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.section p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
}

.section p + p {
  margin-top: 16px;
}

ul {
  max-width: 880px;
  margin: 0;
  padding-left: 1.3rem;
}

li {
  padding-left: 0.2rem;
}

li + li {
  margin-top: 8px;
}

/* Cards */

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(217, 222, 214, 0.9);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Contact */

.contact {
  margin-top: 32px;
  padding: 44px;
  border: 1px solid rgba(217, 222, 214, 0.95);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

/* Responsive */

@media (max-width: 880px) {
  .hero {
    padding: 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-profile {
    max-width: 340px;
  }

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

@media (max-width: 560px) {
  .page {
    width: min(100% - 28px, var(--max-width));
    padding: 28px 0 56px;
  }

  .hero {
    padding: 32px 24px;
    border-radius: 28px;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .lead {
    margin-top: 22px;
  }

  .profile-image {
    width: 144px;
    height: 144px;
  }

  .section {
    padding: 36px 0;
  }

  .card {
    padding: 24px;
  }

  .contact {
    padding: 28px 24px;
  }
}
