:root {
  --navy-900: #07182f;
  --navy-800: #0a2342;
  --navy-700: #102e5c;
  --navy-600: #1a3f7a;
  --gold: #f5b800;
  --gold-soft: #ffd54a;
  --ink: #e9efff;
  --muted: #a8b4cf;
  --radius: 14px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--navy-900);
  line-height: 1.5;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

/* ---------- decorative background ---------- */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at top left, var(--navy-700) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, var(--navy-600) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 100%);
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  animation: float 14s ease-in-out infinite;
}
.blob-1 {
  width: 520px; height: 520px;
  background: var(--gold);
  top: -180px; left: -160px;
  opacity: 0.22;
}
.blob-2 {
  width: 420px; height: 420px;
  background: #2a5db0;
  bottom: -150px; right: -120px;
  animation-delay: -5s;
}
.blob-3 {
  width: 280px; height: 280px;
  background: var(--gold-soft);
  top: 40%; right: 8%;
  opacity: 0.12;
  animation-delay: -9s;
}

.dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -25px) scale(1.05); }
}

/* ---------- top bar / logo ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 64px);
  flex-wrap: wrap;
  gap: 16px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}
.logo-mark {
  background: #0b1e3a;
  color: #fff;
  padding: 8px 14px 8px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 2px solid var(--gold);
}
.logo-text {
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 1px;
}
.logo-star {
  color: var(--gold);
  font-size: 18px;
  transform: translateY(-6px);
}
.logo-sub {
  background: var(--gold);
  color: var(--navy-800);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 6px;
  padding: 3px 10px;
  border-radius: 4px;
  margin-top: 4px;
}

.chip {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  transition: all .2s ease;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.04);
}
.chip:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- hero ---------- */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(28px, 6vw, 72px) clamp(20px, 5vw, 64px) 24px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.eyebrow strong {
  color: var(--gold);
  font-weight: 800;
}

.title {
  font-size: clamp(48px, 9vw, 112px);
  font-weight: 900;
  line-height: 1.02;
  margin: 0 0 18px;
  letter-spacing: -2px;
  background: linear-gradient(180deg, #ffffff 0%, #c9d6f1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.title .accent {
  display: inline-block;
  color: var(--gold);
  background: none;
  -webkit-text-fill-color: var(--gold);
  position: relative;
}
.title .accent::after {
  content: "";
  position: absolute;
  left: 4%; right: 4%;
  bottom: -8px;
  height: 6px;
  background: var(--gold);
  border-radius: 4px;
  opacity: 0.7;
}

.lead {
  max-width: 640px;
  margin: 24px auto 40px;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 17px);
}

/* ---------- services ---------- */
.services {
  width: 100%;
  max-width: 820px;
  margin: 12px 0 44px;
  padding: 28px 28px 24px;
  background: rgba(10, 28, 60, 0.55);
  border: 1px solid rgba(245, 184, 0, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.services-title {
  margin: 0 0 18px;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  border-bottom: 1px solid rgba(245, 184, 0, 0.25);
  padding-bottom: 10px;
}
.services-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 24px;
  text-align: left;
}
.services-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  padding: 4px 0;
}
.check {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 900;
  border-radius: 4px;
  flex-shrink: 0;
}

/* ---------- countdown (decorative) ---------- */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 560px;
  margin: 8px 0 0;
}
.cd-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 6px 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
}
.cd-num {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.cd-lbl {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- footer ---------- */
.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding: 28px clamp(20px, 5vw, 64px) 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.18);
}
.contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color .2s ease;
}
.contact:hover { color: var(--gold); }
.contact .icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--gold);
  color: var(--navy-800);
  border-radius: 50%;
  font-weight: 900;
}
.copy {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin: 8px 0 0;
}

/* ---------- small screens ---------- */
@media (max-width: 540px) {
  .topbar { padding: 18px 16px; }
  .chip { font-size: 13px; padding: 8px 14px; }
  .services { padding: 22px 18px 18px; }
  .countdown { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .cd-cell { padding: 12px 4px 10px; }
  .cd-lbl { font-size: 9px; letter-spacing: 1.5px; }
  .title .accent::after { bottom: -4px; height: 4px; }
}
