:root {
  color-scheme: light;
  --ink: #142326;
  --muted: #5b6668;
  --paper: #fff8ee;
  --cream: #f8efe1;
  --teal: #0d6f73;
  --teal-dark: #084e52;
  --coral: #f16f54;
  --gold: #f2bc45;
  --mint: #a8d9ca;
  --line: rgba(20, 35, 38, 0.14);
  --shadow: 0 22px 60px rgba(10, 41, 44, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 248, 238, 0.93);
  box-shadow: 0 10px 30px rgba(20, 35, 38, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-size: 0.72rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  font-size: 0.95rem;
  font-weight: 750;
}

.site-nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: min(760px, 88vh);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 110px clamp(20px, 5vw, 72px) 92px;
  background: var(--teal-dark);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 60% 50%;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 28, 31, 0.82) 0%, rgba(9, 28, 31, 0.62) 34%, rgba(9, 28, 31, 0.16) 68%, rgba(9, 28, 31, 0.1) 100%),
    linear-gradient(0deg, rgba(9, 28, 31, 0.33), rgba(9, 28, 31, 0.02) 44%);
}

.hero-copy {
  width: min(620px, 100%);
  color: #fff;
}

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

.hero .eyebrow {
  color: #ffd16b;
}

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

h1 {
  max-width: 10ch;
  margin-bottom: 20px;
  font-size: 7.4rem;
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 3.7rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.28rem;
  line-height: 1.5;
}

.hero-actions,
.meter-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.button-primary {
  color: #102326;
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.12);
}

.mission-status {
  position: absolute;
  right: clamp(18px, 4vw, 52px);
  bottom: 24px;
  display: flex;
  width: min(360px, calc(100% - 36px));
  align-items: center;
  gap: 13px;
  color: #fff;
}

.status-light {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 7px rgba(168, 217, 202, 0.18);
}

.mission-status p {
  margin: 0;
  line-height: 1.35;
}

.mission-status span:not(.status-light) {
  display: block;
  color: rgba(255, 255, 255, 0.8);
}

.section {
  padding: clamp(64px, 10vw, 118px) clamp(20px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: var(--paper);
}

.intro-copy h2 {
  max-width: 820px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.stat-row div {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  background: #fffdf8;
}

.stat-row strong {
  color: var(--teal);
  font-size: 3.2rem;
  line-height: 1;
}

.stat-row span {
  color: var(--muted);
  font-weight: 750;
}

.perks-section {
  background: #d7efe7;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

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

.perk-card {
  min-height: 270px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(13, 111, 115, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.perk-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.6;
}

.perk-icon {
  position: relative;
  display: block;
  width: 62px;
  height: 52px;
  margin-bottom: 30px;
}

.perk-icon::before,
.perk-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--coral);
}

.perk-icon::before {
  width: 46px;
  height: 28px;
  left: 8px;
  bottom: 2px;
  border-radius: 50% 50% 45% 45%;
}

.perk-icon::after {
  width: 16px;
  height: 16px;
  left: 2px;
  top: 2px;
  box-shadow: 21px -2px 0 var(--gold), 43px 6px 0 var(--teal);
}

.perk-icon-two::before {
  background: var(--teal);
}

.perk-icon-three::before {
  background: var(--gold);
}

.schedule-section {
  background: var(--teal-dark);
  color: #fff;
}

.schedule-section .section-kicker {
  color: var(--gold);
}

.timeline {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px clamp(18px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.08);
}

.timeline time {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 900;
}

.timeline p {
  margin: 0;
}

.timeline span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.purr-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: #fffdf8;
}

.purr-message {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.6;
}

.meter-panel {
  align-content: center;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.meter-shell {
  position: relative;
  width: min(100%, 420px);
  height: 24px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
}

.meter-fill {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--mint));
  transition: width 260ms ease;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: #fff;
  background: #142326;
}

.site-footer p {
  margin: 0;
  font-weight: 750;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 780px;
    align-items: end;
  }

  .hero-image {
    object-position: 66% 50%;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(9, 28, 31, 0.9) 0%, rgba(9, 28, 31, 0.64) 44%, rgba(9, 28, 31, 0.08) 100%),
      linear-gradient(90deg, rgba(9, 28, 31, 0.58), rgba(9, 28, 31, 0.06));
  }

  .intro-band,
  .purr-section {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 5.5rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .perk-grid {
    grid-template-columns: 1fr;
  }

  .mission-status {
    position: static;
    margin-top: 34px;
  }
}

@media (max-width: 680px) {
  .site-header {
    display: grid;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 740px;
    padding-top: 132px;
    padding-bottom: 46px;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-text {
    font-size: 1.08rem;
  }

  .stat-row strong {
    font-size: 2.6rem;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    display: grid;
  }
}
