*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:     #1A2C4E;
  --blue:     #2B5FA6;
  --mint:     #0F9E8A;
  --ice:      #D6E4F5;
  --offwhite: #F4F8FC;
  --gray:     #6B7280;
  --ab:       #111827;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: #fff;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ── */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header ── */

.header {
  padding: 28px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--mint);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 20px;
  height: 20px;
}

.logo-text {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}

/* ── Hero ── */

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 158, 138, 0.12);
  border: 1px solid rgba(15, 158, 138, 0.3);
  color: #5dccba;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 36px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}

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

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--mint);
}

.hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

.divider {
  width: 48px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 36px auto;
}

.contact-line {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.contact-line a {
  color: var(--ice);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}

.contact-line a:hover {
  color: #fff;
}

/* ── Decorative circles ── */

.circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.c1 {
  width: 480px;
  height: 480px;
  top: -120px;
  right: -100px;
}

.c2 {
  width: 260px;
  height: 260px;
  bottom: -60px;
  right: 80px;
  border-color: rgba(15, 158, 138, 0.12);
}

.c3 {
  width: 200px;
  height: 200px;
  bottom: 60px;
  left: -60px;
  border-color: rgba(43, 95, 166, 0.15);
}

/* ── Footer ── */

.footer {
  padding: 24px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ── Responsive ── */

@media (max-width: 600px) {
  .header {
    padding: 20px 24px;
  }

  .hero {
    padding: 60px 24px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .footer {
    padding: 20px 24px;
  }
}
