:root {
  color-scheme: dark;
  --background: #05070a;
  --background-soft: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --accent: #8fd7ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% 20%, rgba(65, 144, 255, 0.26), transparent 34rem),
    linear-gradient(145deg, #05070a 0%, #101722 52%, #05070a 100%);
  color: var(--text);
}

a {
  color: var(--text);
  text-decoration-color: rgba(143, 215, 255, 0.7);
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--accent);
}

.page-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
}

.hero {
  width: min(100%, 44rem);
  text-align: center;
}

.logo {
  display: block;
  width: min(17rem, 70vw);
  max-height: 17rem;
  object-fit: contain;
  margin: 0 auto 2rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.tagline {
  margin: 1rem auto 0;
  max-width: 38rem;
  color: var(--text);
  font-size: clamp(1.15rem, 3vw, 1.65rem);
  font-weight: 650;
  line-height: 1.35;
}

.contact-card {
  margin-top: 2.75rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: var(--background-soft);
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.contact-card h2 {
  margin: 0 0 1.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 1.25rem;
}

.contact-item {
  display: grid;
  gap: 0.35rem;
}

.contact-purpose {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.contact-item a {
  font-size: clamp(1rem, 4vw, 1.35rem);
  font-weight: 750;
  word-break: break-word;
}

@media (max-width: 34rem) {
  .page-shell {
    padding: 1.25rem;
  }

  .contact-card {
    border-radius: 1.15rem;
  }
}
