:root {
  --navy-950: #03101f;
  --navy-900: #06172c;
  --navy-800: #0b2f5e;
  --blue: #2196f3;
  --cyan: #42c8ff;
  --yellow: #ffd22e;
  --green: #20d070;
  --white: #ffffff;
  --muted: #c7d5e5;
  --border: rgba(255, 255, 255, 0.12);
  --panel: rgba(8, 28, 52, 0.72);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 18%, rgba(33, 150, 243, 0.18), transparent 30%),
    radial-gradient(circle at 82% 75%, rgba(32, 208, 112, 0.12), transparent 30%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 55%, #081f3c);
}

.background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.38;
}

.glow-one {
  width: 340px;
  height: 340px;
  top: -110px;
  left: -90px;
  background: rgba(33, 150, 243, 0.35);
}

.glow-two {
  width: 380px;
  height: 380px;
  right: -140px;
  bottom: -160px;
  background: rgba(32, 208, 112, 0.2);
}

.grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 85%);
}

.page {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 48px 22px 36px;
}

.hero {
  width: min(920px, 100%);
  text-align: center;
}

.brand-card {
  width:min(360px,85vw);
  margin: 0 auto 28px;
  padding:10px 12px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

h1 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(2.1rem, 6vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.description {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.1vw, 1.3rem);
  line-height: 1.7;
  text-wrap: balance;
}

.status {
  width: fit-content;
  margin: 30px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid rgba(32, 208, 112, 0.35);
  border-radius: 999px;
  color: #8df0b7;
  background: rgba(32, 208, 112, 0.09);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(32, 208, 112, 0.9);
  animation: pulse 1.9s infinite;
}

.contact-card {
  width: min(560px, 100%);
  margin: 34px auto 0;
  padding: 22px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 16px 50px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}

.contact-card p {
  margin: 0 0 9px;
  color: var(--muted);
}

.contact-card a {
  color: var(--white);
  font-size: clamp(1.06rem, 3vw, 1.35rem);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 5px;
}

footer {
  position: relative;
  z-index: 1;
  min-height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  color: #9fb0c4;
  background: rgba(3, 16, 31, 0.7);
  font-size: 0.9rem;
  text-align: center;
}

.separator {
  color: var(--green);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.55;
  }
}

@media (max-width: 640px) {
  .page {
    min-height: calc(100vh - 88px);
    padding: 28px 14px 26px;
  }

  .brand-card {
    margin-bottom: 24px;
    padding: 9px;
    border-radius: 18px;
  }

  .brand-logo {
    border-radius: 12px;
  }

  .eyebrow {
    font-size: 0.67rem;
    line-height: 1.5;
  }

  .description {
    margin-top: 19px;
    line-height: 1.55;
  }

  .contact-card {
    margin-top: 27px;
    padding: 18px 14px;
  }

  footer {
    min-height: 88px;
    flex-direction: column;
    gap: 3px;
  }

  .separator {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .status-dot {
    animation: none;
  }
}
