@import url("https://fonts.googleapis.com/css2?family=Lilita+One&family=Sora:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --ticker-height: 66px;
  --nav-offset: 18px;
  --paper: #fff;
  --ink: #0e0d0d;
  --ink-soft: rgba(14, 13, 13, 0.72);
  --line: rgba(14, 13, 13, 0.14);
  --black: #1b1a1a;
  --red: #da292a;
  --orange: #e96d29;
  --yellow: #f5d72b;
  --green: #42a548;
  --blue: #3a499e;
  --font-body: "Sora", sans-serif;
  --font-heading: "Space Grotesk", sans-serif;
  --font-hero: "Lilita One", "Space Grotesk", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--ticker-height);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 0 0, rgba(58, 73, 158, 0.08), transparent 28%),
    linear-gradient(#fff 0 100%);
  font-family: var(--font-body);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--yellow);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

p {
  margin: 0;
}

.site-frame {
  width: min(1320px, calc(100% - 32px));
  margin-inline: auto;
}

.sports-ticker {
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: var(--ticker-height);
  color: var(--paper);
  background: #11100f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.sports-ticker__label {
  display: grid;
  place-items: center;
  align-self: stretch;
  padding: 0 24px;
  color: #11100f;
  background: var(--paper);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sports-ticker__viewport {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.sports-ticker__viewport::before,
.sports-ticker__viewport::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 64px;
  pointer-events: none;
}

.sports-ticker__viewport::before {
  left: 0;
  background: linear-gradient(90deg, #11100f, transparent);
}

.sports-ticker__viewport::after {
  right: 0;
  background: linear-gradient(270deg, #11100f, transparent);
}

.sports-ticker__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: ticker-scroll-left 108s linear infinite;
}

.sports-ticker__track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: var(--ticker-height);
  padding: 0 38px;
  white-space: nowrap;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.sports-ticker__track span::after {
  content: "";
  position: absolute;
  right: 0;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 999px;
}

@keyframes ticker-scroll-left {
  from {
    transform: translateX(0);
  }

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: calc(var(--ticker-height) + var(--nav-offset));
  right: 0;
  left: 0;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.site-header--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-16px);
}

.site-header__inner {
  display: flex;
  justify-content: center;
}

.site-nav-island {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  padding: 10px 12px 10px 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

.site-nav-island a:not(.button) {
  --nav-accent: currentColor;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding-bottom: 6px;
  color: rgba(0, 0, 0, 0.82);
  font-weight: 600;
}

.site-nav-island a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--nav-accent);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.site-nav-island a[href="#home"] {
  --nav-accent: #DA292A;
}

.site-nav-island a[href="#latest-episode"] {
  --nav-accent: #F5D72B;
}

.site-nav-island a[href="#about"] {
  --nav-accent: #E96D29;
}

.site-nav-island a[href="#hosts"] {
  --nav-accent: #3A499E;
}

.site-nav-island a[href="#contact"] {
  --nav-accent: #42A548;
}

.site-nav-island a:hover::after,
.site-nav-island a:focus-visible::after,
.site-nav-island a[aria-current="page"]::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  position: relative;
  color: var(--paper);
  background: linear-gradient(135deg, #000, #1b1a1a);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.site-nav-island .button--primary::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 8px;
  left: 18px;
  height: 3px;
  background: var(--nav-accent);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.button--light {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.button--outline-light {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.button--footer,
.button--ghost {
  color: var(--paper);
  background: #1b1a1a;
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: clip;
  border-bottom: 1px solid var(--line);
}

.hero__media,
.hero__media::after,
.hero__media-image,
.hero__media-video {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -2;
  background: #000;
}

.hero__media::after {
  content: "";
  z-index: 4;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 36%, rgba(0, 0, 0, 0.12));
}

.hero__media-image,
.hero__media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__media-image {
  z-index: 0;
  transform: scale(var(--hero-image-scale, 1.02));
}

.hero__media-video {
  display: block;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.hero__media-video.is-ready {
  opacity: 1;
}

.hero__layout {
  display: grid;
  min-height: 100svh;
  padding: calc(var(--ticker-height) + 120px) 0 48px;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 720px);
  align-items: stretch;
}

.hero__copy {
  grid-column: 2;
  justify-self: end;
  align-self: start;
  max-width: min(100%, 720px);
  text-align: right;
}

.hero h1 {
  position: relative;
  max-width: 11ch;
  margin: 0 0 20px auto;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.94;
  text-align: center;
  isolation: isolate;
}

.hero h1::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: -0.2em;
  right: -0.34em;
  bottom: -0.18em;
  left: -0.34em;
  background:
    radial-gradient(ellipse at 12% 18%, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(238, 243, 247, 0.42), rgba(136, 147, 154, 0.28));
  clip-path: polygon(3% 18%, 14% 9%, 31% 14%, 47% 7%, 66% 12%, 85% 8%, 98% 21%, 93% 42%, 100% 61%, 91% 82%, 72% 87%, 56% 94%, 39% 88%, 20% 94%, 5% 81%, 10% 61%, 0 42%);
  box-shadow:
    0 28px 62px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-0.32em) rotate(-11deg) skewX(-4deg);
}

.hero h1::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0.04em;
  right: -0.2em;
  bottom: 0.06em;
  left: -0.2em;
  background:
    repeating-linear-gradient(92deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 18px),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  clip-path: polygon(7% 20%, 24% 13%, 44% 18%, 63% 11%, 89% 18%, 96% 37%, 91% 57%, 98% 75%, 76% 84%, 56% 79%, 36% 88%, 13% 78%, 4% 58%, 10% 39%);
  transform: rotate(-11deg) skewX(-4deg);
}

.hero__title-word,
.hero__title-dash,
.hero__tagline {
  display: inline-block;
  font-family: var(--font-hero);
  font-weight: 400;
  letter-spacing: 0;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.22);
}

.hero__title-word--blue {
  color: var(--blue);
}

.hero__title-word--green,
.hero__title-dash--green {
  color: var(--green);
}

.hero__title-word--orange,
.hero__title-dash--orange {
  color: var(--orange);
}

.hero__title-word--yellow {
  color: var(--yellow);
}

.hero__tagline {
  display: block;
  width: max-content;
  margin: 0.04em 0 0 2.18em;
  color: #b11f1f;
  font-family: var(--font-heading);
  font-size: 0.74em;
  font-weight: 700;
  line-height: 0.86;
  text-align: left;
}

.hero__tagline span {
  display: block;
  white-space: nowrap;
}

.hero__tagline-line--pitch {
  margin-top: 0.12em;
  margin-left: 0.62em;
}

.hero__lede {
  width: max-content;
  max-width: min(100%, 44rem);
  margin: clamp(56px, 7.5vw, 104px) clamp(72px, 8vw, 132px) 0 auto;
  color: var(--paper);
  font-size: clamp(1.65rem, 2.45vw, 2.25rem);
  font-weight: 800;
  line-height: 1.08;
  text-align: left;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.48);
}

.hero__lede span {
  display: block;
  white-space: nowrap;
}

.section {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}

.section--podcast-intro {
  position: relative;
  overflow: hidden;
  padding-block: clamp(42px, 5vw, 58px);
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 0, rgba(58, 73, 158, 0.18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(233, 109, 41, 0.12), transparent 30%),
    linear-gradient(180deg, #080808, #11100f);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.section--podcast-intro::before,
.section--podcast-intro::after {
  content: "";
  position: absolute;
  opacity: 0.22;
  pointer-events: none;
}

.section--podcast-intro::before {
  inset: 0 0 50%;
  background:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, 0.06) 18px 20px),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
}

.section--podcast-intro::after {
  inset: 50% 0 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255, 255, 255, 0.06) 18px 20px),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
}

.section--highlight-reel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(124px, 13vw, 184px);
  color: var(--paper);
  background:
    radial-gradient(circle at 14% 0, rgba(58, 73, 158, 0.28), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(58, 73, 158, 0.32), transparent 32%),
    linear-gradient(90deg, rgba(17, 20, 38, 0.76), rgba(27, 34, 86, 0.72)),
    url("Images/about-bg.png") 72% 28% / cover no-repeat,
    linear-gradient(180deg, #111426, #1b2256);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.section--highlight-reel::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    repeating-linear-gradient(68deg, transparent 0 22px, rgba(255, 255, 255, 0.055) 22px 24px),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  -webkit-mask-image: linear-gradient(180deg, #000, rgba(0, 0, 0, 0.55), transparent 76%);
  mask-image: linear-gradient(180deg, #000, rgba(0, 0, 0, 0.55), transparent 76%);
  pointer-events: none;
}

.highlight-reel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.highlight-reel__intro h2 {
  margin-bottom: 0;
  color: var(--paper);
  font-size: clamp(2.8rem, 4.8vw, 5.4rem);
}

.highlight-reel__intro h2 span {
  display: block;
  white-space: nowrap;
}

.section--highlight-reel .eyebrow::before {
  height: 3px;
  background: var(--yellow);
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.js .section--highlight-reel .highlight-reel__intro,
.js .section--highlight-reel .video-wrapper,
.js .section--highlight-reel .socials-panel {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.76, 0.24, 1);
}

.js .section--highlight-reel .video-wrapper {
  transition-delay: 0.12s;
}

.js .section--highlight-reel .socials-panel {
  transition-delay: 0.22s;
}

.js .section--highlight-reel.is-visible .highlight-reel__intro,
.js .section--highlight-reel.is-visible .video-wrapper,
.js .section--highlight-reel.is-visible .socials-panel {
  opacity: 1;
  transform: translateY(0);
}

.video-wrapper__poster,
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.video-wrapper__poster {
  z-index: 2;
  object-fit: cover;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.video-wrapper:hover .video-wrapper__poster,
.video-wrapper:focus-within .video-wrapper__poster,
.video-wrapper.is-video-active .video-wrapper__poster,
.video-wrapper.is-video-peeking .video-wrapper__poster {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-wrapper iframe {
  border: 0;
}

.socials-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
  margin-top: clamp(34px, 5vw, 64px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.socials-panel__intro {
  display: grid;
  align-content: center;
}

.socials-panel__intro h3 {
  max-width: 13ch;
  color: var(--paper);
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}

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

.social-card {
  --social-accent: rgba(255, 255, 255, 0.68);
  --social-icon-scale: 1.7;
  position: relative;
  display: grid;
  grid-template-columns: clamp(54px, 4.4vw, 64px) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  column-gap: 16px;
  min-height: 148px;
  overflow: hidden;
  padding: 16px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(5, 9, 31, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--social-accent);
}

.social-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 118px;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--social-accent), transparent 68%);
  opacity: 0.22;
  pointer-events: none;
}

.social-card:hover,
.social-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(5, 9, 31, 0.42);
  transform: translateY(-3px);
}

.social-card:focus-visible {
  outline: 3px solid rgba(245, 215, 43, 0.52);
  outline-offset: 3px;
}

.social-card--youtube {
  --social-accent: #ff3d3d;
  --social-icon-scale: 1.66;
}

.social-card--instagram {
  --social-accent: #e96dff;
  --social-icon-scale: 1.72;
}

.social-card--tiktok {
  --social-accent: #35f4ff;
  --social-icon-scale: 2.72;
}

.social-card__mark {
  position: relative;
  display: grid;
  place-items: center;
  align-self: start;
  aspect-ratio: 1;
  overflow: visible;
}

.social-card__icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  transform: scale(var(--social-icon-scale));
  transform-origin: center;
}

.social-card__body {
  display: grid;
  align-content: start;
  min-width: 0;
  padding-top: 2px;
}

.social-card__label,
.social-card__handle,
.social-card__action {
  display: block;
}

.social-card__label {
  font-size: clamp(1.16rem, 1.6vw, 1.46rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.social-card__handle {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.social-card__action {
  grid-column: 1 / -1;
  align-self: end;
  justify-self: start;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.podcast-intro {
  position: relative;
  max-width: 46rem;
}

.podcast-intro-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.68fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.section--podcast-intro .eyebrow::before {
  height: 3px;
  background: var(--orange);
}

.section--podcast-intro .eyebrow {
  color: rgba(255, 255, 255, 0.64);
}

.section--podcast-intro h2 {
  color: var(--paper);
}

.section--podcast-intro .podcast-intro__lede {
  color: rgba(255, 255, 255, 0.76);
}

.podcast-intro__visual {
  position: relative;
  justify-self: end;
  width: min(58vw, 840px);
  margin: 0;
  transform: translate(clamp(84px, 9vw, 150px), clamp(18px, 2.6vw, 40px));
}

.podcast-intro__image {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 1081px) and (max-width: 1440px) {
  .podcast-intro__visual {
    transform: translate(calc(clamp(84px, 9vw, 150px) + 14px), clamp(18px, 2.6vw, 40px));
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.64);
}

.brand-lock {
  white-space: nowrap;
}

.podcast-intro h2,
.hosts-showcase__intro h2,
.contact-shell__intro h2 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 4.2vw, 4.6rem);
}

.podcast-intro__lede,
.hosts-showcase__intro p,
.contact-shell__intro p {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section--contact,
.site-footer {
  color: var(--paper);
  background: var(--black);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.section--hosts {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.section--hosts::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: repeating-linear-gradient(110deg, transparent 0 18px, rgba(14, 13, 13, 0.16) 18px 20px);
  pointer-events: none;
}

.hosts-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(24px, 4vw, 54px);
}

.hosts-showcase__intro {
  position: sticky;
  top: calc(var(--ticker-height) + 112px);
}

.section--hosts .eyebrow::before {
  height: 3px;
  background: var(--blue);
}

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

.host-card {
  position: relative;
  aspect-ratio: 2 / 3;
  min-height: 0;
  color: var(--paper);
  cursor: pointer;
  perspective: 1400px;
  outline: 0;
}

.host-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-origin: center;
  transition: transform 0.96s cubic-bezier(0.2, 0.74, 0.24, 1);
  -webkit-tap-highlight-color: transparent;
}

.host-card:hover .host-card__inner,
.host-card:focus-visible .host-card__inner {
  transform: translateY(-4px);
}

.host-card.is-flipped .host-card__inner {
  transform: rotateY(180deg);
}

.host-card.is-flipped:hover .host-card__inner,
.host-card.is-flipped:focus-visible .host-card__inner {
  transform: translateY(-4px) rotateY(180deg);
}

.host-card:focus-visible .host-card__inner {
  outline: 3px solid rgba(245, 215, 43, 0.62);
  outline-offset: 5px;
}

.host-card__face {
  position: absolute;
  inset: 0;
  display: grid;
  min-width: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: var(--paper);
  background: #1b1a1a;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.host-card__face--front {
  align-content: start;
  grid-template-rows: minmax(0, 1fr) auto;
  transform: rotateY(0deg);
}

.host-card__face--back {
  align-content: end;
  isolation: isolate;
  background: #1b1a1a;
  transform: rotateY(180deg);
}

.host-card--vinny .host-card__face--front::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -2%;
  right: -12%;
  left: -8%;
  height: min(82%, 520px);
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.22) 0 2px, transparent 2px 14px),
    linear-gradient(135deg, #1597ff, #2454d9 62%, #1733a4);
  clip-path: polygon(0 0, 38% 0, 100% 58%, 100% 88%, 72% 100%, 8% 42%);
  transform: rotate(2deg);
}

.host-card__face--back::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.36) 38%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 72%);
  pointer-events: none;
}

.host-card__face--back::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: var(--host-back-image);
  background-position: var(--host-back-position, center);
  background-size: var(--host-back-size, cover);
  transform: var(--host-back-transform, scaleX(-1));
  pointer-events: none;
}

.host-card--gianni .host-card__face--back {
  --host-back-image: url("Images/Gianni-Host-Back.png");
  --host-back-position: 52% center;
  --host-back-transform: none;
  --host-back-size: 126% auto;
}

.host-card--vinny .host-card__face--back {
  --host-back-image: url("Images/Vinny playing soccer.png");
  --host-back-position: 18% center;
  --host-back-size: auto 112%;
  --host-back-transform: none;
}

.host-card--chris .host-card__face--back {
  --host-back-image: url("Images/Chris-plaging-soccer.png");
  --host-back-position: 58% -220px;
  --host-back-size: auto 136%;
  --host-back-transform: none;
}

.host-card--poncho .host-card__face--back {
  --host-back-image: url("Images/Poncho-playing-soccer-earsdown.png");
  --host-back-position: 42% 40%;
  --host-back-transform: translate(2%, -10%) scale(1.12);
}

.host-card__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
}

.host-card__body,
.host-card__bio {
  position: relative;
  z-index: 2;
  display: grid;
}

.host-card__body {
  gap: 6px;
  padding: 18px;
}

.host-card__body p,
.host-card__role {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.host-card__bio {
  align-content: end;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.host-card__bio > p:not(.host-card__role) {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.96rem, 1.22vw, 1.08rem);
  line-height: 1.62;
}

.host-card h3 {
  color: var(--paper);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.section--contact {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section--contact::before,
.section--contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.section--contact::before {
  background-image:
    linear-gradient(105deg, rgba(218, 41, 42, 0.18), transparent 34%, rgba(58, 73, 158, 0.22) 68%, rgba(66, 165, 72, 0.16)),
    url("Images/Step and repeat tikitalk BLACK.png");
  background-position: center, center;
  background-size: auto, cover;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll, fixed;
  opacity: 0.48;
}

.section--contact::after {
  background:
    repeating-linear-gradient(68deg, transparent 0 20px, rgba(255, 255, 255, 0.055) 20px 22px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.28));
}

.section--contact > .site-frame {
  position: relative;
  z-index: 1;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(28px, 4vw, 54px);
}

.contact-shell__intro {
  position: sticky;
  top: calc(var(--ticker-height) + 112px);
  display: grid;
  align-content: start;
  margin-top: clamp(-24px, -1.5vw, -14px);
}

.section--contact .eyebrow::before {
  height: 3px;
  background: var(--green);
}

.contact-shell h2,
.contact-panel h3,
.service-card h3 {
  color: var(--paper);
}

.contact-title__brand {
  display: block;
  font-size: 0.88em;
  line-height: 1.02;
  white-space: nowrap;
}

.contact-shell__intro p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-shell__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  --service-accent: rgba(255, 255, 255, 0.72);
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 26px;
  min-height: 220px;
  overflow: hidden;
  padding: 22px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(10, 10, 10, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.service-card::before,
.service-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.service-card::before {
  inset: 0 0 auto;
  height: 4px;
  background: var(--service-accent);
}

.service-card::after {
  right: 18px;
  bottom: 18px;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--service-accent), transparent);
  opacity: 0.68;
}

.service-card__number {
  color: var(--service-accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  letter-spacing: -0.03em;
}

.service-card p {
  color: rgba(255, 255, 255, 0.76);
}

.service-card--red {
  --service-accent: var(--red);
}

.service-card--blue {
  --service-accent: var(--blue);
}

.service-card--yellow {
  --service-accent: var(--yellow);
}

.service-card--green {
  --service-accent: var(--green);
}

.service-card--orange {
  --service-accent: var(--orange);
}

.service-card--black {
  --service-accent: rgba(255, 255, 255, 0.78);
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
  overflow: hidden;
  margin-top: clamp(28px, 5vw, 58px);
  padding: clamp(24px, 4vw, 36px);
  color: var(--ink);
  background-color: #fff;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(246, 247, 241, 0.78)),
    url("Images/Step and repeat B&W.png");
  background-position: center, center;
  background-size: auto, cover;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll, fixed;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue));
}

.contact-panel > * {
  position: relative;
  z-index: 2;
}

.contact-panel__copy {
  display: grid;
  gap: 14px;
}

.contact-panel__label {
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-panel h3 {
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.contact-panel__copy > p:not(.contact-panel__label) {
  max-width: 36rem;
  color: var(--ink-soft);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
}

.contact-form .contact-form__trap {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  background: transparent;
  border: 0;
}

.contact-form__field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.contact-form__field:nth-of-type(n+3),
.contact-form button,
.contact-form__status,
.contact-form__thanks {
  grid-column: 1 / -1;
}

.contact-form label {
  color: rgba(0, 0, 0, 0.66);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  outline: 0;
}

.contact-form textarea {
  min-height: 136px;
  padding: 14px;
  line-height: 1.5;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: none;
}

.contact-form__field:nth-of-type(1) :is(input, select, textarea):focus {
  border-color: rgba(218, 41, 42, 0.86);
  box-shadow: 0 0 0 4px rgba(218, 41, 42, 0.2);
}

.contact-form__field:nth-of-type(2) :is(input, select, textarea):focus {
  border-color: rgba(245, 215, 43, 0.9);
  box-shadow: 0 0 0 4px rgba(245, 215, 43, 0.22);
}

.contact-form__field:nth-of-type(3) :is(input, select, textarea):focus {
  border-color: rgba(66, 165, 72, 0.86);
  box-shadow: 0 0 0 4px rgba(66, 165, 72, 0.2);
}

.contact-form__field:nth-of-type(4) :is(input, select, textarea):focus {
  border-color: rgba(58, 73, 158, 0.86);
  box-shadow: 0 0 0 4px rgba(58, 73, 158, 0.2);
}

.contact-form button {
  justify-self: start;
  min-width: 180px;
}

.contact-form__submit span {
  position: relative;
  display: inline-flex;
}

.contact-form__submit span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 3px;
  background: var(--green);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.contact-form__submit:hover span::after,
.contact-form__submit:focus-visible span::after {
  transform: scaleX(1);
}

.contact-form__status {
  min-height: 1.3em;
  color: rgba(0, 0, 0, 0.64);
  font-weight: 800;
}

.contact-form__status.is-error {
  color: var(--red);
}

.contact-form__thanks {
  position: relative;
  display: grid;
  grid-template-columns: clamp(220px, 24vw, 320px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: center;
  overflow: hidden;
  padding: clamp(22px, 3.5vw, 34px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.94), rgba(14, 13, 13, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 18px),
    #000;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.contact-form__thanks::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--green), var(--blue));
}

.contact-form__thanks::after {
  content: "";
  position: absolute;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  width: clamp(82px, 12vw, 150px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(245, 215, 43, 0.24), transparent 68%);
  pointer-events: none;
}

.contact-form__thanks[hidden] {
  display: none;
}

.contact-form__thanks-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.contact-form__thanks > div {
  position: relative;
  z-index: 1;
}

.contact-form__thanks-title {
  margin-bottom: 8px;
  color: var(--yellow);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.9vw, 2.45rem);
  font-weight: 900;
  line-height: 0.96;
}

.contact-form__thanks-copy {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  line-height: 1.5;
}

.site-footer {
  padding: 28px 0 22px;
}

.site-footer__panel {
  display: grid;
  grid-template-columns: 240px max-content minmax(360px, 620px);
  column-gap: clamp(28px, 4vw, 54px);
  row-gap: 18px;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.site-footer__logo {
  width: 100%;
  max-width: 240px;
  object-fit: contain;
  align-self: center;
  justify-self: end;
}

.site-footer__menu {
  display: grid;
  justify-items: start;
  gap: 8px;
  align-self: center;
}

.site-footer__menu a {
  min-height: 38px;
  padding: 0 14px;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
}

.site-footer__label {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__subscribe {
  display: grid;
  align-content: center;
  gap: 10px;
  align-self: center;
  justify-self: start;
}

.site-footer h2 {
  margin-top: 0;
  color: var(--paper);
  font-size: 2.5rem;
  white-space: nowrap;
}

.site-footer__subscribe p:last-child {
  max-width: 38rem;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__copyright {
  display: grid;
  gap: 4px;
  margin: 16px auto 0;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.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;
}

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

  .sports-ticker__track {
    animation: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .section--highlight-reel .highlight-reel__intro,
  .js .section--highlight-reel .video-wrapper,
  .js .section--highlight-reel .socials-panel {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero__content,
  .podcast-intro-shell,
  .hosts-showcase,
  .contact-shell,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section--podcast-intro {
    padding-block: clamp(32px, 6vw, 44px);
  }

  .podcast-intro-shell {
    gap: 0;
  }

  .hero__copy {
    grid-column: auto;
    justify-self: center;
    max-width: 660px;
    text-align: center;
  }

  .hero h1,
  .hero__lede {
    margin-left: auto;
  }

  .hero__lede {
    margin-right: auto;
    text-align: center;
    font-size: clamp(1.85rem, 3.6vw, 2.35rem);
  }

  .hero h1::before {
    right: -0.22em;
    left: -0.22em;
  }

  .podcast-intro__visual {
    justify-self: center;
    width: min(100%, 760px);
    max-width: calc(100vw - 24px);
    aspect-ratio: 1.38 / 1;
    overflow: hidden;
    margin-top: clamp(-24px, -2.8vw, -10px);
    margin-bottom: clamp(-14px, -1.6vw, -6px);
    transform: none;
  }

  .podcast-intro__image {
    width: 133.5%;
    max-width: none;
    transform: translate(-12.35%, -17%);
  }

  .hosts-showcase__intro,
  .contact-shell__intro {
    position: static;
  }

  .socials-panel {
    grid-template-columns: 1fr;
  }

  .socials-panel__intro h3 {
    max-width: 18ch;
  }
}

@media (max-width: 760px) {
  :root {
    --ticker-height: 58px;
    --nav-offset: 12px;
  }

  .site-frame {
    width: min(100% - 24px, 1320px);
  }

  .site-nav-island {
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 28px;
  }

  .site-nav-island a:not(.button) {
    min-height: 36px;
    font-size: clamp(0.72rem, 2.7vw, 0.84rem);
  }

  .site-nav-island__cta {
    width: auto;
    min-height: 40px;
    padding: 0 14px;
    white-space: nowrap;
    font-size: 0.86rem;
  }

  .hero__media::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 40%, rgba(0, 0, 0, 0.2)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 70%);
  }

  .hero__media-image,
  .hero__media-video {
    object-position: 22% center;
  }

  .hero__layout {
    padding-top: calc(var(--ticker-height) + 108px);
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .hero__lede {
    margin-top: clamp(42px, 8vw, 68px);
    width: auto;
    max-width: min(100%, 22rem);
    font-size: clamp(1.18rem, 4.7vw, 1.7rem);
    line-height: 1.14;
  }

  .hero__lede span {
    display: inline;
    white-space: normal;
  }

  .hero h1::before {
    top: -0.16em;
    right: -0.24em;
    bottom: -0.16em;
    left: -0.24em;
  }

  .section {
    padding: 56px 0;
  }

  .section--highlight-reel {
    padding-block: clamp(90px, 24vw, 132px);
  }

  .highlight-reel,
  .social-links,
  .services-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .socials-panel {
    margin-top: clamp(28px, 10vw, 46px);
  }

  .social-card {
    min-height: 118px;
  }

  .highlight-reel__intro h2 {
    font-size: clamp(2.35rem, 10vw, 3.8rem);
  }

  .highlight-reel__intro h2 span {
    white-space: normal;
  }

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

  .service-card {
    min-height: 178px;
  }

  .contact-panel {
    padding: 22px;
  }

  .contact-form button {
    width: 100%;
  }

  .contact-form__thanks {
    position: fixed;
    z-index: 1400;
    top: 50%;
    left: 50%;
    grid-template-columns: 1fr;
    justify-items: start;
    width: min(calc(100% - 24px), 420px);
    max-height: calc(100dvh - 48px);
    overflow: auto;
    padding: 18px;
    transform: translate(-50%, -50%);
    animation: contact-thanks-pop 0.24s ease-out;
  }

  .contact-form__thanks-logo {
    width: min(100%, 120px);
  }

  .contact-title__brand {
    font-size: 0.78em;
  }

  .site-footer__panel {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 20px;
    padding: 18px;
    text-align: center;
  }

  .site-footer__logo {
    justify-self: center;
    width: min(100%, 210px);
  }

  .site-footer__menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    justify-self: center;
    gap: 6px 10px;
  }

  .site-footer__subscribe {
    justify-self: center;
    justify-items: center;
    max-width: 34rem;
  }

  .site-footer h2 {
    font-size: 1.9rem;
  }

  .site-footer__subscribe p:last-child {
    max-width: 32rem;
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .hero__media-image,
  .hero__media-video {
    object-position: 14% center;
  }

}

@media (max-width: 520px) {
  :root {
    --ticker-height: 54px;
  }

  .sports-ticker__label {
    padding: 0 16px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }

  .sports-ticker__track span {
    padding: 0 28px;
    font-size: 1rem;
  }

  .site-nav-island {
    flex-wrap: nowrap;
    gap: 6px;
    padding: 8px 10px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav-island::-webkit-scrollbar {
    display: none;
  }

  .site-nav-island a:not(.button) {
    flex: 0 0 auto;
    justify-content: center;
    min-height: 34px;
    font-size: clamp(0.68rem, 2.5vw, 0.78rem);
  }

  .site-nav-island__cta {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .site-footer h2 {
    font-size: 1.34rem;
  }

  .site-footer__label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .site-footer__logo {
    width: min(100%, 184px);
  }

  .contact-title__brand {
    font-size: 0.7em;
  }

  .hero__media-image,
  .hero__media-video {
    object-position: 8% center;
  }

  .hero__lede {
    max-width: min(100%, 21rem);
    font-size: clamp(1.34rem, 6vw, 1.55rem);
  }

}

@keyframes contact-thanks-pop {
  from {
    opacity: 0;
    transform: translate(-50%, -44%) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
