:root {
  --black: #100d0c;
  --ink: #201714;
  --paper: #fff5e8;
  --orange: #ff6900;
  --muted: #756259;
  --line: rgba(32, 23, 20, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 950;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.7rem, 7.7vw, 8rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 5.3rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  color: var(--muted);
  line-height: 1.5;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  padding: clamp(54px, 8vw, 110px) clamp(22px, 6vw, 82px);
  background: linear-gradient(110deg, #fff5e8 0 62%, #17110f 62%);
}

.copy p:not(.eyebrow) {
  max-width: 670px;
  font-size: 1.24rem;
}

.gallery {
  position: relative;
  min-height: 660px;
}

.phone {
  margin: 0;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.phone img {
  border-radius: 7px;
}

.phone figcaption {
  margin-top: 10px;
  color: #fff;
  font-weight: 900;
}

.phone.main {
  position: absolute;
  right: 12%;
  top: 4%;
  width: min(330px, 62vw);
  opacity: 0;
  transform: translate3d(72px, 0, 0) rotate(2deg);
  animation: stu-zeke-enter 700ms cubic-bezier(0.22, 1, 0.36, 1) 100ms both;
}

.phone.small {
  position: absolute;
  left: 6%;
  bottom: 1%;
  width: min(230px, 45vw);
  opacity: 0;
  transform: translate3d(-72px, 28px, 0) rotate(-5deg);
  animation: range-card-enter 700ms cubic-bezier(0.22, 1, 0.36, 1) 1.7s both;
}

@keyframes stu-zeke-enter {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(2deg);
  }
}

@keyframes range-card-enter {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-5deg);
  }
}

.band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--orange);
  color: #fff;
}

.band p {
  margin: 0;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-weight: 950;
  text-transform: uppercase;
  text-align: center;
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(22px, 6vw, 82px);
}

.two-up,
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.panel {
  min-height: 430px;
  display: grid;
  align-content: end;
  padding: 28px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
}

.top-panel {
  align-content: start;
  align-items: start;
}

.panel.dark {
  background: linear-gradient(135deg, rgba(255, 105, 0, 0.22), transparent 48%), var(--black);
  color: #fff;
  border: 1px dashed rgba(255, 105, 0, 0.6);
}

.panel.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.panel span,
.campaign-slot span {
  width: max-content;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 105, 0, 0.18);
  color: #ffd0b4;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.game-panel {
  align-content: start;
  gap: 18px;
}

.game-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 12px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 18px 44px rgba(0, 0, 0, 0.36);
}

.game-video-frame video {
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #000;
}

.evidence {
  background: #fffdf8;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.cards article {
  min-height: 610px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.shot {
  margin: 0 auto 18px;
  width: min(330px, 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(32, 23, 20, 0.12);
}

.shot img {
  height: auto;
  object-fit: contain;
  object-position: center top;
  background: #fff;
}

.clipboard-shot {
  background: #fff5e8;
}

.clipboard-shot img {
  width: 100%;
  max-height: 520px;
  border-radius: 10px;
}

.app-shot {
  padding: 0;
  background: #fff;
}

.app-shot img {
  width: 100%;
  max-height: 560px;
  border-radius: 12px;
}

.performance-mode {
  background: #fff5e8;
}

.coach-reactions {
  background: #fffdf8;
}

.spotlight {
  align-items: stretch;
}

.performance-shell {
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(32, 23, 20, 0.12);
}

.spotlight > div:not(.wide-slot) {
  display: grid;
  align-content: center;
  min-height: 430px;
  padding: 28px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
}

.performance-shell > div:not(.wide-slot) {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.wide-shot {
  min-height: 430px;
  margin: 0;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 48px rgba(32, 23, 20, 0.12);
  display: grid;
  align-content: center;
  justify-items: center;
}

.performance-shell > .wide-shot {
  padding-right: 28px;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  justify-items: end;
}

.performance-shell > .video-shot figcaption {
  width: min(330px, 100%);
  justify-self: end;
}

.phone-shot img {
  width: auto;
  max-width: min(390px, 100%);
  height: auto;
  max-height: 720px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(32, 23, 20, 0.14);
}

.video-shot video {
  width: auto;
  max-width: min(330px, 100%);
  height: auto;
  max-height: 650px;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 16px 38px rgba(32, 23, 20, 0.18);
}

.wide-shot figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 850;
  text-align: center;
}

.finale {
  min-height: 82vh;
  display: grid;
  align-content: center;
  background: radial-gradient(circle at 18% 22%, rgba(255, 105, 0, 0.24), transparent 30%), var(--black);
  color: #fff;
}

.finale p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.16rem;
}

.campaign-slot {
  margin-top: 30px;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 280px;
  padding: 24px;
  border: 1px dashed rgba(255, 105, 0, 0.55);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.campaign-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  max-width: 900px;
  margin: 8px auto 0;
}

.campaign-showcase.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1200px;
}

.campaign-showcase.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1420px;
}

.social-shell {
  position: relative;
  overflow: hidden;
  border-radius: 9px;
}

.forgive-section {
  background: #fffdf8;
}

.forgive-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin: 28px 0 22px;
}

.sw {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.sw input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sw .knob {
  flex: none;
  width: 40px;
  height: 22px;
  border-radius: 999px;
  background: #d8cdc4;
  position: relative;
  transition: background 150ms;
}

.sw .knob::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 150ms;
}

.sw input:checked + .knob {
  background: var(--orange);
}

.sw input:checked + .knob::after {
  left: 21px;
}

.sw-label b {
  display: block;
  font-size: 0.9rem;
}

.sw-label small {
  color: var(--muted);
  font-size: 0.76rem;
}

.take-card {
  max-width: 560px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.take-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
  color: var(--muted);
}

.take-score {
  margin-top: 10px;
  font-size: 3.4rem;
  font-weight: 950;
  line-height: 1;
}

.take-score small {
  font-size: 1.4rem;
}

.take-sub {
  margin: 4px 0 12px;
  color: var(--muted);
  font-size: 0.85rem;
}

.take-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #e4dbd2;
}

.dot.hit { background: #2f9e44; }
.dot.forgiven { background: var(--orange); }
.dot.out { background: #d0342c; }
.dot.omit { background: #e4dbd2; }

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin-top: 30px;
}

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

.facts h3 {
  margin-bottom: 8px;
}

.facts p {
  margin: 0;
}

.more-link {
  color: var(--orange);
  font-weight: 950;
  text-decoration: none;
}

.more-link:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .facts {
    grid-template-columns: 1fr;
  }
}

.shots-row {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: center;
}

.shots-row .shot {
  width: 100%;
  margin: 0;
}

.ingest-shot {
  margin: 34px 0 0;
}

.ingest-shot video {
  width: 100%;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 18px 48px rgba(32, 23, 20, 0.18);
}

.ingest-shot figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 850;
}

.video-shot .social-shell {
  width: min(330px, 100%);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(32, 23, 20, 0.18);
}

.social-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 9px;
}

.social-rail {
  position: absolute;
  right: 10px;
  bottom: 58px;
  display: grid;
  gap: 14px;
  justify-items: center;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.65);
}

.social-rail span {
  display: grid;
  justify-items: center;
  font-size: 1.25rem;
  line-height: 1;
}

.social-rail b {
  margin-top: 4px;
  font-size: 0.64rem;
  font-weight: 900;
}

.social-caption {
  position: absolute;
  left: 10px;
  right: 58px;
  bottom: 12px;
  color: #fff;
  font-size: 0.78rem;
  line-height: 1.35;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.65);
}

.campaign-showcase figure {
  min-width: 0;
  margin: 0;
}

.campaign-video,
.campaign-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 420px;
  justify-self: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
}

.campaign-card img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  object-position: center;
  border-radius: 9px;
  background: #000;
}

.campaign-video video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center;
  border-radius: 9px;
}

.campaign-showcase figcaption {
  min-height: 1.35em;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.35;
}

.feature-video {
  background: var(--black);
  color: #fff;
  display: grid;
  gap: 26px;
  justify-items: center;
  text-align: center;
}

.feature-video h2 {
  max-width: 900px;
}

.feature-video p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.16rem;
}

.feature-video .tag {
  width: max-content;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 105, 0, 0.18);
  color: #ffd0b4;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.feature-video video {
  width: min(1080px, 100%);
  border-radius: 16px;
  background: #000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.feature-video figure {
  margin: 0;
  width: 100%;
  display: grid;
  justify-items: center;
}

.feature-video figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 850;
}

.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.trio article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.trio h3 {
  margin: 0 0 8px;
}

.trio .shot {
  width: min(300px, 100%);
}

.trio .shot img {
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 940px) {
  .trio {
    grid-template-columns: 1fr;
  }

  .hero,
  .two-up,
  .cards,
  .band,
  .spotlight {
    grid-template-columns: 1fr;
  }

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

  .gallery {
    min-height: 780px;
    background: #17110f;
    border-radius: 12px;
  }

  .phone.main {
    right: 8%;
  }

  .phone.small {
    left: 8%;
  }

  .phone.main figcaption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    max-width: calc(100% - 112px);
    margin: 0;
    padding: 7px 9px;
    border-radius: 8px;
    background: rgba(16, 13, 12, 0.82);
    font-size: 0.78rem;
    line-height: 1.2;
    text-align: right;
  }

  .performance-shell > .wide-shot {
    padding-right: 16px;
    border-top: 1px solid var(--line);
    border-left: 0;
    justify-items: center;
  }

  .performance-shell > .video-shot figcaption {
    justify-self: center;
  }

  .band p {
    text-align: left;
  }

  .cards article {
    min-height: auto;
  }

  .shot img {
    max-height: none;
  }

  .campaign-showcase,
  .campaign-showcase.three,
  .campaign-showcase.four {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 700px) {
  .campaign-showcase,
  .campaign-showcase.three,
  .campaign-showcase.four {
    grid-template-columns: 1fr;
  }

}

@media (prefers-reduced-motion: reduce) {
  .phone.main,
  .phone.small {
    opacity: 1;
    animation: none;
  }

  .phone.main {
    transform: rotate(2deg);
  }

  .phone.small {
    transform: rotate(-5deg);
  }
}
