* { box-sizing: border-box; }

:root {
  --bg: #0b0f14;
  --panel: #11161d;
  --line: #202830;
  --text: #f2f5f8;
  --muted: #a3a9b1;
  --blue: #2493db;
  --blue-dark: #112438;
}

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

body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 39%, rgba(20, 57, 83, .22), transparent 34%),
    linear-gradient(180deg, #0d1117 0%, var(--bg) 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
}

.page {
  min-height: calc(100vh - 92px);
  position: relative;
}

.header {
  padding-top: 38px;
  display: flex;
  justify-content: center;
}

.logo {
  display: block;
  width: min(495px, calc(100vw - 40px));
  height: auto;
  border-radius: 11px;
}

.hero {
  width: min(980px, calc(100% - 40px));
  margin: 196px auto 0;
  text-align: center;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
}

.status-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid #1b4c70;
  border-radius: 15px;
  background: rgba(13, 33, 49, .45);
}

.status-icon svg {
  width: 27px;
  height: 27px;
}

.status-label {
  padding: 7px 15px;
  border: 1px solid #1c527a;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.status-label::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: currentColor;
  vertical-align: 1px;
  animation: status-pulse 2.4s ease-in-out infinite;
  box-shadow: 0 0 0 rgba(36, 147, 219, 0);
}

@keyframes status-pulse {
  0%, 100% {
    opacity: .45;
    box-shadow: 0 0 0 rgba(36, 147, 219, 0);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 8px rgba(36, 147, 219, .55);
  }
}



h1 {
  max-width: 760px;
  margin: 29px auto 0;
  font-size: clamp(42px, 5vw, 58px);
  line-height: .98;
  letter-spacing: -2.4px;
  font-weight: 750;
}

h1 span {
  display: block;
  color: var(--blue);
}

.intro {
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.contact-grid {
  width: min(650px, 100%);
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.contact-card {
  min-height: 190px;
  padding: 22px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(17, 22, 29, .76);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.contact-card:hover {
  border-color: #245475;
  background: rgba(19, 27, 36, .9);
  transform: translateY(-2px);
}

.icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--blue);
  border-radius: 6px;
  background: var(--blue-dark);
}

.icon svg {
  width: 21px;
  height: 21px;
}

.label {
  margin-bottom: 9px;
  color: #727982;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
}

.contact-card strong {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 37px;
  padding: 16px 29px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  border-radius: 7px;
  background: var(--blue);
  transition: transform .2s ease, filter .2s ease;
}

.cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.cta span {
  font-size: 20px;
  line-height: 0;
}

.footer {
  min-height: 92px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  border-top: 1px solid #171d23;
  color: #656b73;
  font-size: 12px;
  font-weight: 650;
}

@media (max-width: 720px) {
  .page {
    min-height: auto;
    padding-bottom: 60px;
  }

  .header {
    padding-top: 24px;
  }

  .logo {
    width: min(430px, calc(100vw - 32px));
  }

  .hero {
    margin-top: 100px;
  }

  h1 {
    letter-spacing: -1.5px;
  }

  .intro {
    font-size: 16px;
  }

  .desktop-only {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .contact-card {
    min-height: 150px;
  }

  .footer {
    padding: 24px 20px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
