:root {
  color-scheme: light;
  --bg: #f8fafc;
  --surface: #ffffff;
  --border: #e2e8f0;
  --text: #0f172a;
  --muted: #475569;
  --subtle: #64748b;
  --accent: #0ea5e9;
  --accent-hover: #0284c7;
  --chip-bg: #f1f5f9;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 8px 32px rgba(15, 23, 42, 0.12);
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background-color: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ccircle cx='30' cy='30' r='1.2' fill='%23cbd5e1' opacity='0.5'/%3E%3C/svg%3E");
  color: var(--text);
  min-height: 100%;
}

body {
  min-height: 100vh;
}

.shell {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 28px 0 72px;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--text);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #38bdf8);
  color: #ffffff;
  font-size: 0.85rem;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.3);
}

.pill {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--subtle);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow);
}

main {
  display: grid;
  gap: 1.25rem;
  margin-top: 36px;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  align-items: stretch;
}

.hero-intro,
.profile-card,
.focus-card,
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-intro {
  padding: 32px;
  display: grid;
  align-content: center;
  gap: 0;
}

.profile-card {
  padding: 28px;
  display: grid;
  gap: 1.1rem;
  align-content: start;
}

.avatar-wrap {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  text-align: center;
}

.avatar {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 3px solid var(--surface);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
}

.avatar-wrap strong {
  font-size: 1.15rem;
  color: var(--text);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 58ch;
  margin: 0;
}

.mini-note {
  color: var(--subtle);
  font-size: 0.92rem;
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #38bdf8);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(14, 165, 233, 0.45);
}

.btn-secondary {
  background: var(--text);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.2);
}

.btn-secondary:hover {
  background: #1e293b;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.28);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}

.chip {
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: var(--chip-bg);
  color: var(--subtle);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border);
}

.section-heading {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--subtle);
  margin: 0 0 0.75rem;
}

.focus-section {
  display: grid;
  gap: 0.75rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.focus-card {
  padding: 1.25rem 1.35rem;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.focus-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.focus-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

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

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.value-card {
  padding: 1.35rem;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.value-card h2 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--text);
  font-weight: 700;
}

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

footer {
  padding: 1.5rem 0 0;
  color: var(--subtle);
  font-size: 0.92rem;
  text-align: center;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .focus-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 1.25rem, 1120px);
    padding-top: 20px;
    padding-bottom: 48px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .hero-intro,
  .profile-card,
  .focus-card,
  .value-card {
    border-radius: var(--radius-md);
    padding: 20px;
  }

  .avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
  }

  h1 {
    font-size: 1.65rem;
  }

  .lede {
    font-size: 1rem;
  }

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

@media (min-width: 641px) and (max-width: 980px) {
  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .focus-grid .focus-card:last-child {
    grid-column: 1 / -1;
  }
}
