@font-face {
  font-family: 'Coolvetica';
  src: url('public/fonts/Coolvetica Rg.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Coolvetica';
  src: url('public/fonts/Coolvetica-Light-Regular.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Coolvetica';
  src: url('public/fonts/Coolvetica-Extra-Light-Regular.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'CoolveticaRg2';
  src: url('public/fonts/Coolvetica Rg 2.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

:root {
  --bg: #050505;
  --panel: #101010;
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #f7f7f7;
  --muted: rgba(255, 255, 255, 0.88);
  --watermark: #1a1a1a;
  --blue: #1500ff;
  --accent-blue: #4978ff;
  --blue-soft: rgba(21, 0, 255, 0.9);
  --green: #16ff44;
  --nav-height: 56px;
  --radius-pill: 999px;
  --radius-card: 20px;
  --button-height: 39px;
  --container: 1280px;
  --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-duration: 1080ms;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Coolvetica', Arial, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.accent {
  color: var(--accent-blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--button-height);
  padding: 0 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  transition: transform 0.28s ease, opacity 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

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

.btn-solid {
  background: var(--blue);
  color: #fff;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
  background: transparent;
}

.btn-dark {
  background: #070707;
  color: #fff;
}

.btn-light-outline {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: transparent;
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--nav-height);
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.navbar.is-scrolled {
  background: rgba(0, 0, 0, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-shell {
  width: min(calc(100% - 52px), 1280px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav-logo {
  width: 28px;
  height: auto;
  animation: navLogoIntro 860ms var(--motion-ease) 40ms both;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 41px;
  margin: 0 auto;
}

.nav-links li {
  animation: navLinkIntro 880ms var(--motion-ease) both;
  animation-delay: calc(90ms + var(--item-index, 0) * 70ms);
}

.nav-links a {
  position: relative;
  display: inline-flex;
  padding: 2px 0;
  font-size: 0.73rem;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.96);
  transition: color 0.26s ease, opacity 0.26s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0));
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: center;
  transition: transform 0.42s var(--motion-ease), opacity 0.28s ease;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.motion-reveal {
  --motion-x: 0px;
  --motion-y: 48px;
  --motion-scale: 0.982;
  --motion-delay: 0ms;
  opacity: 0;
  transform: translate3d(var(--motion-x), var(--motion-y), 0) scale(var(--motion-scale));
  transition:
    transform var(--motion-duration) var(--motion-ease),
    opacity 820ms ease;
  transition-delay: var(--motion-delay);
  will-change: transform, opacity;
}

.motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-left {
  --motion-x: -56px;
  --motion-y: 10px;
}

.motion-right {
  --motion-x: 56px;
  --motion-y: 10px;
}

.motion-up {
  --motion-x: 0px;
  --motion-y: 56px;
}

.motion-soft {
  --motion-scale: 0.988;
}

@keyframes heroMarkDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -6px, 0) scale(1.015);
  }
}

@keyframes navLogoIntro {
  from {
    opacity: 0;
    transform: translate3d(-18px, 0, 0);
  }

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

@keyframes navLinkIntro {
  from {
    opacity: 0;
    transform: translate3d(0, -12px, 0);
  }

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

.hero {
  padding-top: var(--nav-height);
  background: var(--blue);
}

.hero-inner {
  width: min(calc(100% - 40px), 1010px);
  min-height: 510px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 38px;
}

.hero-portrait {
  flex: 0 0 354px;
  align-self: flex-end;
}

.hero-portrait img {
  width: 100%;
  height: auto;
  transform-origin: 50% 100%;
}

.hero-copy {
  width: min(100%, 454px);
  padding: 34px 0 122px;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 23px;
}

.hero-mark {
  width: 150px;
  max-width: none;
  flex: 0 0 auto;
  transform-origin: center;
}

.hero-brand.motion-reveal.is-visible .hero-mark {
  animation: heroMarkDrift 7.4s ease-in-out 0.95s infinite;
}

.hero-name {
  margin: 0;
  font-size: clamp(3.9rem, 5.2vw, 5.15rem);
  font-weight: 300;
  line-height: 0.86;
  letter-spacing: -0.05em;
}

.hero-name span {
  display: block;
}

.hero-name span:first-child {
  font-family: 'CoolveticaRg2', 'Coolvetica', sans-serif;
  font-weight: 400;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1;
}

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

.hero-btn {
  min-width: 126px;
}

.service-tabs {
  background: #000;
  padding: 69px 20px 78px;
}

.service-tabs-inner {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-pill {
  width: 153px;
  min-height: 82px;
  border-radius: 18px;
  background: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
  position: relative;
  transition: transform 0.42s var(--motion-ease);
}

.service-pill:hover,
.feature-card:hover,
.lp-card:hover,
.sports-pill:hover {
  transform: translate3d(0, -4px, 0);
}

.feature-section {
  position: relative;
  min-height: 760px;
  padding: 88px 0 142px;
  background: #000;
  overflow: hidden;
  isolation: isolate;
}

.feature-inner {
  width: min(calc(100% - 40px), 1520px);
  margin: 0 auto;
  padding-inline: clamp(44px, 3.4vw, 72px);
  position: relative;
  z-index: 1;
  display: flex;
}

.feature-section-right .feature-inner {
  justify-content: flex-end;
}

.feature-section-left .feature-inner {
  justify-content: flex-start;
}

.feature-hook,
.feature-body,
.feature-line,
.feature-card-title,
.feature-list li,
.lp-hook,
.lp-body,
.lp-card-title,
.lp-list li,
.footer-label,
.footer-bottom {
  font-weight: 300;
}

.feature-hook {
  margin: 0;
  color: #fff;
  font-size: 1.03rem;
  line-height: 1.05;
  letter-spacing: 0.005em;
}

.feature-body {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.01rem;
  line-height: 1.07;
  letter-spacing: 0.006em;
}

.feature-line {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.05;
  letter-spacing: 0.006em;
  text-decoration: underline;
  text-underline-offset: 0.08em;
}

.feature-card {
  margin-top: 38px;
  width: 100%;
  min-height: 241px;
  padding: 26px 34px 28px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
  transition: transform 0.42s var(--motion-ease), border-color 0.42s ease;
}

.feature-card-left {
  width: 100%;
}

.feature-card-default {
  width: 100%;
}

.feature-card-title {
  margin: 0;
  text-align: center;
  color: #efefef;
  font-size: 1rem;
  line-height: 1.05;
  letter-spacing: 0.006em;
}

.feature-card-title strong {
  font-weight: 400;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 42px;
  margin-top: 31px;
  width: 100%;
  justify-content: center;
}

.feature-list-single {
  display: block;
}

.feature-list ul {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.feature-list li,
.lp-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #f4f4f4;
  font-size: 0.99rem;
  line-height: 1.03;
  letter-spacing: 0.004em;
  width: min(100%, 236px);
}

.feature-list li img,
.lp-list li img {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%) invert(77%) sepia(84%) saturate(6798%) hue-rotate(80deg) brightness(110%) contrast(122%);
}

.feature-card:hover,
.lp-card:hover,
.sports-pill:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.feature-actions {
  position: absolute;
  left: 50%;
  bottom: 56px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 30px;
  transform: translateX(-50%);
}

.feature-primary {
  min-width: 159px;
}

.feature-secondary {
  min-width: 301px;
}

.feature-watermark,
.sports-title {
  --watermark-shift: 0px;
  --watermark-shift-y: 0px;
  --watermark-opacity: 1;
  --title-color: var(--watermark);
  position: absolute;
  z-index: 0;
  color: var(--title-color);
  opacity: var(--watermark-opacity);
  transform: translate3d(var(--watermark-shift), var(--watermark-shift-y), 0);
  transition: color 480ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity, color;
}

.feature-watermark {
  font-size: clamp(12.4rem, 18.4vw, 24rem);
  line-height: 0.67;
  letter-spacing: 0.01em;
  pointer-events: none;
  user-select: none;
}

.feature-watermark span {
  display: block;
  font-weight: 300;
}

.feature-watermark span:last-child {
  font-family: 'CoolveticaRg2', 'Coolvetica', sans-serif;
  font-weight: 400;
}

.feature-watermark.is-active,
.sports-title.is-active {
  --title-color: #fff;
  color: #fff;
}

.feature-watermark-left {
  left: -38px;
  top: 46px;
}

.feature-watermark-right {
  right: -104px;
  top: 50px;
  text-align: left;
}

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

  .nav-logo,
  .nav-links li,
  .motion-reveal {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .hero-portrait img,
  .hero-mark {
    animation: none !important;
    opacity: 1 !important;
    transition: none !important;
    transform: none !important;
  }

  .feature-watermark {
    transform: none !important;
    opacity: 1 !important;
    transition: color 240ms ease;
  }

  .sports-title {
    opacity: 1 !important;
    transform: translate3d(0, var(--sports-title-rise, -14px), 0) !important;
    transition: color 240ms ease;
  }

  .branding-gallery-slide,
  .branding-gallery-slide img {
    transition: none !important;
  }
}

.feature-content {
  width: min(100%, 626px);
  position: relative;
  top: -30px;
}

.feature-branding .feature-content {
  width: min(100%, 626px);
  margin-right: 0;
  display: grid;
  align-items: start;
  transition: transform 980ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.feature-social .feature-content {
  width: min(100%, 544px);
  margin-right: 0;
}

.feature-thumbs .feature-content {
  width: min(100%, 544px);
  margin-left: 0;
}

.feature-branding .feature-card,
.feature-social .feature-card,
.feature-thumbs .feature-card {
  margin-left: 0;
  margin-right: 0;
}

.feature-branding-copy {
  grid-area: 1 / 1;
  width: 100%;
  position: relative;
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) rotateY(0deg) scale(1);
  transform-origin: right center;
  transition:
    opacity 360ms ease,
    transform 980ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.feature-branding .feature-watermark {
  pointer-events: none;
}

.feature-branding .feature-watermark-wordmark {
  display: block;
  width: fit-content;
  pointer-events: auto;
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  transform-origin: left center;
  transition: transform 980ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.feature-branding .feature-watermark-wordmark:focus-visible,
.feature-branding .feature-secondary:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.64);
  outline-offset: 8px;
}

.branding-gallery {
  grid-area: 1 / 1;
  width: 100%;
  position: relative;
  overflow: visible;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-92px, 0, 0) rotateY(10deg) scale(0.972);
  transform-origin: left center;
  transition:
    opacity 420ms ease 120ms,
    transform 980ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 420ms;
}

.branding-gallery-viewport {
  position: relative;
  width: 100%;
  height: 456px;
  overflow: hidden;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  cursor: grab;
}

.branding-gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 420ms ease;
}

.branding-gallery-slide.is-visible {
  opacity: 1;
}

.branding-gallery-slide img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.branding-gallery-viewport.is-dragging {
  cursor: grabbing;
}

.branding-gallery-hint {
  position: absolute;
  inset: 0 0 0 auto;
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.branding-gallery-hint.is-visible {
  opacity: 1;
}

.branding-gallery-hint-preview {
  width: 104px;
  height: 100%;
  overflow: hidden;
  transform: translateX(64px);
}

.branding-gallery-hint.is-visible .branding-gallery-hint-preview {
  animation: brandingHintPeek 1.9s ease-in-out infinite;
}

.branding-gallery-hint-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.branding-gallery-next {
  position: absolute;
  right: -72px;
  top: 50%;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  outline: 0;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: #fff;
  font-size: 3.4rem;
  font-weight: 300;
  line-height: 0.8;
  letter-spacing: -0.08em;
  pointer-events: auto;
  opacity: 1;
  z-index: 4;
  transform: translateY(-50%);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.branding-gallery-next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.04);
}

@keyframes brandingHintPeek {
  0%,
  100% {
    transform: translateX(64px);
  }

  50% {
    transform: translateX(34px);
  }
}

.feature-branding.is-gallery-active {
  --branding-content-shift-open: 0px;
  --branding-watermark-shift-open: 0px;
}

.feature-branding.is-gallery-active .feature-content {
  transform: translate3d(var(--branding-content-shift-open), 0, 0);
}

.feature-branding.is-gallery-active .feature-branding-copy {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(92px, 0, 0) rotateY(-10deg) scale(0.972);
  transition-delay: 0s, 0s, 420ms;
}

.feature-branding.is-gallery-active .branding-gallery {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) rotateY(0deg) scale(1);
  transition-delay: 120ms, 0s, 0s;
}

.feature-branding.is-gallery-active .feature-watermark-wordmark {
  transform: translate3d(var(--branding-watermark-shift-open), 0, 0);
}

.feature-social .feature-card,
.feature-thumbs .feature-card {
  width: min(100%, 544px);
  min-height: 218px;
  padding: 24px 28px 24px;
}

.sports-section {
  position: relative;
  background: var(--blue);
  padding: 46px 0 104px;
  overflow: hidden;
}

.sports-section::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 150px;
  background: #000;
}

.sports-inner {
  width: min(calc(100% - 28px), 1880px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sports-title {
  margin: 0;
  --title-color: rgba(255, 255, 255, 0.28);
  --sports-title-rise: -14px;
  position: relative;
  text-align: center;
  font-size: clamp(14.8rem, 29vw, 21rem);
  font-weight: 300;
  line-height: 0.78;
  letter-spacing: -0.11em;
  transform: translate3d(var(--watermark-shift), calc(var(--sports-title-rise) + var(--watermark-shift-y)), 0);
}

.sports-carousel-shell {
  position: relative;
  margin-top: 56px;
}

.sports-carousel {
  overflow: hidden;
  padding-inline: 0;
}

.sports-carousel::before,
.sports-carousel::after {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 34px;
  align-items: flex-start;
  transform: translateX(0);
  transition: none;
  will-change: transform;
}

.sports-slide {
  flex: 0 0 auto;
  display: grid;
  justify-items: center;
}

.sports-card {
  width: auto;
  height: auto;
  max-width: 520px;
  overflow: visible;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.sports-card img {
  width: auto;
  height: min(636px, 43vw);
  max-width: min(520px, 100%);
  object-fit: contain;
}

.sports-pill {
  min-height: 43px;
  margin: 24px auto 0;
  padding: 11px 14px 10px 13px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: #0a0a0a;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  width: min(100%, var(--pill-width, 180px));
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.03;
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.42s var(--motion-ease), border-color 0.42s ease;
}

.sports-pill span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  white-space: normal;
}

.sports-caption-track {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  gap: 28px 24px;
  width: min(calc(100% - 240px), 1500px);
  margin: 96px auto 0;
  padding: 0;
}

.sports-caption-track .sports-pill {
  margin: 0;
}

.sports-pill img {
  width: 15px;
  height: 12px;
  margin-top: 0;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
}

.sports-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 52px;
}

.sports-primary {
  min-width: 111px;
}

.sports-secondary {
  min-width: 220px;
}

.lp-section {
  width: min(calc(100% - 44px), 1320px);
  margin: 0 auto;
  padding: 74px 0 84px;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
}

.lp-column {
  display: flex;
  flex-direction: column;
}

.lp-title {
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(4.35rem, 6.2vw, 6.9rem);
  font-weight: 300;
  line-height: 0.72;
  letter-spacing: -0.05em;
}

.lp-title span {
  display: block;
}

.lp-title span:last-child {
  font-family: 'CoolveticaRg2', 'Coolvetica', sans-serif;
  font-weight: 400;
}

.lp-hook {
  margin: 0 0 21px;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.06;
  letter-spacing: 0.005em;
}

.lp-body {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.99rem;
  line-height: 1.07;
  letter-spacing: 0.006em;
  max-width: 470px;
}

.lp-card {
  width: min(100%, 344px);
  min-height: 239px;
  margin-top: 54px;
  padding: 22px 28px 24px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
  transition: transform 0.42s var(--motion-ease), border-color 0.42s ease;
}

.lp-card-title {
  margin: 0;
  text-align: center;
  color: #efefef;
  font-size: 0.98rem;
  line-height: 1.05;
  letter-spacing: 0.006em;
}

.lp-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  justify-items: center;
  width: 100%;
}

.lp-button {
  min-width: 262px;
  margin-top: 54px;
  align-self: flex-start;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  width: min(calc(100% - 42px), 1280px);
  margin: 0 auto;
  padding: 28px 0 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 25px;
}

.footer-name {
  color: #fff;
  font-size: 0.98rem;
  line-height: 0.83;
  letter-spacing: -0.05em;
}

.footer-name span {
  display: block;
}

.footer-social {
  text-align: center;
}

.footer-label {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 9px;
}

.footer-icons img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-cta {
  justify-self: end;
  text-align: right;
}

.footer-button {
  min-width: 116px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 11px 20px 13px;
  text-align: center;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.62rem;
  line-height: 1.05;
  letter-spacing: 0;
}

@media (max-width: 1120px) {
  .hero-inner {
    width: min(calc(100% - 44px), 900px);
    min-height: 470px;
  }

  .hero-portrait {
    flex-basis: 300px;
  }

  .hero-copy {
    width: min(100%, 410px);
    padding-bottom: 96px;
  }

  .hero-mark {
    width: 128px;
  }

  .hero-name {
    font-size: clamp(3.2rem, 7vw, 4.2rem);
  }

  .feature-section {
    min-height: 700px;
  }

  .feature-watermark {
    font-size: clamp(10rem, 18vw, 18rem);
  }

  .feature-card {
    width: min(100%, 560px);
  }

  .feature-content {
    top: -16px;
  }

  .feature-branding .feature-content {
    margin-right: 0;
  }

  .feature-social .feature-content {
    margin-right: 0;
  }

  .feature-thumbs .feature-content {
    margin-left: 0;
  }

  .sports-section {
    padding: 40px 0 96px;
  }

  .sports-section::before {
    height: 136px;
  }

  .sports-title {
    --sports-title-rise: -2px;
    font-size: clamp(10.8rem, 23vw, 16rem);
  }

  .sports-slide {
    flex-basis: auto;
  }

  .sports-card {
    max-width: 438px;
  }

  .sports-card img {
    height: min(540px, 41vw);
    max-width: min(438px, 100%);
  }

  .sports-caption-track {
    width: min(calc(100% - 52px), 1200px);
    gap: 18px;
    margin-top: 74px;
  }

  .lp-section {
    gap: 40px;
  }
}

@media (max-width: 860px) {
  .nav-shell {
    width: calc(100% - 30px);
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 0.66rem;
  }

  .hero-inner {
    width: calc(100% - 28px);
    min-height: auto;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-top: 24px;
  }

  .hero-portrait {
    flex-basis: auto;
    width: min(100%, 300px);
  }

  .hero-copy {
    width: min(100%, 500px);
    padding: 10px 0 72px;
  }

  .hero-brand {
    justify-content: center;
  }

  .hero-services,
  .hero-actions {
    justify-content: center;
  }

  .service-tabs {
    padding: 42px 16px 52px;
  }

  .service-tabs-inner {
    gap: 12px;
  }

  .service-pill {
    width: 132px;
    min-height: 72px;
    font-size: 0.95rem;
  }

  .feature-section {
    min-height: auto;
    padding: 70px 0 120px;
  }

  .feature-inner {
    width: calc(100% - 28px);
    padding-inline: 0;
  }

  .feature-content {
    width: min(100%, 500px);
    top: 0;
  }

  .feature-branding .feature-content,
  .feature-social .feature-content,
  .feature-thumbs .feature-content {
    margin: 0;
  }

  .feature-branding .feature-content {
    transition-duration: 820ms;
  }

  .feature-branding .feature-watermark-wordmark,
  .feature-branding-copy,
  .branding-gallery {
    transition-duration: 820ms;
  }

  .feature-watermark-left {
    left: -24px;
  }

  .feature-watermark-right {
    right: -74px;
  }

  .feature-card,
  .feature-card-left {
    width: 100%;
  }

  .feature-branding .feature-card,
  .feature-social .feature-card,
  .feature-thumbs .feature-card {
    margin-left: 0;
    margin-right: 0;
  }

  .branding-gallery-viewport {
    height: 374px;
  }

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

  .feature-actions {
    position: static;
    transform: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
  }

  .sports-inner {
    width: calc(100% - 16px);
  }

  .sports-section {
    padding: 32px 0 90px;
  }

  .sports-section::before {
    height: 104px;
  }

  .sports-title {
    --sports-title-rise: -2px;
    font-size: clamp(7.6rem, 24vw, 10.8rem);
  }

  .sports-carousel {
    padding-inline: 0;
  }

  .carousel-track {
    gap: 22px;
  }

  .sports-slide {
    flex-basis: auto;
  }

  .sports-card {
    max-width: 320px;
  }

  .sports-card img {
    height: min(392px, 72vw);
    max-width: min(320px, 100%);
  }

  .sports-caption-track {
    width: calc(100% - 20px);
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 38px;
    padding: 0;
    justify-content: center;
  }

  .lp-section {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 74px;
    padding: 62px 0 70px;
  }

  .lp-card {
    width: min(100%, 360px);
    margin-top: 34px;
  }

  .lp-button {
    margin-top: 32px;
  }

  .footer-inner {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-brand,
  .footer-social,
  .footer-cta {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    width: calc(100% - 18px);
  }

  .nav-logo {
    width: 24px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 0.62rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-mark {
    width: 92px;
  }

  .hero-name {
    font-size: 2.55rem;
  }

  .hero-services {
    gap: 12px;
    font-size: 0.68rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
  }

  .hero-btn,
  .feature-primary,
  .feature-secondary,
  .sports-primary,
  .sports-secondary,
  .lp-button,
  .footer-button {
    min-width: min(100%, 280px);
    width: min(100%, 280px);
  }

  .service-pill {
    width: calc(50% - 8px);
  }

  .feature-hook,
  .feature-body,
  .feature-line,
  .lp-hook,
  .lp-body,
  .feature-list li,
  .lp-list li,
  .sports-pill {
    font-size: 0.92rem;
  }

  .feature-card,
  .lp-card {
    padding-inline: 20px;
  }

  .branding-gallery-viewport {
    height: 286px;
  }

  .sports-slide {
    flex-basis: 100%;
  }

  .sports-caption-track {
    gap: 12px;
    margin-top: 28px;
  }

  .sports-pill {
    width: min(100%, 320px) !important;
  }
}
