:root {
  --blue: #003f7d;
  --blue-deep: #002f60;
  --gold: #f4b223;
  --gold-deep: #c97619;
  --ink: #0b1e33;
  --muted: #5f7084;
  --ice: #eef7fb;
  --line: #d7e4ec;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--white);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(238, 247, 251, 0.74), rgba(255, 255, 255, 0) 46%),
    var(--white);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--blue);
  text-decoration: none;
}

.brand-mark {
  width: 58px;
  flex: 0 0 auto;
}

.mark-disc,
.large-disc {
  fill: var(--blue);
}

.mark-route,
.large-route {
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
}

.mark-route {
  stroke-width: 5;
}

.large-route {
  stroke-width: 16;
}

.bear-head,
.large-head {
  fill: var(--white);
}

.bear-ear,
.large-ear,
.bear-muzzle,
.large-muzzle {
  fill: var(--gold);
}

.bear-eye,
.large-eye,
.bear-nose,
.large-nose {
  fill: var(--blue);
}

.bear-smile,
.large-smile {
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bear-smile {
  stroke-width: 3.5;
}

.large-smile {
  stroke-width: 12;
}

.wordmark {
  display: block;
  overflow-wrap: anywhere;
  color: var(--blue);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.launch-note {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

main {
  overflow: hidden;
}

.splash {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(290px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100svh - 176px);
  margin: 0 auto;
  padding: clamp(46px, 7vw, 88px) 0 clamp(34px, 5vw, 58px);
}

.route-map {
  position: absolute;
  inset: 0 -6vw auto;
  height: 56%;
  opacity: 0.42;
  pointer-events: none;
}

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

.map-line {
  fill: none;
  stroke: var(--line);
  stroke-linecap: round;
  stroke-width: 2.5;
  stroke-dasharray: 7 12;
}

.map-line-two {
  stroke: #e8c566;
  opacity: 0.5;
}

.map-dot {
  fill: var(--white);
  stroke: var(--blue);
  stroke-width: 3;
}

.map-dot.active {
  fill: var(--gold);
}

.hero-copy {
  position: relative;
  max-width: 720px;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(48px, 7.2vw, 92px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
}

.dek {
  max-width: 620px;
  margin: 26px 0 0;
  color: #263d55;
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.25;
}

.bear-feature {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 390px);
}

.large-mark {
  display: block;
  width: 100%;
  filter: drop-shadow(0 26px 34px rgba(0, 63, 125, 0.13));
}

.status-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.status-band div {
  min-width: 0;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.78);
}

.status-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-band strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--blue-deep);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    width: min(100% - 28px, 560px);
    padding-top: 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 52px;
  }

  .wordmark {
    font-size: 20px;
  }

  .launch-note {
    padding-top: 8px;
    font-size: 11px;
  }

  .splash {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 560px);
    min-height: auto;
    padding-top: 34px;
  }

  .route-map {
    height: 44%;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(46px, 15vw, 70px);
  }

  .bear-feature {
    justify-self: start;
    width: min(78vw, 300px);
    margin-top: -10px;
  }

  .status-band,
  .site-footer {
    width: min(100% - 28px, 560px);
  }

  .status-band {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}

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