:root {
  --bg: #071018;
  --panel-border: rgba(47, 201, 246, 0.24);
  --text: #eaf6ff;
  --muted: #98aebd;
  --line: rgba(255,255,255,0.10);
  --accent: #2fc9f6;
  --accent-2: #64ffda;
  --warning: #ffcc66;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 18%, rgba(47, 201, 246, 0.18), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(100, 255, 218, 0.10), transparent 28%),
    linear-gradient(135deg, #050a10 0%, #071018 48%, #0c1824 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.034) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

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

.panel {
  width: min(920px, 100%);
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(10,20,31,0.92), rgba(8,15,24,0.86));
  box-shadow: 0 24px 80px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
}

.brand-header {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 24px;
  text-align: center;
}

.site-logo {
  width: min(520px, 92%);
  height: auto;
  display: block;
  filter: drop-shadow(0 0 20px rgba(47,201,246,0.34));
}

.eyebrow {
  margin: 0;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1 {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(2rem, 4vw, 4.05rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.lead {
  max-width: 790px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
  text-align: center;
}

.status-box {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px 16px;
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  color: #cce8f6;
}

.pulse {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--warning);
  box-shadow: 0 0 0 0 rgba(255, 204, 102, 0.72);
  animation: pulse 1.8s infinite;
}

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

.contact-card {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.035);
  color: var(--text);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(47,201,246,0.50);
  background: rgba(47,201,246,0.08);
  outline: none;
}

.label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.contact-card strong {
  display: block;
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-top: 6px;
}

.services span {
  padding: 9px 12px;
  border: 1px solid rgba(47,201,246,0.18);
  border-radius: 999px;
  color: #c3e8f8;
  background: rgba(47,201,246,0.055);
  font-size: 0.88rem;
}

footer {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

footer p {
  margin: 0;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 204, 102, 0.72); }
  70% { box-shadow: 0 0 0 10px rgba(255, 204, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 204, 102, 0); }
}

@media (max-width: 760px) {
  .page {
    padding: 18px;
  }

  .panel {
    border-radius: 22px;
  }

  .site-logo {
    width: min(420px, 100%);
  }

  .status-box {
    align-items: flex-start;
  }

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