:root {
  --blue: #0065a8;
  --blue-dark: #074f80;
  --green: #00843d;
  --green-dark: #066735;
  --ink: #10243a;
  --muted: #5f7184;
  --line: #d9e8f2;
  --ice: #f3f9ff;
  --mint: #effbf4;
  background: #ffffff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--ice) 48%, #ffffff 100%);
  margin: 0;
  min-width: 320px;
}

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 clamp(16px, 4vw, 52px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand,
nav,
.download-row,
.info-grid,
.cta-panel,
footer {
  align-items: center;
  display: flex;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  height: 38px;
  overflow: hidden;
  padding: 5px;
  place-items: center;
  width: 38px;
}

.brand-mark img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

nav {
  color: var(--muted);
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 800;
}

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

main {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(20px, 4vw, 48px) 16px 48px;
}

.hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 132, 61, 0.12), transparent 28%),
    linear-gradient(135deg, #fff, var(--ice) 56%, var(--mint));
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: clamp(24px, 5vw, 70px);
  grid-template-columns: minmax(0, 1fr) 360px;
  min-height: 520px;
  padding: clamp(28px, 6vw, 72px);
}

.hero-copy {
  align-self: center;
}

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

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

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 22px;
  max-width: 10ch;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.08;
  margin-bottom: 12px;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy > p:not(.eyebrow) {
  font-size: 1.06rem;
  max-width: 64ch;
}

.download-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.store-badge {
  background: var(--ink);
  border-radius: 8px;
  color: #fff;
  display: grid;
  min-height: 58px;
  min-width: 166px;
  padding: 9px 14px;
}

.store-badge:hover {
  background: var(--blue-dark);
}

.store-badge span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
}

.store-badge strong {
  font-size: 1.08rem;
}

.hero-card {
  align-self: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 79, 134, 0.14);
  display: grid;
  gap: 14px;
  padding: 18px;
  position: relative;
}

.hero-card div {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 12px;
  min-height: 72px;
  padding: 12px;
  position: relative;
  z-index: 1;
}

.hero-card strong {
  background: var(--blue);
  border-radius: 8px;
  color: #fff;
  display: grid;
  flex: 0 0 38px;
  height: 38px;
  place-items: center;
}

.hero-card span:not(.route-line) {
  color: var(--ink);
  font-weight: 900;
}

.route-line {
  background: linear-gradient(180deg, var(--blue), var(--green));
  bottom: 48px;
  left: 36px;
  position: absolute;
  top: 48px;
  width: 3px;
}

.info-grid {
  align-items: stretch;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.info-grid article,
.faq-section,
.cta-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-grid article {
  padding: 20px;
}

.icon {
  background: var(--mint);
  border: 1px solid #cbeed8;
  border-radius: 8px;
  color: var(--green-dark);
  display: grid;
  font-weight: 900;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  width: 38px;
}

.faq-section {
  margin-top: 18px;
  padding: clamp(20px, 4vw, 34px);
}

.section-heading {
  margin-bottom: 18px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
}

summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
}

.cta-panel {
  gap: 24px;
  justify-content: space-between;
  margin-top: 18px;
  padding: clamp(20px, 4vw, 32px);
}

.cta-panel .download-row {
  margin-top: 0;
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  gap: 12px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 22px 16px 34px;
}

@media (max-width: 860px) {
  .site-header,
  .cta-panel,
  footer {
    align-items: flex-start;
    display: grid;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    align-self: stretch;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 10px;
    padding-bottom: 12px;
    padding-top: 12px;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  .hero {
    padding: 22px;
  }

  .store-badge {
    width: 100%;
  }
}
