/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --brand:        #0e5aa6;
  --brand-dark:   #0b1f3a;
  --brand-light:  #1a7fd4;
  --accent:       #f59e0b;
  --accent-light: #fde68a;
  --surface:      #f8fafc;
  --text-muted:   #64748b;
  --radius-xl:    24px;
  --radius-lg:    16px;
  --shadow-xl:    0 25px 60px rgba(11,31,58,.18);
  --shadow-card:  0 8px 32px rgba(11,31,58,.10);
}

/* ── Page reset ────────────────────────────────────────────── */
body { background: var(--surface); }

/* ── Animated gradient background ─────────────────────────── */
.page-bg {
  position: fixed; inset: 0; z-index: -1;
  background: linear-gradient(135deg, #0b1f3a 0%, #0e5aa6 40%, #1a7fd4 70%, #0b3d91 100%);
  background-size: 400% 400%;
  animation: bgShift 18s ease infinite;
}
.page-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(245,158,11,.12) 0%, transparent 70%);
}
@keyframes bgShift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero-section {
  min-height: calc(100vh - 68px);
  display: flex; align-items: center;
  padding: 80px 0 60px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  padding: .4rem 1rem; border-radius: 999px;
  color: #fff; font-size: .82rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.12;
  color: #fff; margin-bottom: 1.25rem;
}
.hero-title .accent-word {
  background: linear-gradient(90deg, var(--accent) 0%, #fb923c 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,.78);
  max-width: 520px; line-height: 1.7; margin-bottom: 2rem;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  padding: .35rem .85rem; border-radius: 999px;
  color: rgba(255,255,255,.9); font-size: .8rem; font-weight: 500;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; }
.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #fb923c 100%);
  border: none; color: #0b1f3a; font-weight: 700;
  padding: .85rem 2rem; border-radius: 12px; font-size: 1rem;
  box-shadow: 0 8px 24px rgba(245,158,11,.4);
  transition: transform .2s, box-shadow .2s;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(245,158,11,.5); color: #0b1f3a; }
.btn-hero-outline {
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.35);
  color: #fff; font-weight: 600;
  padding: .85rem 1.75rem; border-radius: 12px; font-size: 1rem;
  backdrop-filter: blur(6px);
  transition: background .2s, transform .2s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); color: #fff; }

/* ── Tracking bar ──────────────────────────────────────────── */
.tracking-bar {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  border-radius: 14px; padding: 1.25rem 1.5rem;
}
.tracking-bar .form-control {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: #fff; border-radius: 10px;
}
.tracking-bar .form-control::placeholder { color: rgba(255,255,255,.55); }
.tracking-bar .form-control:focus {
  background: rgba(255,255,255,.22); border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,158,11,.25); color: #fff;
}
.btn-track {
  background: var(--accent); border: none; color: #0b1f3a;
  font-weight: 700; border-radius: 10px; padding: .7rem 1.5rem;
  transition: transform .2s, box-shadow .2s;
}
.btn-track:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,158,11,.4); color: #0b1f3a; }

/* ── Glass card (right panel) ──────────────────────────────── */
.glass-panel {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}
.glass-panel .panel-title {
  color: #fff; font-weight: 700; font-size: 1.1rem; margin-bottom: 1.25rem;
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1.25rem; }
.stat-item {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px; padding: 1rem;
  transition: background .2s;
}
.stat-item:hover { background: rgba(255,255,255,.18); }
.stat-label { color: rgba(255,255,255,.65); font-size: .75rem; font-weight: 500; margin-bottom: .25rem; }
.stat-value { color: #fff; font-size: 1.6rem; font-weight: 800; line-height: 1; }
.stat-value .stat-unit { font-size: .85rem; font-weight: 500; opacity: .7; }
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; display: inline-block;
  box-shadow: 0 0 0 0 rgba(34,197,94,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.live-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(34,197,94,.15); border: 1px solid rgba(34,197,94,.3);
  color: #86efac; font-size: .75rem; font-weight: 600;
  padding: .25rem .65rem; border-radius: 999px; margin-bottom: 1rem;
}
.btn-dashboard {
  width: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, #fb923c 100%);
  border: none; color: #0b1f3a; font-weight: 700;
  padding: .85rem; border-radius: 12px; font-size: 1rem;
  box-shadow: 0 6px 20px rgba(245,158,11,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-dashboard:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,158,11,.5); color: #0b1f3a; }

/* ── Features section ──────────────────────────────────────── */
.features-section {
  background: #fff;
  padding: 80px 0;
}
.section-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, rgba(14,90,166,.1) 0%, rgba(26,127,212,.1) 100%);
  color: var(--brand); font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 999px; margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--brand-dark); line-height: 1.2;
}
.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-light) 100%);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
}
.feature-icon.blue  { background: rgba(14,90,166,.1);  color: var(--brand); }
.feature-icon.green { background: rgba(16,185,129,.1); color: #059669; }
.feature-icon.amber { background: rgba(245,158,11,.1); color: #d97706; }
.feature-title { font-size: 1.05rem; font-weight: 700; color: var(--brand-dark); margin-bottom: .6rem; }
.feature-desc  { color: var(--text-muted); font-size: .92rem; line-height: 1.65; margin: 0; }

/* ── Stats strip ───────────────────────────────────────────── */
.stats-strip {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  padding: 60px 0;
}
.strip-stat-value {
  font-size: 2.8rem; font-weight: 800; color: #fff; line-height: 1;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.8) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.strip-stat-label { color: rgba(255,255,255,.65); font-size: .9rem; margin-top: .35rem; }

/* ── CTA section ───────────────────────────────────────────── */
.cta-section {
  background: var(--surface);
  padding: 80px 0;
}
.cta-card {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, var(--brand-light) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(245,158,11,.12);
}
.cta-card::after {
  content: '';
  position: absolute; bottom: -80px; left: -40px;
  width: 250px; height: 250px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: .75rem; }
.cta-subtitle { color: rgba(255,255,255,.75); font-size: 1rem; line-height: 1.65; margin: 0; }
.btn-cta-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #fb923c 100%);
  border: none; color: #0b1f3a; font-weight: 700;
  padding: .9rem 2rem; border-radius: 12px; font-size: 1rem;
  box-shadow: 0 8px 24px rgba(245,158,11,.4);
  transition: transform .2s, box-shadow .2s; white-space: nowrap;
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(245,158,11,.5); color: #0b1f3a; }
.btn-cta-outline {
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.35);
  color: #fff; font-weight: 600;
  padding: .9rem 2rem; border-radius: 12px; font-size: 1rem;
  backdrop-filter: blur(6px);
  transition: background .2s, transform .2s; white-space: nowrap;
}
.btn-cta-outline:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); color: #fff; }

/* ── Footer ────────────────────────────────────────────────── */
footer.site-footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,.6);
  padding: 2rem 0;
  text-align: center;
  font-size: .88rem;
}
footer.site-footer a { color: rgba(255,255,255,.5); text-decoration: none; }
footer.site-footer a:hover { color: #fff; }
