:root {
  --navy: #16273d;
  --teal: #2fa7a7;
  --text: #333333;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #f7f9fb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(47, 167, 167, 0.08), transparent 34rem),
    var(--bg);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
}

.card {
  width: min(920px, 100%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(22, 39, 61, 0.10);
  padding: clamp(32px, 6vw, 72px);
  text-align: center;
}

.logo {
  display: block;
  width: min(520px, 100%);
  height: auto;
  margin: 0 auto 34px;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(47, 167, 167, 0.10);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--teal);
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.intro {
  max-width: 680px;
  margin: 18px auto 36px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
  text-align: left;
}

.contact-item {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--navy);
  text-decoration: none;
  background: #ffffff;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

a.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 167, 167, 0.45);
  box-shadow: 0 14px 32px rgba(22, 39, 61, 0.08);
}

.label {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

  .card {
    border-radius: 22px;
  }

  .contact-item {
    min-height: auto;
    text-align: center;
  }
}
