:root {
  color-scheme: light;
  --yellow: #e8e8e8;
  --accent-soft: #f3f3f3;
  --gold: #f2b632;
  --gold-deep: #b36d00;
  --black: #050505;
  --ink: #111111;
  --paper: #ffffff;
  --muted: #4b4b4b;
  --green: #1c7c25;
  --shadow: 8px 8px 0 #d2d2d2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 10%, rgba(232, 232, 232, 0.72), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f8f8f4 62%, var(--accent-soft) 62%, var(--accent-soft) 100%);
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px clamp(20px, 4vw, 42px) 0;
}

.logo-lockup {
  display: block;
  width: clamp(168px, 17vw, 235px);
  min-width: 0;
  text-decoration: none;
  mix-blend-mode: multiply;
}

.logo-lockup img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-button {
  position: absolute;
  top: 28px;
  right: clamp(20px, 4vw, 42px);
  display: grid;
  gap: 6px;
  width: 56px;
  height: 54px;
  place-content: center;
  background: var(--yellow);
  border: 5px solid var(--black);
  border-radius: 10px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
}

.menu-button span {
  width: 25px;
  height: 4px;
  background: var(--black);
  border-radius: 99px;
}

.mobile-menu {
  position: fixed;
  z-index: 10;
  top: 110px;
  right: clamp(18px, 4vw, 44px);
  display: none;
  min-width: 210px;
  padding: 14px;
  background: var(--paper);
  border: 4px solid var(--black);
  border-radius: 8px;
  box-shadow: 7px 7px 0 var(--yellow);
}

.mobile-menu.is-open {
  display: grid;
  gap: 10px;
}

.mobile-menu a {
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 42px) 30px;
}

.top-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2px 0 24px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  color: var(--black);
  text-transform: uppercase;
  background: var(--yellow);
  border: 5px solid var(--black);
  border-radius: 10px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.55);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  letter-spacing: 0;
  text-decoration: none;
}

.cta-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.55);
}

.cta-button.dark {
  color: var(--black);
  background:
    linear-gradient(180deg, #ffd966 0%, var(--gold) 52%, #d99616 100%);
  border-color: var(--black);
  box-shadow: 6px 6px 0 rgba(232, 232, 232, 0.78);
}

.cta-button.full {
  width: 100%;
}

.text-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--black);
  text-decoration: none;
  text-transform: uppercase;
  background: #ffffff;
  border: 4px solid var(--black);
  border-radius: 8px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.38);
  font-family: Anton, Impact, sans-serif;
}

.text-link-button:hover {
  transform: translate(-1px, -1px);
}

.star-dot {
  display: grid;
  width: 30px;
  height: 30px;
  margin-right: 12px;
  place-items: center;
  color: var(--yellow);
  background: var(--black);
  border-radius: 50%;
  font-size: 17px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(320px, 0.84fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
}

.pricing-panel {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: clamp(18px, 2vw, 26px);
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 15%, rgba(232, 232, 232, 0.26), transparent 17rem),
    radial-gradient(circle at 88% 0%, rgba(255, 255, 255, 0.24), transparent 12rem),
    linear-gradient(135deg, #171717, #050505 58%, #211604);
  border: 6px solid var(--black);
  border-radius: 9px;
  box-shadow: var(--shadow);
}

.pricing-panel::after,
.video-slot::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(#d8d8d8 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.18;
}

.pricing-head {
  position: relative;
  z-index: 1;
  max-width: 650px;
  text-align: center;
  margin: 0 auto;
}

.pricing-head p {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  line-height: 1;
  text-transform: uppercase;
}

.pricing-head h1 {
  margin: 0;
  color: #ffc536;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.85rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 4px 5px 0 rgba(0, 0, 0, 0.95);
}

.pricing-head span {
  display: block;
  max-width: 540px;
  margin-top: 8px;
  margin-inline: auto;
  color: #f3f0dd;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.24;
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.pricing-grid.single-price {
  grid-template-columns: minmax(0, 430px);
  justify-content: center;
}

.price-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 218px;
  padding: 14px;
  color: var(--black);
  background: #fff9d1;
  border: 4px solid var(--black);
  border-radius: 8px;
  box-shadow: 5px 5px 0 rgba(210, 210, 210, 0.9);
}

.price-card.featured {
  background: var(--yellow);
}

.price-card b {
  position: absolute;
  top: -19px;
  left: 50%;
  padding: 7px 14px;
  color: var(--yellow);
  text-transform: uppercase;
  white-space: nowrap;
  background: var(--black);
  border-radius: 999px;
  font-size: 0.78rem;
  transform: translateX(-50%);
}

.price-card p,
.price-card h2,
.price-card strong,
.price-card ul {
  margin: 0;
}

.price-card p {
  color: #7a4b00;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.price-card h2 {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.35rem, 1.55vw, 1.7rem);
  line-height: 1;
  text-transform: uppercase;
}

.price-card strong {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2rem, 2.55vw, 2.75rem);
  line-height: 0.95;
}

.price-card strong span {
  font-family: Inter, Arial, sans-serif;
  font-size: 0.95rem;
}

.price-card ul {
  display: grid;
  gap: 7px;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  line-height: 1.18;
}

.price-card li::before {
  margin-right: 8px;
  content: "★";
}

.plan-button {
  align-self: end;
  display: inline-flex;
  justify-content: center;
  min-height: 40px;
  margin-top: 4px;
  padding: 9px 13px;
  font-size: 0.9rem;
  color: var(--yellow);
  text-decoration: none;
  text-transform: uppercase;
  background: var(--black);
  border: 3px solid var(--black);
  border-radius: 7px;
}

.plan-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.single-price .price-card {
  min-height: 0;
  padding: clamp(18px, 2.4vw, 26px);
}

.single-price .price-card h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.single-price .price-card strong {
  font-size: clamp(3.2rem, 5.2vw, 5.2rem);
}

.single-price .price-card ul {
  font-size: 1rem;
}

.single-price .plan-button {
  min-height: 50px;
  font-size: 1.05rem;
}

.plan-button.secondary {
  color: var(--black);
  background: #ffffff;
}

.plan-button:hover {
  color: var(--black);
  background: #ffffff;
}

.play-button {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 25px;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  background: #101010;
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--black);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 29px solid var(--yellow);
}

.funnel-panel {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.wordmark-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 105px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.info-box {
  display: grid;
  gap: 15px;
  width: 100%;
  padding: 18px;
  background: var(--yellow);
  border: 6px solid var(--black);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.75);
}

.info-box section {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
}

.info-icon {
  color: var(--black);
  font-size: 40px;
  line-height: 1;
}

.info-box h2 {
  margin: 0 0 3px;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.3rem, 1.7vw, 1.65rem);
  line-height: 1;
}

.info-box p {
  max-width: 470px;
  margin: 0;
  font-size: clamp(0.86rem, 1vw, 0.96rem);
  line-height: 1.16;
}

.bet-slip-card {
  display: grid;
  gap: 12px;
  width: min(100%, 306px);
  padding: 16px;
  color: var(--black);
  background:
    radial-gradient(circle at 86% 12%, rgba(226, 167, 37, 0.22), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, var(--paper) 100%);
  border: 7px solid var(--black);
  border-radius: 9px;
  box-shadow: 0 0 0 9px var(--yellow), 5px 5px 0 rgba(0, 0, 0, 0.6);
}

.live-alert-card {
  background:
    radial-gradient(circle at 82% 9%, rgba(242, 182, 50, 0.32), transparent 25%),
    linear-gradient(145deg, #ffffff 0%, #f2f2f2 100%);
}

.bet-slip-top,
.bet-slip-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-transform: uppercase;
}

.bet-slip-top span,
.bet-slip-bottom span,
.alert-copy span,
.alert-copy em {
  font-family: Anton, Impact, sans-serif;
  font-style: normal;
  letter-spacing: 0;
}

.bet-slip-top span {
  font-size: 1.02rem;
}

.bet-slip-top strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--paper);
  background: var(--black);
  border-radius: 50%;
  font-family: Anton, Impact, sans-serif;
  font-size: 1.05rem;
}

.discord-preview-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--black);
  border-radius: 18px;
}

.discord-preview-caption {
  margin: -2px 0 0;
  font-size: 0.86rem;
  line-height: 1.18;
}

.alert-copy {
  display: grid;
  gap: 3px;
}

.alert-copy span,
.alert-copy em,
.bet-slip-bottom span {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.alert-copy strong {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.42rem, 3vw, 1.88rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.alert-copy em {
  color: rgba(0, 0, 0, 0.72);
}

.bet-slip-bottom strong {
  padding: 7px 10px;
  color: var(--paper);
  background: var(--black);
  border-radius: 999px;
  font-family: Anton, Impact, sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  padding: 9px 0;
  color: var(--black);
  text-transform: uppercase;
  white-space: nowrap;
  background: var(--yellow);
  border-block: 5px solid var(--black);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}

.ticker-track {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
  width: max-content;
  min-width: max-content;
  animation: ticker-loop 18s linear infinite;
  animation-play-state: running;
  will-change: transform;
}

.ticker-track span,
.ticker-track b {
  flex: 0 0 auto;
}

@keyframes ticker-loop {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.access-steps {
  padding: clamp(30px, 5vw, 52px) clamp(20px, 4vw, 42px);
  background: var(--paper);
}

.access-heading {
  display: grid;
  gap: 4px;
  max-width: 1120px;
  margin: 0 auto 18px;
}

.access-heading p,
.access-heading h2 {
  margin: 0;
  text-transform: uppercase;
}

.access-heading p {
  font-family: Anton, Impact, sans-serif;
  font-size: 1rem;
}

.access-heading h2 {
  max-width: 760px;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.95;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}

.access-grid article {
  display: grid;
  gap: 8px;
  min-height: 190px;
  padding: 20px;
  background: #ffffff;
  border: 5px solid var(--black);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--gold);
}

.access-grid span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--black);
  background: linear-gradient(180deg, #ffd966 0%, var(--gold) 100%);
  border: 4px solid var(--black);
  border-radius: 50%;
  font-family: Anton, Impact, sans-serif;
  font-size: 1.2rem;
}

.access-grid h3,
.access-grid p {
  margin: 0;
}

.access-grid h3 {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.access-grid p {
  font-size: 1rem;
  line-height: 1.18;
}

.testimonials {
  padding: 10px clamp(20px, 4vw, 42px) 38px;
  background:
    radial-gradient(rgba(255, 255, 255, 0.36) 1px, transparent 1px),
    var(--yellow);
  background-size: 11px 11px;
}

.testimonials h2 {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  max-width: 980px;
  margin: 0 auto 14px;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(3rem, 5.2vw, 5rem);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.testimonials h2 span {
  width: 44px;
  height: 5px;
  background: var(--black);
  box-shadow: 0 9px 0 -2px var(--black);
}

.testimonial-media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.testimonial-media {
  position: relative;
  overflow: hidden;
  border: 5px solid var(--black);
  border-radius: 8px;
}

.video-slot {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.38), transparent 10rem),
    linear-gradient(135deg, #26170d, #0b0b0b);
}

.testimonial-video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000000;
}

.photo-slot p,
.photo-slot span {
  margin: 0;
}

.photo-slot p {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.4rem, 5vw, 2rem);
  line-height: 1;
}

.photo-slot span {
  display: block;
  margin-top: 3px;
  font-size: 0.82rem;
}

.photo-slot {
  display: grid;
  padding: 0;
  place-items: center;
  text-align: center;
  background: #111111;
}

.testimonial-photo {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.photo-slot figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  width: 100%;
  color: #ffffff;
  text-align: left;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.85);
  text-transform: uppercase;
  pointer-events: none;
}

.play-button.small {
  left: 50%;
  bottom: 22px;
  width: 58px;
  height: 58px;
  transform: translateX(-50%);
}

.play-button.small span {
  border-top-width: 14px;
  border-bottom-width: 14px;
  border-left-width: 21px;
}

.join-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 48px) clamp(20px, 4vw, 42px);
  color: var(--paper);
  background: var(--black);
  box-shadow: 0 0 0 100vmax var(--black);
  clip-path: inset(0 -100vmax);
}

.join-section p,
.join-section h2 {
  margin: 0;
}

.join-copy {
  display: grid;
  gap: 6px;
}

.join-actions {
  display: grid;
  grid-template-columns: auto auto;
  gap: 14px;
  align-items: center;
}

.dark-link {
  color: var(--paper);
  background: transparent;
  border-color: var(--paper);
  box-shadow: 4px 4px 0 rgba(232, 232, 232, 0.34);
}

.join-section p {
  color: var(--yellow);
  text-transform: uppercase;
}

.join-section h2 {
  max-width: 760px;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
}

.modal-overlay:target {
  display: grid;
}

.signup-card,
.video-shell {
  position: relative;
  display: grid;
  gap: 15px;
  padding: 28px;
  background: var(--paper);
  border: 6px solid var(--black);
  border-radius: 10px;
  box-shadow: 9px 9px 0 var(--yellow);
}

.signup-card {
  width: min(92vw, 520px);
}

.close-button {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--yellow);
  border: 3px solid var(--black);
  border-radius: 50%;
  line-height: 1;
  text-decoration: none;
}

.eyebrow {
  margin: 0;
  color: var(--gold-deep);
  text-transform: uppercase;
}

.signup-card h2 {
  max-width: 390px;
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.signup-card label {
  display: grid;
  gap: 7px;
  text-transform: uppercase;
}

.signup-card input,
.signup-card select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  background: #f8f8f8;
  border: 3px solid var(--black);
  border-radius: 6px;
}

.signup-card small {
  color: var(--muted);
  line-height: 1.35;
}

.video-shell {
  width: min(92vw, 760px);
}

.fake-video {
  position: relative;
  display: grid;
  min-height: 400px;
  place-items: center;
  padding: 40px;
  color: #ffffff;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.72)),
    url("assets/mockup-reference.png") center / cover;
  border-radius: 4px;
}

.fake-video .play-button {
  position: static;
}

.modal-logo {
  display: block;
  width: min(500px, 88%);
  height: auto;
  margin-top: 18px;
  mix-blend-mode: screen;
  filter: contrast(1.05) saturate(1.12);
}

.fake-video h2 {
  margin: 8px 0 0;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
  text-transform: uppercase;
}

.fake-video p {
  max-width: 460px;
  margin: 0;
}

@media (max-width: 1040px) {
  .top-actions {
    margin: 8px 0 28px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }

  .wordmark-image,
  .info-box {
    max-width: 720px;
  }

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

  .access-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .access-grid article {
    min-height: 0;
  }

  .testimonial-media-grid {
    max-width: 760px;
  }
}

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

  .price-card {
    min-height: 0;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (min-width: 861px) {
  .testimonial-media-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(240px, 0.9fr) minmax(0, 0.82fr);
    align-items: stretch;
  }

  .photo-slot {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: center;
    justify-content: center;
    min-height: 138px;
    padding: 12px 20px 8px;
  }

  .logo-lockup {
    width: clamp(138px, 42vw, 164px);
  }

  .menu-button {
    top: 18px;
    right: 20px;
    width: 48px;
    height: 46px;
    border-width: 4px;
  }

  .hero {
    padding-top: 14px;
  }

  .top-actions {
    margin: 0 0 24px;
  }

  .cta-button {
    width: 100%;
  }

  .pricing-panel {
    min-height: 0;
    border-width: 5px;
    box-shadow: 6px 6px 0 var(--yellow);
  }

  .pricing-head h1 {
    font-size: clamp(2.6rem, 13vw, 4.1rem);
  }

  .pricing-head span {
    max-width: 100%;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .price-card.featured {
    transform: none;
  }

  .info-box section {
    grid-template-columns: 34px 1fr;
  }

  .info-icon {
    font-size: 31px;
  }

  .access-steps {
    padding-inline: 16px;
  }

  .access-heading h2 {
    font-size: clamp(2.25rem, 12vw, 3.8rem);
  }

  .access-grid article {
    padding: 18px;
    box-shadow: 5px 5px 0 var(--gold);
  }

  .testimonials {
    padding-inline: 16px;
  }

  .testimonials h2 {
    gap: 12px;
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .testimonial-media-grid {
    gap: 16px;
  }

  .photo-slot {
    min-height: 280px;
  }

  .join-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 32px;
  }

  .join-actions {
    grid-template-columns: 1fr;
  }

  .fake-video {
    min-height: 330px;
  }
}
