:root {
  --bg: #080706;
  --bg-2: #0f0d0a;
  --panel: #19140f;
  --panel-2: #211912;
  --line: #3c3025;
  --cream: #f6e6bf;
  --muted: #c6b393;
  --dim: #8d7b61;
  --orange: #d56b22;
  --gold: #e0b34f;
  --green: #657f55;
  --red: #b94736;
  --blue: #4b7185;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 70px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", system-ui, sans-serif;
  letter-spacing: 0;
}

body.lightbox-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(213, 107, 34, 0.06), transparent 28rem),
    radial-gradient(circle at 84% 8%, rgba(213, 107, 34, 0.18), transparent 16rem),
    var(--bg);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.92), rgba(8, 7, 6, 0.58));
  border-bottom: 1px solid rgba(246, 230, 191, 0.08);
  backdrop-filter: blur(14px);
}

.header-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
}

.menu-button {
  width: 38px;
  height: 38px;
  display: grid;
  gap: 5px;
  align-content: center;
  padding: 0 9px;
  border: 1px solid rgba(246, 230, 191, 0.18);
  border-radius: 8px;
  background: rgba(25, 20, 15, 0.72);
  color: var(--cream);
}

.menu-button span {
  display: block;
  height: 2px;
  background: currentColor;
}

.mobile-menu {
  position: absolute;
  top: 58px;
  left: 12px;
  right: 12px;
  display: grid;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  background: rgba(15, 13, 10, 0.96);
  border: 1px solid rgba(246, 230, 191, 0.14);
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}

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

.mobile-menu a {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(246, 230, 191, 0.09);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 96px 20px 34px;
}

.hero-media,
.honor-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(180deg, rgba(8, 7, 6, 0.18), rgba(8, 7, 6, 0.4) 42%, rgba(8, 7, 6, 0.96) 88%),
    linear-gradient(90deg, rgba(8, 7, 6, 0.82), rgba(8, 7, 6, 0.12)),
    url("./assets/hero-road.jpg");
  background-size: cover;
  background-position: 64% center;
}

.hero-content {
  width: min(100%, 480px);
  padding-bottom: 48px;
}

.hero-logo {
  width: min(58vw, 240px);
  margin: 0 0 14px -2px;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.64));
}

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

h1 {
  font-size: clamp(34px, 11.5vw, 48px);
  line-height: 0.94;
  font-weight: 900;
  color: var(--cream);
  text-wrap: balance;
}

.hero-date-badge {
  width: fit-content;
  margin-top: 16px;
  padding: 9px 11px;
  display: grid;
  gap: 3px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(185, 62, 38, 0.22), rgba(224, 179, 79, 0.1)),
    rgba(12, 9, 7, 0.72);
  border: 1px solid rgba(224, 179, 79, 0.42);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.hero-date-badge span {
  color: #ff7258;
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
}

.hero-date-badge strong {
  color: var(--cream);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-date-badge small {
  color: #ff7258;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
}

.hero-subtitle {
  margin-top: 16px;
  color: var(--gold);
  font-weight: 900;
  font-size: 17px;
  line-height: 1.35;
}

.hero-copy {
  margin-top: 12px;
  color: #ead8b6;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 650;
}

.hero-actions {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.button,
.sticky-cta a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
}

.button.primary,
.sticky-cta a {
  background: var(--orange);
  color: #120c07;
}

.button.ghost {
  color: var(--cream);
  border: 1px solid rgba(213, 107, 34, 0.72);
  background: rgba(8, 7, 6, 0.42);
}

.section-band,
.section-block {
  padding: 54px 20px;
}

.section-band {
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0), rgba(213, 107, 34, 0.06)),
    #0c0a08;
  border-top: 1px solid rgba(246, 230, 191, 0.08);
  border-bottom: 1px solid rgba(246, 230, 191, 0.08);
}

.section-kicker {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.intro h2,
.section-heading h2,
.split-card h2,
.honor h2 {
  font-size: 28px;
  line-height: 1.14;
  font-weight: 900;
  color: var(--cream);
}

.intro p:not(.section-kicker),
.section-heading p:not(.section-kicker),
.honor-content p:not(.section-kicker) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.level-scroller {
  margin: 26px -20px 0;
  padding: 0 20px 8px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.level-scroller::-webkit-scrollbar {
  display: none;
}

.level-reward-intro {
  margin-top: 24px;
  padding: 18px;
  background:
    radial-gradient(circle at 88% 8%, rgba(224, 179, 79, 0.16), transparent 9rem),
    linear-gradient(180deg, rgba(246, 230, 191, 0.04), rgba(0, 0, 0, 0)),
    var(--panel);
  border: 1px solid rgba(246, 230, 191, 0.12);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.level-reward-intro h3 {
  color: var(--cream);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 950;
}

.level-reward-intro p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.reward-principle {
  position: relative;
  margin-top: 12px;
  padding: 14px 16px 14px 18px;
  background:
    linear-gradient(90deg, rgba(202, 42, 26, 0.28), rgba(202, 42, 26, 0.08) 48%, transparent),
    rgba(12, 9, 7, 0.46);
  border-top: 1px solid rgba(221, 58, 39, 0.52);
  border-bottom: 1px solid rgba(221, 58, 39, 0.24);
  border-radius: 4px;
}

.reward-principle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  bottom: 13px;
  width: 3px;
  background: linear-gradient(#ff3f2f, rgba(202, 42, 26, 0.36));
}

.reward-principle .reward-principle-lead {
  color: #ff4a38;
  font-family: Georgia, "Times New Roman", "PingFang TC", "Noto Sans TC", serif;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 950;
  font-style: italic;
  letter-spacing: 0.03em;
}

.reward-principle p {
  margin-top: 7px;
  color: rgba(255, 185, 174, 0.92);
  font-size: 11.8px;
  line-height: 1.72;
  font-weight: 650;
  font-style: italic;
}

.reward-principle strong {
  color: #ff3f2f;
  font-weight: 950;
  font-style: normal;
  background: linear-gradient(180deg, transparent 50%, rgba(202, 42, 26, 0.42) 50%);
}

.level-card {
  flex: 0 0 min(82vw, 320px);
  scroll-snap-align: start;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(246, 230, 191, 0.04), rgba(0, 0, 0, 0)),
    var(--panel);
  border: 1px solid rgba(246, 230, 191, 0.12);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.level-card:nth-child(2) {
  border-left-color: var(--orange);
}

.level-card:nth-child(3) {
  border-left-color: var(--gold);
}

.level-card.wild {
  border-left-color: var(--red);
}

.level-card h3 {
  font-size: 21px;
  font-weight: 900;
}

.level-logic {
  margin-top: 5px;
  color: var(--gold);
  font-weight: 900;
  font-size: 14px;
}

.level-card p:not(.level-logic) {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.level-card strong {
  display: block;
  margin-top: 16px;
  color: var(--cream);
  font-size: 13px;
  line-height: 1.5;
}

.level-rewards {
  margin-top: 14px;
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.level-rewards figure {
  margin: 0;
  min-height: 96px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  cursor: zoom-in;
  background:
    radial-gradient(circle at 50% 30%, rgba(224, 179, 79, 0.16), transparent 58%),
    #0d0a07;
  border: 1px solid rgba(246, 230, 191, 0.12);
  border-radius: 6px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.level-rewards figure:focus-visible,
.level-rewards figure:hover {
  border-color: rgba(224, 179, 79, 0.58);
  box-shadow: 0 0 0 2px rgba(224, 179, 79, 0.16);
  transform: translateY(-2px);
}

.level-rewards img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  padding: 6px;
  align-self: center;
}

.level-rewards figure:nth-child(2) img {
  object-fit: cover;
  padding: 0;
}

.level-rewards figure:nth-child(3) img {
  height: 74px;
  padding: 4px;
}

.level-rewards figcaption {
  padding: 6px 5px;
  color: var(--gold);
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
  border-top: 1px solid rgba(246, 230, 191, 0.09);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(3, 2, 1, 0.88);
  backdrop-filter: blur(14px);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox figure {
  width: min(100%, 680px);
  max-height: 84svh;
  margin: 0;
  display: grid;
  gap: 12px;
  place-items: center;
}

.image-lightbox img {
  max-width: 100%;
  max-height: min(74svh, 760px);
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.72));
}

.image-lightbox figcaption {
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(246, 230, 191, 0.28);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(20, 13, 8, 0.86);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.section-routes {
  background: #0c0a08;
}

.story-section {
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0), rgba(180, 71, 54, 0.06)),
    var(--bg);
}

.story-section h2 {
  font-size: 31px;
  line-height: 1.12;
  font-weight: 950;
  color: var(--cream);
}

.story-prose {
  margin-top: 20px;
  display: grid;
  gap: 16px;
  padding-left: 16px;
  border-left: 3px solid var(--orange);
}

.story-prose p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.86;
  font-weight: 560;
}

.route-list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.route-row {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 86px;
  padding: 14px 14px;
  background: var(--panel);
  border: 1px solid rgba(246, 230, 191, 0.12);
  border-radius: 8px;
}

.route-row .pin {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(246, 230, 191, 0.12);
}

.route-row.orange .pin {
  background: var(--orange);
}

.route-row.gold .pin {
  background: var(--gold);
}

.route-row.red .pin {
  background: var(--red);
}

.route-row h3 {
  font-size: 16px;
  line-height: 1.24;
  font-weight: 900;
}

.route-arrow {
  color: var(--orange);
  font-size: 22px;
  font-weight: 950;
  text-align: center;
}

.route-rule {
  margin-top: 16px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(213, 107, 34, 0.08), rgba(0, 0, 0, 0)),
    var(--panel);
  border: 1px solid rgba(213, 107, 34, 0.35);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
}

.route-rule h3 {
  color: var(--cream);
  font-size: 17px;
  font-weight: 950;
}

.route-rule p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

.route-rule strong {
  color: var(--gold);
}

.note {
  margin-top: 14px;
  color: var(--dim);
  font-size: 12px;
  line-height: 1.6;
}

.discovery-section {
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 214, 52, 0.2), transparent 10rem),
    radial-gradient(circle at 0% 6%, rgba(217, 31, 22, 0.24), transparent 14rem),
    linear-gradient(180deg, rgba(142, 22, 17, 0.22), rgba(8, 7, 6, 0) 34%),
    var(--bg-2);
}

.wild-alert {
  overflow: hidden;
  margin: -18px 0 34px;
  padding: 0;
  background: #120605;
  border: 1px solid rgba(255, 218, 112, 0.32);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.wild-alert img {
  display: block;
  width: 100%;
  height: auto;
}

.point-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.wild-manifesto {
  margin-top: 20px;
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.wild-manifesto p:first-child {
  color: var(--cream);
  font-weight: 800;
}

.point-list span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  background: rgba(25, 20, 15, 0.95);
  border: 1px solid rgba(246, 230, 191, 0.11);
  border-left: 3px solid rgba(213, 107, 34, 0.8);
  border-radius: 6px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
}

.point-list .route-replaced {
  flex-wrap: wrap;
  gap: 5px 7px;
}

.point-list .route-replaced del {
  color: rgba(233, 216, 186, 0.58);
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(209, 78, 45, 0.95);
}

.point-list .route-replaced b {
  color: var(--gold);
  font-size: 15px;
  line-height: 1;
}

.point-list .route-replaced strong {
  color: var(--cream);
  font-weight: 900;
}

.discovery-note {
  margin-top: 18px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(213, 107, 34, 0.96), rgba(224, 179, 79, 0.84));
  color: #130d08;
  border-radius: 8px;
}

.discovery-note h3 {
  font-size: 18px;
  font-weight: 950;
}

.discovery-note p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 800;
}

.timeline-section {
  background: #0a0807;
}

.timeline {
  position: relative;
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 8px;
  left: 8px;
  width: 2px;
  background: linear-gradient(var(--orange), var(--red), var(--green));
}

.timeline article {
  position: relative;
  padding-left: 34px;
}

.timeline span {
  position: absolute;
  left: 1px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: var(--orange);
  border: 3px solid var(--cream);
  border-radius: 50%;
}

.timeline .stop span {
  background: var(--red);
}

.timeline .finish span {
  background: var(--green);
}

.timeline h3 {
  font-size: 17px;
  font-weight: 900;
}

.timeline p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.timeline-note {
  margin-top: 24px;
  padding: 18px;
  color: #150e08;
  background: linear-gradient(135deg, rgba(224, 179, 79, 0.92), rgba(213, 107, 34, 0.94));
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 850;
}

.emergency-service-card {
  margin-top: 16px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(185, 62, 38, 0.18), rgba(224, 179, 79, 0.06)),
    rgba(20, 14, 9, 0.94);
  border: 1px solid rgba(213, 107, 34, 0.34);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(246, 230, 191, 0.04);
}

.emergency-service-card h3 {
  color: var(--cream);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: 0;
}

.emergency-phone-list {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.emergency-phone-list a {
  min-height: 46px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  background: rgba(8, 7, 6, 0.58);
  border: 1px solid rgba(246, 230, 191, 0.12);
  border-radius: 6px;
}

.emergency-phone-list span {
  color: #ff7258;
  font-size: 14px;
  font-weight: 950;
}

.emergency-phone-list strong {
  color: var(--cream);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.emergency-service-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.65;
}

.checklist-section {
  background:
    linear-gradient(180deg, rgba(213, 107, 34, 0.05), rgba(0, 0, 0, 0)),
    var(--bg-2);
}

.split-card {
  display: grid;
  gap: 14px;
}

.cert-stack {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.cert-panel {
  padding: 18px;
  background: var(--panel);
  border: 1px solid rgba(246, 230, 191, 0.12);
  border-left: 4px solid var(--green);
  border-radius: 8px;
}

.cert-panel.highlight {
  border-left-color: var(--orange);
  background:
    linear-gradient(180deg, rgba(213, 107, 34, 0.1), rgba(0, 0, 0, 0)),
    var(--panel);
}

.cert-panel.emphasis {
  border-left-color: var(--gold);
  background:
    linear-gradient(135deg, rgba(224, 179, 79, 0.14), rgba(213, 107, 34, 0.05)),
    var(--panel);
}

.cert-panel h3 {
  color: var(--cream);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 950;
}

.cert-panel > p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.cert-levels {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.cert-levels section {
  padding: 14px;
  background: rgba(8, 7, 6, 0.34);
  border: 1px solid rgba(246, 230, 191, 0.1);
  border-radius: 6px;
}

.cert-levels h4 {
  margin: 0;
  color: var(--gold);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 950;
}

.cert-levels p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}

.safety-only {
  margin-top: 20px;
}

.split-card > div {
  padding: 20px;
  background: var(--panel);
  border: 1px solid rgba(246, 230, 191, 0.12);
  border-radius: 8px;
}

.check-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  background: var(--green);
}

.orange-check li::before {
  background: var(--orange);
}

.honor {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 70px 20px 44px;
}

.honor-media {
  background-image:
    linear-gradient(180deg, rgba(8, 7, 6, 0.08), rgba(8, 7, 6, 0.55) 45%, rgba(8, 7, 6, 0.98) 92%),
    url("./assets/honor-night.jpg");
  background-position: 58% center;
}

.honor-date {
  margin: 18px 0 22px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
}

.sticky-cta {
  position: fixed;
  z-index: 25;
  left: 12px;
  right: 12px;
  bottom: 12px;
}

.sticky-cta a {
  width: 100%;
  min-height: 54px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.48);
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    padding: 0 40px;
  }

  .menu-button {
    display: none;
  }

  .mobile-menu {
    position: static;
    display: flex;
    gap: 24px;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .mobile-menu a {
    padding: 0;
    border: 0;
    font-size: 13px;
  }

  .hero,
  .section-band,
  .section-block,
  .honor {
    padding-left: max(40px, calc((100vw - 1120px) / 2));
    padding-right: max(40px, calc((100vw - 1120px) / 2));
  }

  .hero-content {
    max-width: 620px;
    padding-bottom: 0;
  }

  h1 {
    font-size: 68px;
  }

  .hero-logo {
    width: 320px;
    margin-bottom: 22px;
  }

  .level-scroller {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
  }

  .level-card {
    flex-basis: auto;
  }

  .level-rewards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .level-rewards figure:nth-child(3) img {
    height: 74px;
  }

  .split-card {
    grid-template-columns: 1fr 1fr;
  }

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

  .emergency-phone-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .emergency-phone-list a {
    align-items: flex-start;
    flex-direction: column;
  }

  .sticky-cta {
    display: none;
  }

  .hero-actions {
    display: grid;
  }
}
