:root {
  color-scheme: dark;
  --bg-1: #07111f;
  --bg-2: #0c1d33;
  --panel: rgba(7, 17, 31, 0.68);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #f4f7fb;
  --muted: rgba(244, 247, 251, 0.72);
  --accent: #8ee7c0;
  --accent-2: #f3c86b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(142, 231, 192, 0.18), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(243, 200, 107, 0.16), transparent 28%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2));
}

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

.hero {
  position: relative;
  width: min(100%, 860px);
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(12, 25, 44, 0.9), var(--panel));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  pointer-events: none;
}

.hero__glow--one {
  width: 220px;
  height: 220px;
  right: -60px;
  top: -50px;
  background: rgba(142, 231, 192, 0.18);
}

.hero__glow--two {
  width: 280px;
  height: 280px;
  left: -110px;
  bottom: -120px;
  background: rgba(243, 200, 107, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.brand__mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(142, 231, 192, 0.95), rgba(243, 200, 107, 0.95));
  color: #06111e;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand__name {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.82rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 58ch;
  margin: 20px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: var(--muted);
}

.status-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.status-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.status-card p {
  margin: 0;
  color: var(--muted);
}

.status-dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(142, 231, 192, 0.12);
  flex: 0 0 auto;
}

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

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(142, 231, 192, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.contact-card--primary {
  background: linear-gradient(135deg, rgba(142, 231, 192, 0.14), rgba(243, 200, 107, 0.12));
}

.contact-card__label {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-card__value {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
}

@media (max-width: 640px) {
  .page {
    padding: 16px;
  }

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

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

  .brand {
    margin-bottom: 22px;
  }
}
