:root {
  color: #102033;
  background: #f7fbff;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --blue-950: #071d3b;
  --blue-800: #0b4fa8;
  --blue-600: #1678ff;
  --blue-400: #58b7ff;
  --aqua: #24d6d6;
  --ink: #102033;
  --muted: #66758a;
  --line: #dce9f7;
  --card: rgba(255, 255, 255, 0.86);
  --shadow: 0 24px 70px rgba(20, 102, 196, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #eef7ff 42%, #f8fbff 100%),
    #f7fbff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(220, 233, 247, 0.78);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.header-actions,
.hero-actions,
.ticker,
.progress-meta,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  color: var(--blue-950);
}

.brand-mark {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #d8e9fb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(22, 120, 255, 0.28);
}

.brand-mark img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav-links {
  gap: 24px;
  color: #45566d;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--blue-800);
}

.header-actions {
  gap: 10px;
}

.header-action,
.icon-link,
.pump-link,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
}

.header-action,
.primary-button {
  color: white;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  box-shadow: 0 16px 34px rgba(22, 120, 255, 0.24);
}

.header-action {
  padding: 0 18px;
  font-size: 0.92rem;
}

.icon-link,
.pump-link {
  border: 1px solid #c8def6;
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.82);
}

.icon-link {
  width: 46px;
  font-size: 1.05rem;
}

.pump-link {
  gap: 8px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(30px, 4vw, 70px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(42px, 7vw, 98px) clamp(18px, 5vw, 78px) 34px;
  overflow: hidden;
}

.hero-copy {
  max-width: 710px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue-800);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--blue-950);
  font-size: clamp(3.2rem, 7vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: 1.14rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-text {
  max-width: 640px;
  color: #485b72;
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  line-height: 1.65;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 24px;
}

.primary-button,
.secondary-button {
  padding: 0 22px;
}

.secondary-button {
  color: var(--blue-800);
  border: 1px solid #bfd8f6;
  background: rgba(255, 255, 255, 0.72);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  inset: 9% -5% -6% 10%;
  content: "";
  border-radius: 38px;
  background: rgba(88, 183, 255, 0.18);
  filter: blur(22px);
}

.hero-visual img {
  position: relative;
  width: min(790px, 100%);
  min-height: 430px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.ticker {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px clamp(18px, 5vw, 78px);
  border-block: 1px solid var(--line);
  background: #ffffff;
}

.ticker span {
  padding: 10px 14px;
  border-radius: 8px;
  color: #516176;
  background: #f3f8ff;
  font-size: 0.92rem;
  font-weight: 700;
}

.ticker strong {
  color: var(--blue-800);
}

.section {
  padding: clamp(58px, 7vw, 112px) clamp(18px, 5vw, 78px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
}

.intro p:last-child,
.section-heading p,
.cta p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.analytics {
  background:
    linear-gradient(180deg, rgba(230, 244, 255, 0.8), rgba(255, 255, 255, 0.92)),
    #ffffff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat-card,
.panel,
.steps article {
  border: 1px solid rgba(196, 219, 243, 0.9);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 18px 46px rgba(18, 83, 156, 0.09);
}

.stat-card {
  display: grid;
  min-height: 178px;
  align-content: space-between;
  padding: 22px;
}

.stat-card.featured {
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: white;
}

.stat-label {
  color: #65768d;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.featured .stat-label,
.featured .stat-note {
  color: rgba(255, 255, 255, 0.74);
}

.stat-card strong {
  color: var(--blue-950);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: 0;
}

.featured strong {
  color: white;
}

.stat-note {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.dashboard-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 16px;
  margin-top: 16px;
}

.panel {
  padding: 24px;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

#progressLabel {
  color: var(--blue-800);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
}

.progress-track {
  height: 22px;
  overflow: hidden;
  border-radius: 8px;
  background: #dfeefa;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-800), var(--aqua));
  transition: width 220ms ease;
}

.progress-meta {
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
}

.status-panel {
  display: grid;
  align-content: center;
  gap: 14px;
}

.status-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.mechanism {
  background: #ffffff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.steps article {
  padding: 24px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue-600);
  font-weight: 800;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.cta {
  padding: clamp(58px, 8vw, 118px) clamp(18px, 5vw, 78px);
  color: white;
  background:
    linear-gradient(135deg, rgba(7, 29, 59, 0.96), rgba(11, 79, 168, 0.92)),
    var(--blue-950);
}

.cta h2,
.cta .section-kicker,
.cta p {
  color: white;
}

.cta p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
  overflow-wrap: break-word;
}

.cta .primary-button {
  margin-top: 10px;
  color: var(--blue-950);
  background: #ffffff;
  box-shadow: none;
}

footer {
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 78px);
  color: #607188;
  background: white;
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .intro,
  .dashboard-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual img {
    width: 100%;
    min-height: 320px;
  }

  .stats-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand {
    max-width: 176px;
    font-size: 0.9rem;
  }

.brand-mark {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .brand-mark img {
    width: 34px;
    height: 34px;
  }

  .pump-link {
    width: 42px;
    min-height: 40px;
    padding: 0;
  }

  .pump-link span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .icon-link {
    width: 42px;
    min-height: 40px;
  }

  .hero {
    padding: 38px 14px 24px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .hero-actions,
  .hero-actions a,
  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .ticker span {
    width: 100%;
  }

  .hero-visual img {
    min-height: 260px;
    border-radius: 18px;
  }

  .stats-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .progress-meta,
  footer,
  .panel-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
