:root {
  --ink: #07120d;
  --ink-2: #0b1d14;
  --panel: #10271b;
  --panel-2: #163824;
  --cream: #f5f0df;
  --paper: #fbfaf3;
  --white: #ffffff;
  --lime: #c8ff38;
  --lime-dark: #93cc00;
  --gold: #ffcb47;
  --muted: #aab8ad;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.section {
  padding: 110px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* HEADER */

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 82px;
  color: var(--white);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    height 0.25s ease;
}

.site-header.scrolled {
  height: 70px;
  background: rgba(7, 18, 13, 0.92);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  position: relative;
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 900;
  box-shadow: inset 0 0 0 4px rgba(200, 255, 56, 0.09);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px -6px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.65;
}

.brand-mark span {
  position: relative;
  z-index: 1;
  padding: 0 3px;
  background: var(--ink);
}

.site-header:not(.scrolled) .brand-mark span {
  background: rgba(7, 18, 13, 0.6);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--lime);
}

.site-nav .nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  color: var(--lime);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: white;
  transition: 0.2s ease;
}

/* HERO */

.hero {
  position: relative;
  min-height: 800px;
  height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(3, 12, 8, 0.45), rgba(3, 12, 8, 0.7)),
    url("assets/hero-poster.jpg") center / cover;
}

.hero-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  object-fit: cover;
  object-position: center;
  background: var(--ink);
}

.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 12, 8, 0.93) 0%,
      rgba(3, 12, 8, 0.74) 44%,
      rgba(3, 12, 8, 0.25) 76%,
      rgba(3, 12, 8, 0.38) 100%
    ),
    linear-gradient(
      0deg,
      rgba(3, 12, 8, 0.72) 0%,
      transparent 40%
    );
}

.field-lines {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.13;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0 9.8%,
    rgba(255, 255, 255, 0.55) 10% 10.05%
  );
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--lime-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: currentColor;
}

.hero h1,
h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(64px, 8.7vw, 132px);
}

.hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 14px 34px rgba(200, 255, 56, 0.18);
}

.button-primary:hover {
  background: white;
  transform: translateY(-1px);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  color: white;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.button-dark {
  color: var(--lime);
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--lime);
}

.play-icon {
  font-size: 10px;
}

.hero-proof {
  display: flex;
  gap: 42px;
  margin-top: 55px;
}

.hero-proof div {
  display: grid;
}

.hero-proof strong {
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-proof span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  display: grid;
  place-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 30px;
  background: linear-gradient(var(--lime), transparent);
}

/* COMMON HEADINGS */

.section-heading h2,
.download h2,
.story-copy h2 {
  font-size: clamp(48px, 6vw, 84px);
}

.section-heading .kicker,
.download .kicker,
.story-copy .kicker {
  margin-bottom: 20px;
}

.centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.centered .kicker {
  color: var(--lime);
}

.centered > p:last-child {
  color: var(--muted);
}

/* INTRO */

.intro {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
  align-items: end;
}

.intro-copy {
  padding-bottom: 6px;
}

.intro-copy p {
  color: #465249;
}

.intro-copy .lead {
  margin-top: 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 70px;
}

.feature-card {
  position: relative;
  min-height: 300px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(7, 18, 13, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.45);
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -70px;
  bottom: -90px;
  border: 22px solid rgba(147, 204, 0, 0.1);
  border-radius: 50%;
}

.feature-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #a2aa9e;
  font-size: 12px;
  font-weight: 700;
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--lime);
  background: var(--ink);
  font-size: 25px;
}

.feature-card h3 {
  margin: 54px 0 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-card p {
  max-width: 300px;
  margin: 0;
  color: #566158;
  font-size: 14px;
}

/* HOW TO PLAY */

.how {
  color: var(--white);
  background: var(--ink);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step {
  border-right: 1px solid var(--line);
}

.step:first-child {
  border-left: 1px solid var(--line);
}

.step button {
  width: 100%;
  min-height: 130px;
  padding: 25px;
  border: 0;
  color: white;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.step button span {
  display: block;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.step button strong {
  display: block;
  margin-top: 13px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
  font-weight: 800;
  text-transform: uppercase;
}

.step-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.step-panel p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 25px;
  color: var(--muted);
  font-size: 14px;
  transition: padding 0.3s ease;
}

.step.active {
  background: rgba(255, 255, 255, 0.04);
}

.step.active .step-panel {
  grid-template-rows: 1fr;
}

.step.active .step-panel p {
  padding: 0 25px 30px;
}

/* RULE LINKS */

.rules {
  background: var(--paper);
}

.rules-heading {
  margin-bottom: 64px;
}

.rules-heading .kicker {
  color: var(--lime-dark);
}

.rules-heading > p:last-child {
  max-width: 650px;
  margin: 24px auto 0;
  color: #566158;
}

.rule-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.rule-link-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 36px;
  overflow: hidden;
  border: 1px solid rgba(7, 18, 13, 0.14);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 18px 55px rgba(7, 18, 13, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.rule-link-card::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -110px;
  bottom: -120px;
  border: 28px solid rgba(147, 204, 0, 0.1);
  border-radius: 50%;
}

.rule-link-card:hover {
  border-color: var(--lime-dark);
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(7, 18, 13, 0.13);
}

.rule-link-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #8b968d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.rule-link-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--lime);
  background: var(--ink);
  font-size: 27px;
}

.rule-link-card h3 {
  margin: 55px 0 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.rule-link-card p {
  margin: 0 0 30px;
  color: #566158;
  font-size: 15px;
}

.rule-link-card strong {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.rule-link-card strong span {
  color: var(--lime-dark);
  font-size: 18px;
}

.rules-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  padding: 28px;
  border-radius: 18px;
  background: var(--cream);
}

.rules-contact p {
  margin: 0;
  font-weight: 700;
}

/* DOWNLOAD */

.download {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--panel);
}

.download::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.5) 1px,
      transparent 1px
    );
  background-size: 48px 48px;
}

.download-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -320px;
  right: -140px;
  border-radius: 50%;
  background: rgba(200, 255, 56, 0.13);
  filter: blur(10px);
}

.download-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.download .kicker {
  color: var(--lime);
}

.download p {
  max-width: 610px;
  color: var(--muted);
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.store-button {
  min-width: 190px;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 17px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 11px;
  color: white;
  background: #050705;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.store-button:hover {
  border-color: var(--lime);
  transform: translateY(-2px);
}

.store-symbol {
  width: 28px;
  font-size: 31px;
  line-height: 1;
}

.store-symbol.triangle {
  color: var(--lime);
  font-size: 23px;
}

.store-button span:last-child {
  display: grid;
  line-height: 1;
}

.store-button small {
  font-size: 9px;
  letter-spacing: 0.05em;
}

.store-button strong {
  margin-top: 5px;
  font-size: 20px;
}

.download .fine-print {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.phone-stage {
  position: relative;
  min-height: 560px;
}

.phone {
  position: absolute;
  width: 270px;
  height: 525px;
  padding: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 42px;
  background: #050805;
  box-shadow: var(--shadow);
}

.phone-front {
  z-index: 2;
  top: 0;
  right: 70px;
  transform: rotate(4deg);
}

.phone-back {
  top: 55px;
  left: 45px;
  opacity: 0.62;
  transform: rotate(-8deg);
}

.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
  background: var(--ink);
}

.phone-screen video {
  width: 100%;
  height: 100%;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  object-fit: cover;
  background: var(--ink);
}

.poster-screen {
  background:
    linear-gradient(rgba(7, 18, 13, 0.18), rgba(7, 18, 13, 0.78)),
    url("assets/hero-poster.jpg") center / cover;
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 50%;
  width: 72px;
  height: 18px;
  border-radius: 999px;
  background: #050805;
  transform: translateX(-50%);
}

.strategy-badge {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 45px;
  width: 140px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border: 2px solid var(--lime);
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  text-align: center;
  transform: rotate(8deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.strategy-badge strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 0.9;
}

.strategy-badge span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* STORY */

.story {
  background: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
  align-items: center;
}

.story-mark {
  width: min(100%, 380px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border: 1px solid rgba(7, 18, 13, 0.16);
  border-radius: 50%;
  text-align: center;
  box-shadow:
    inset 0 0 0 24px var(--cream),
    inset 0 0 0 25px rgba(7, 18, 13, 0.12);
}

.story-mark span,
.story-mark small {
  color: #687269;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-mark strong {
  margin: 5px 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 100px;
  font-weight: 900;
  line-height: 1;
}

.story-copy > p:not(.kicker) {
  color: #4e5a51;
}

.story-copy .signature {
  margin-top: 28px;
  color: var(--ink);
  font-weight: 700;
}

/* FOOTER */

.site-footer {
  padding: 58px 0 28px;
  color: white;
  background: #040b07;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

/* TABLET */

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 0;
    padding: 120px 28px 40px;
    display: grid;
    align-content: start;
    gap: 0;
    background: rgba(4, 11, 7, 0.98);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 32px;
    font-weight: 800;
  }

  .site-nav .nav-cta {
    margin-top: 24px;
    text-align: center;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .menu-toggle.active > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .intro-grid,
  .download-grid,
  .story-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .feature-grid,
  .rule-link-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 250px;
  }

  .rule-link-card {
    min-height: 300px;
  }

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

  .step:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .phone-stage {
    width: min(100%, 600px);
    margin: 0 auto;
  }

  .story-mark {
    margin-inline: auto;
  }
}

/* MOBILE */

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .site-header {
    height: 70px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 44px;
  }

  .hero {
    min-height: 760px;
    height: 100svh;
  }

  .hero-video {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(
        90deg,
        rgba(3, 12, 8, 0.93),
        rgba(3, 12, 8, 0.55)
      ),
      linear-gradient(
        0deg,
        rgba(3, 12, 8, 0.82),
        transparent 60%
      );
  }

  .hero h1 {
    font-size: clamp(55px, 18vw, 82px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-proof {
    gap: 20px;
  }

  .hero-proof div:nth-child(2) {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading h2,
  .download h2,
  .story-copy h2 {
    font-size: clamp(46px, 15vw, 66px);
  }

  .intro-grid {
    gap: 35px;
  }

  .feature-grid {
    margin-top: 45px;
  }

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

  .step,
  .step:first-child,
  .step:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .rules-contact {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .phone-stage {
    min-height: 470px;
    margin-bottom: -70px;
    transform: scale(0.85);
    transform-origin: top center;
  }

  .phone {
    width: 238px;
    height: 465px;
  }

  .phone-front {
    right: 25px;
  }

  .phone-back {
    left: 15px;
  }

  .strategy-badge {
    right: -8px;
    bottom: 20px;
    width: 118px;
  }

  .store-links {
    display: grid;
  }

  .store-button {
    width: 100%;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* VIDEO RELIABILITY */

.hero-video,
.video-screen video {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.hero-shade,
.field-lines {
  pointer-events: none;
}

.video-load-status {
  position: fixed;
  z-index: 99999;
  right: 14px;
  bottom: 14px;
  max-width: min(420px, calc(100% - 28px));
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  color: #ffffff;
  background: rgba(7, 18, 13, 0.94);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
  font-size: 12px;
  line-height: 1.45;
}

.video-load-status.success {
  display: none;
}

.video-load-status.error {
  border-color: #ffcb47;
}

/* ACCESSIBILITY */

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* =========================================================
   CHECKER FOOTBALL LOGO — FINAL OVERRIDE
   Removes old CF circle and enlarges Charlie logo
   ========================================================= */

.site-header .brand-mark,
.site-footer .brand-mark,
.brand-mark {
    width: 110px !important;
    height: 92px !important;

    min-width: 110px !important;
    min-height: 92px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;

    border: 0 !important;
    border-radius: 0 !important;

    outline: 0 !important;
    box-shadow: none !important;

    overflow: visible !important;
    flex-shrink: 0 !important;
}

/* Remove decorative circle and other old badge effects */

.site-header .brand-mark::before,
.site-header .brand-mark::after,
.site-footer .brand-mark::before,
.site-footer .brand-mark::after,
.brand-mark::before,
.brand-mark::after {
    display: none !important;
    content: none !important;

    width: 0 !important;
    height: 0 !important;

    background: none !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* Hide any remaining old CF text */

.brand-mark > span {
    display: none !important;
}

/* Charlie logo */

.site-header .brand-logo,
.site-footer .brand-logo,
.brand-logo {
    display: block !important;

    width: 110px !important;
    height: 92px !important;
    max-width: none !important;
    max-height: none !important;

    object-fit: contain !important;
    object-position: center !important;

    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}

/* Keep header logo from shrinking */

.site-header .brand {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.site-header .brand-copy {
    flex-shrink: 0;
}

/* Footer logo */

.site-footer .brand-mark {
    width: 96px !important;
    height: 82px !important;
    min-width: 96px !important;
    min-height: 82px !important;
}

.site-footer .brand-logo {
    width: 96px !important;
    height: 82px !important;
}

/* Tablet */

@media (max-width: 980px) {
    .site-header .brand-mark {
        width: 90px !important;
        height: 76px !important;
        min-width: 90px !important;
        min-height: 76px !important;
    }

    .site-header .brand-logo {
        width: 90px !important;
        height: 76px !important;
    }
}

/* Mobile */

@media (max-width: 640px) {
    .site-header .brand {
        gap: 8px !important;
    }

    .site-header .brand-mark {
        width: 76px !important;
        height: 64px !important;
        min-width: 76px !important;
        min-height: 64px !important;
    }

    .site-header .brand-logo {
        width: 76px !important;
        height: 64px !important;
    }

    .site-footer .brand-mark {
        width: 82px !important;
        height: 70px !important;
        min-width: 82px !important;
        min-height: 70px !important;
    }

    .site-footer .brand-logo {
        width: 82px !important;
        height: 70px !important;
    }
}
