@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0b1b4d;
  --blue: #1565ff;
  --cyan: #00b2ff;
  --text: #102044;
  --muted: #5d6b86;
  --line: #dbe5f5;
  --bg: #f8fbff;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

body { overflow-x: hidden; }

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 20px;
  position: relative;
  isolation: isolate;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: .55;
  background-image:
    linear-gradient(rgba(21,101,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,101,255,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .16;
  z-index: -2;
  pointer-events: none;
}
.glow-one { background: var(--blue); top: -160px; right: -120px; }
.glow-two { background: var(--cyan); bottom: -190px; left: -130px; }

.hero {
  width: min(1060px, 100%);
  text-align: center;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(219,229,245,.95);
  border-radius: 28px;
  padding: 48px 52px 34px;
  box-shadow: 0 24px 70px rgba(11,27,77,.10);
  backdrop-filter: blur(12px);
}

.brand img {
  width: min(480px, 82vw);
  height: auto;
  display: block;
  margin: 0 auto 22px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--blue);
  background: #edf4ff;
  border: 1px solid #d9e7ff;
  border-radius: 999px;
  padding: 9px 15px;
}

h1 {
  margin: 28px 0 4px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 800;
  color: var(--navy);
}

h1 span {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  margin: 18px 0 12px;
  font-size: clamp(20px, 3vw, 29px);
  font-weight: 700;
  color: var(--navy);
}

.intro {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.services {
  margin: 32px auto 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 850px;
}

.service {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 13px;
  padding: 12px 10px;
  color: var(--navy);
  font-size: 13px;
}

.service span {
  color: var(--blue);
  font-weight: 800;
  font-size: 17px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #64718a;
  font-size: 12px;
  margin-top: 5px;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(0,178,255,.10);
}

footer {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid #e5ebf5;
  color: #8994a8;
  font-size: 11px;
}

@media (max-width: 760px) {
  .page { padding: 16px 12px; }
  .hero { padding: 30px 18px 22px; border-radius: 20px; }
  .brand img { width: min(390px, 88vw); }
  .services { grid-template-columns: 1fr 1fr; gap: 9px; }
  .service { font-size: 11.5px; min-height: 54px; }
  .eyebrow { font-size: 9px; letter-spacing: .11em; }
}

@media (max-width: 440px) {
  .services { grid-template-columns: 1fr; }
  h1 { font-size: 45px; }
  .intro { font-size: 14px; }
}
