:root {
  --cyan: #00a7e1;
  --cyan-deep: #0077a8;
  --cyan-ink: #0a4d66;
  --navy: #07364a;
  --foam: #eef9fd;
  --paper: #ffffff;
  --beak: #ff8a14;
  --gold: #e0a825;
  --bag: #1b7eb5;
  --line: #b9e3f3;
  --ok: #0c7a56;
  --ink: #07364a;
  --muted: #3d6574;
  --shadow: 0 18px 50px rgba(7, 54, 74, 0.12);
  --radius: 28px;
  --display: "Titan One", "Arial Black", system-ui, sans-serif;
  --body: "DM Sans", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
  background:
    radial-gradient(circle at 12% -10%, rgba(0, 167, 225, 0.22), transparent 42%),
    radial-gradient(circle at 90% 8%, rgba(255, 138, 20, 0.16), transparent 36%),
    var(--foam);
}

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

a {
  color: inherit;
}

button,
.btn {
  font: inherit;
  cursor: pointer;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 80;
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--foam) 86%, white);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid color-mix(in srgb, var(--cyan) 28%, transparent);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  background: #e4f4fc;
  border: 3px solid #fff;
  box-shadow: 0 6px 0 var(--cyan);
}

.brand-name {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand-name span {
  display: block;
  margin-top: 4px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.nav-links a:hover {
  color: var(--cyan-deep);
}

.nav-cta {
  display: flex;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

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

.btn:focus-visible,
.copy:focus-visible,
.nav-links a:focus-visible,
.press a:focus-visible,
.brand:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.btn-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 8px 0 #041c27;
}

.btn-primary:hover {
  background: #0a4a64;
}

.btn-accent {
  color: var(--navy);
  background: var(--beak);
  box-shadow: 0 8px 0 #c65f00;
}

.btn-ghost {
  color: var(--navy);
  background: #fff;
  border: 2px solid var(--navy);
}

.masthead {
  padding: 20px 0 8px;
}

.site-banner {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #e3f3fc;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: start;
  padding: 28px 0 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 6.4vw, 76px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.hero h1 em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  color: var(--cyan);
}

.lede {
  max-width: 38ch;
  margin: 20px 0 28px;
  font-size: 20px;
  color: var(--muted);
}

.wristband {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 14px 18px 16px;
  border-radius: 18px;
  color: #fff;
  background:
    repeating-linear-gradient(
      90deg,
      var(--cyan) 0 18px,
      var(--cyan-deep) 18px 22px
    );
  box-shadow: var(--shadow);
}

.wristband::before,
.wristband::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, #d9eff7 42%, #7fb8cc);
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 4px #eaf7fc;
}

.wristband::before {
  left: -8px;
}

.wristband::after {
  right: -8px;
}

.wristband-top,
.wristband-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wristband-ca {
  overflow: hidden;
  font-family: var(--mono);
  font-size: clamp(12px, 1.7vw, 15px);
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.copy {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.stat {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.stat b {
  display: block;
  font-family: var(--mono);
  font-size: 18px;
}

.stat span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.kit-frame {
  background: #d7eef8;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.kit {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.marquee {
  overflow: hidden;
  margin: 12px 0 8px;
  padding: 14px 0;
  border-block: 2px solid var(--navy);
  background: var(--navy);
  color: #fff;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 36px;
  animation: ticker 32s linear infinite;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding: var(--space-6) 0;
  scroll-margin-top: 84px;
}

#ca,
#top,
#buy,
#chart,
#charity,
#story {
  scroll-margin-top: 84px;
}

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

.section h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 0.95;
}

.kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.panel {
  padding: 28px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}


.facts {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.facts li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}

.facts strong {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--cyan-deep);
}

.charity {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  color: #fff;
  min-height: 420px;
  display: grid;
  align-items: end;
}

.charity img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.charity-copy {
  position: relative;
  padding: 36px;
  background: linear-gradient(transparent, rgba(7, 54, 74, 0.92));
}

.charity a {
  color: var(--gold);
}

.press {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.press a {
  display: flex;
  min-height: 120px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: #fff;
  border-radius: 22px;
  text-decoration: none;
  border: 1px solid var(--line);
}

.press a:hover {
  border-color: var(--cyan);
}

.press span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}

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

.step {
  padding: 22px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--line);
}

.step b {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 28px;
  color: var(--cyan);
}

.chart {
  margin-top: 28px;
  height: 460px;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #0d1117;
}

.chart iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 32px 0 110px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer .wrap {
  display: grid;
  gap: 12px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 50;
  display: none;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ok);
  color: #fff;
  font-weight: 800;
}

.toast.show {
  display: block;
}

.dock {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 45;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.dock .btn {
  flex: 1;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero,
  .split,
  .press,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 24px;
  }


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

  .dock {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track,
  .btn {
    animation: none;
    transition: none;
  }
}
