:root {
  --bg: #090b14;
  --card: rgba(16, 20, 35, 0.82);
  --border: rgba(255, 255, 255, 0.08);
  --accent: #f9c972;
  --text: #f1f3ff;
  --muted: rgba(222, 224, 239, 0.75);
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

body {
  background: radial-gradient(circle at top, rgba(68, 104, 190, 0.18), rgba(9, 11, 20, 0.95)), var(--bg);
  min-height: 100vh;
  padding: 2rem 1.5rem 4rem;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 160 160"%3E%3Cg fill="none" fill-opacity="0.4"%3E%3Cpath d="M0 0h20v20H0z"/%3E%3Cpath fill="%23ffffff" d="M4 16h1v1H4zm11-3h1v1h-1zm-2-8h1v1h-1zM8 3h1v1H8zm9 8h1v1h-1zm-7 5h1v1H10zM2 8h1v1H2zm5 5h1v1H7zM14 1h1v1h-1zm-6 7h1v1H8zm8 8h1v1h-1z"/%3E%3C/g%3E%3C/svg%3E');
  opacity: 0.22;
  pointer-events: none;
}

.hero {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__logo {
  width: 140px;
  margin: 0 auto 1rem;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.7rem;
  color: rgba(232, 233, 245, 0.6);
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  margin-bottom: 1rem;
}

.hero__lead {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.hero__support {
  color: var(--muted);
  margin-bottom: 1.3rem;
}

.hero__cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  background: var(--accent);
  color: #1b1c20;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(249, 201, 114, 0.28);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(249, 201, 114, 0.35);
}

.button--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: none;
}

main {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.section__header {
  margin-bottom: 1.2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.7rem;
  color: rgba(232, 234, 245, 0.55);
}

.section__header h2 {
  font-size: clamp(1.4rem, 4vw, 2.3rem);
  margin: 0.4rem 0;
}

.section__header p {
  color: var(--muted);
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem;
  min-height: 180px;
}

.card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.section--people .people {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.profile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem;
}

.profile__role {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 234, 245, 0.65);
  margin-bottom: 0.5rem;
}

.profile__bio {
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.profile a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.section--status .contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.section--status .contact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.section--status .contact a:hover,
.section--status .contact a:focus-visible {
  border-bottom-color: var(--accent);
}

.footer {
  max-width: 980px;
  margin: 2rem auto 0;
  text-align: center;
  color: rgba(232, 234, 245, 0.55);
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  body {
    padding: 1.6rem 1rem 3rem;
  }

  .hero__cta {
    flex-direction: column;
  }

  .button {
    width: 100%;
    text-align: center;
  }
}
