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

:root {
  --navy:      #080f1e;
  --blue:      #1a56db;
  --blue-glow: #3b82f6;
  --teal:      #06b6d4;
  --gold:      #f59e0b;
  --text:      #e2e8f0;
  --text-muted:#64748b;
  --text-dim:  #94a3b8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--navy);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── BACKGROUND — static gradients only, zero blur ── */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 10%, rgba(26,86,219,.16) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 85%, rgba(6,182,212,.11) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 65% 30%, rgba(245,158,11,.05) 0%, transparent 50%),
    linear-gradient(180deg, #080f1e 0%, #0a1628 50%, #060d1a 100%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(59,130,246,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.035) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── LAYOUT ── */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── HEADER ── */
.header {
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: slideDown .6s ease both;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: #fff;
}

.logo-text span { color: var(--teal); }

.header-badge {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(6,182,212,.3);
  padding: .4rem 1rem;
  border-radius: 100px;
  background: rgba(6,182,212,.06);
}

/* ── HERO ── */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem 8rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem 1.2rem;
  border-radius: 100px;
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.2);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  animation: fadeIn .7s .2s ease both;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  will-change: opacity;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .25; }
}

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.2rem;
  animation: fadeIn .7s .35s ease both;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 1rem;
  animation: fadeUp .7s .45s ease both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300;
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
  animation: fadeUp .7s .55s ease both;
}

/* ── FEATURE PILLS ── */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  max-width: 680px;
  margin-bottom: 4rem;
  animation: fadeUp .7s .65s ease both;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem 1.1rem;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
  font-weight: 400;
  color: var(--text-dim);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}

.feature-pill:hover {
  background: rgba(59,130,246,.08);
  border-color: rgba(59,130,246,.25);
  color: var(--text);
  transform: translateY(-2px);
}

/* ── DIVIDER ── */
.line-divider {
  width: 100%;
  max-width: 560px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,.3), rgba(6,182,212,.3), transparent);
  margin-bottom: 3.5rem;
  animation: expandWidth 1s .8s ease both;
  transform-origin: center;
}

@keyframes expandWidth {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

/* ── PROGRESS ── */
.progress-wrap {
  width: 100%;
  max-width: 400px;
  animation: fadeIn .7s .9s ease both;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: .65rem;
}

.progress-label span:last-child { color: var(--teal); }

.progress-bar-bg {
  height: 3px;
  background: rgba(255,255,255,.06);
  border-radius: 100px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--teal) 100%);
  border-radius: 100px;
  will-change: width;
  animation: fillBar 2s 1.1s cubic-bezier(.16,1,.3,1) forwards;
}

@keyframes fillBar {
  to { width: 62%; }
}

/* ── METRICS ── */
.metrics {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3rem;
  animation: fadeIn .7s 1s ease both;
  white-space: nowrap;
}

.metric { text-align: center; }

.metric-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: .3rem;
  background: linear-gradient(135deg, #fff 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.metric-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.08);
  align-self: center;
}

/* ── FOOTER ── */
.footer {
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,.04);
  animation: fadeIn .7s 1s ease both;
}

.footer-copy {
  font-size: .72rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: .05em;
}

/* ── SHARED KEYFRAMES ── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .header { padding: 1.5rem; }
  .header-badge { display: none; }
  .metrics { gap: 1.5rem; bottom: 1.5rem; }
  .metric-sep { display: none; }
  .footer { padding: 1.2rem 1.5rem; }
}
