:root {
  --bg: #060b11;
  --panel: rgba(11, 17, 24, 0.82);
  --panel-2: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.10);
  --text: #f4f7fb;
  --muted: #b3c0ce;
  --accent: #7bd7ff;
  --accent-strong: #cfefff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(50, 119, 150, 0.16), transparent 28%),
    radial-gradient(circle at 90% 85%, rgba(54, 177, 224, 0.12), transparent 24%),
    linear-gradient(135deg, #04070b 0%, #08111b 45%, #0a121a 100%);
}

body {
  position: relative;
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 25%, transparent 90%);
  opacity: 0.18;
  pointer-events: none;
}

.orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  pointer-events: none;
}

.orb-1 {
  top: -80px;
  left: -120px;
  background: #2ea0ff;
}

.orb-2 {
  right: -140px;
  bottom: -120px;
  background: #00d1ff;
}

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

.hero-card {
  position: relative;
  width: min(900px, 100%);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px 42px 30px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(123, 215, 255, 0.9), transparent);
}

.hero-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: rgba(123, 215, 255, 0.10);
  color: var(--accent-strong);
  border: 1px solid rgba(123, 215, 255, 0.18);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.logo {
  display: block;
  width: min(240px, 65vw);
  height: auto;
  margin: 34px auto 20px;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h1 span {
  color: var(--accent-strong);
}

.intro {
  width: min(720px, 100%);
  margin: 20px auto 0;
  font-size: clamp(1rem, 2vw, 1.14rem);
  line-height: 1.8;
  color: var(--muted);
}

.status-band {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 600;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #79f2c0;
  box-shadow: 0 0 14px rgba(121, 242, 192, 0.8);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 18px;
  margin-top: 34px;
  text-align: left;
}

.contact-card {
  padding: 22px 22px 20px;
  background: var(--panel-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  min-height: 150px;
}

.card-label {
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-link {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 600;
}

.contact-link:hover {
  text-decoration: underline;
}

.address-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
  font-size: 1rem;
}

.footer-note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-sep {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

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

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

  .logo {
    margin-top: 26px;
    width: min(210px, 70vw);
  }

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

  .contact-card {
    min-height: auto;
  }

  .footer-note {
    flex-direction: column;
    gap: 8px;
  }

  .footer-sep {
    display: none;
  }
}
