:root {
  color-scheme: dark;
  --bg-1: #050816;
  --bg-2: #0b1025;
  --panel: rgba(9, 14, 32, 0.82);
  --border: rgba(124, 142, 255, 0.22);
  --text: #f5f7ff;
  --muted: #aeb7d8;
  --accent: #83e1ff;
  --accent-2: #8b7dff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(131, 225, 255, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(139, 125, 255, 0.22), transparent 32%),
    linear-gradient(160deg, var(--bg-1), var(--bg-2));
  color: var(--text);
}

body {
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(720px, 100%);
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

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

h1 {
  margin: 0;
  font-size: clamp(52px, 10vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.tagline {
  margin: 18px 0 0;
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.08;
  color: var(--muted);
  max-width: 16ch;
}

.body {
  margin: 22px 0 0;
  max-width: 44ch;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.contact {
  display: block;
  padding: 18px 20px;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.contact:hover {
  transform: translateY(-1px);
  border-color: rgba(131, 225, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.value {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 600;
  word-break: break-word;
}

.footnote {
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(174, 183, 216, 0.72);
}

@media (max-width: 640px) {
  .card {
    padding: 28px 22px;
    border-radius: 22px;
  }

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

  .body,
  .value {
    font-size: 16px;
  }
}
