:root {
  --blue: #063b8f;
  --blue-2: #0b6ee8;
  --green: #12c981;
  --yellow: #ffd84d;
  --white: #ffffff;
  --ink: #101725;
  --muted: #68748a;
  --line: rgba(16, 23, 37, 0.12);
  --shadow: 0 24px 70px rgba(6, 59, 143, 0.18);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(6, 28, 70, 0.72);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 40px, var(--max));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 136px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: 92px 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 118px 0 70px;
  background:
    linear-gradient(130deg, rgba(5, 31, 83, 0.98), rgba(6, 74, 154, 0.93) 48%, rgba(18, 201, 129, 0.82)),
    radial-gradient(circle at 80% 18%, rgba(255, 216, 77, 0.42), transparent 28%);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 85%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 72px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.8rem;
  font-weight: 800;
}

.hero .eyebrow {
  color: var(--yellow);
}

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

h1 {
  margin-bottom: 8px;
  font-size: clamp(4.8rem, 13vw, 9.2rem);
  line-height: 0.86;
  letter-spacing: 0;
  font-weight: 800;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-subtitle {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.12;
  max-width: 680px;
}

.hero-text,
.section-heading p,
.feature-card p,
.step p,
.benefit p,
.effort-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--yellow);
  color: #142033;
  box-shadow: 0 14px 34px rgba(255, 216, 77, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
}

.pulse-ring {
  position: absolute;
  width: 350px;
  height: 350px;
  border: 2px solid rgba(255, 216, 77, 0.45);
  border-radius: 50%;
  animation: pulse 3.4s ease-in-out infinite;
}

.phone {
  position: relative;
  width: min(100%, 340px);
  padding: 16px;
  border: 10px solid #07172d;
  border-radius: 36px;
  background: #f8fbff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.phone-top,
.app-header,
.stats-grid,
.effort-card {
  display: flex;
  align-items: center;
}

.phone-top {
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 800;
}

.signal {
  width: 36px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 68%, #d8e3f2 68%);
}

.app-header {
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.app-header small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.live-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(18, 201, 129, 0.14);
}

.run-map {
  height: 190px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11, 110, 232, 0.16), rgba(18, 201, 129, 0.12)),
    #eaf2fb;
}

.run-map svg {
  width: 100%;
  height: 100%;
}

.street {
  fill: none;
  stroke: rgba(6, 59, 143, 0.18);
  stroke-width: 12;
  stroke-linecap: round;
}

.route {
  fill: none;
  stroke: var(--green);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  animation: drawRoute 2.6s ease forwards 0.4s;
}

.route-point {
  fill: var(--yellow);
  stroke: #0d2c5d;
  stroke-width: 3;
}

.finish {
  fill: var(--green);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0;
}

.stats-grid div {
  min-height: 88px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.stats-grid span,
.stats-grid small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.stats-grid strong {
  display: inline-block;
  margin-top: 7px;
  font-size: 1.55rem;
  line-height: 1;
}

.effort-card {
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  background: #0d2c5d;
  color: var(--white);
}

.effort-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.45;
}

.effort-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: conic-gradient(var(--yellow), var(--green), var(--blue-2), var(--yellow));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.feature-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 28px;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 52px rgba(6, 59, 143, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(6, 59, 143, 0.14);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-2), var(--green));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.split-section {
  background: linear-gradient(180deg, #f5f9ff, #ffffff);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 22px;
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 48px rgba(6, 59, 143, 0.08);
}

.step span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
}

.step p {
  margin-bottom: 0;
}

.benefits-band {
  background: #082e6b;
  color: var(--white);
}

.benefits-band .section-heading p {
  color: var(--green);
}

.benefits-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefit {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.benefit strong {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 1.3rem;
}

.benefit p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 440px);
  gap: 56px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  color: var(--ink);
  font-weight: 800;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(11, 110, 232, 0.12);
}

.contact-form .btn {
  margin-top: 8px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.footer {
  padding: 30px 0;
  background: #061c46;
  color: rgba(255, 255, 255, 0.74);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.36;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.72;
  }
}

@keyframes drawRoute {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .feature-grid,
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .phone-stage {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .container,
  .nav {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    height: 68px;
  }

  .brand-logo {
    width: 118px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(6, 28, 70, 0.96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
  }

  h1 {
    font-size: clamp(4.1rem, 22vw, 6.2rem);
  }

  .hero-actions {
    display: grid;
  }

  .feature-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .step {
    grid-template-columns: 44px 1fr;
    padding: 18px;
  }

  .step span {
    width: 40px;
    height: 40px;
  }

  .phone {
    width: min(100%, 326px);
  }

  .pulse-ring {
    width: 280px;
    height: 280px;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
