:root {
  --font-jslide: "Brush King", "Sick Capital Vice", "Brush Script MT", "Segoe Script", cursive;
  --font-display: "Lemon Milk", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

@font-face {
  font-family: "Brush King";
  src: url("assets/brush-king.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Sick Capital Vice";
  src: url("assets/sickcapital-vice.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Lemon Milk";
  src: url("assets/lemonmilk-regular.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --black: #020404;
  --black-2: #071011;
  --panel: rgba(3, 8, 9, 0.9);
  --panel-soft: rgba(8, 17, 18, 0.72);
  --line: rgba(18, 238, 236, 0.42);
  --teal: #12eeec;
  --cyan: #5edfff;
  --white: #f7fbfb;
  --muted: #a9b9b9;
  --steel: #516366;
  --shadow: 0 28px 72px rgba(0, 0, 0, 0.62);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(ellipse at 14% 18%, rgba(247, 251, 251, 0.055), transparent 26%),
    radial-gradient(ellipse at 88% 42%, rgba(18, 238, 236, 0.045), transparent 32%),
    radial-gradient(ellipse at 50% -10%, rgba(18, 238, 236, 0.08), transparent 30%),
    linear-gradient(180deg, #020404 0%, #04090a 48%, #020404 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(ellipse at 12% 18%, rgba(247, 251, 251, 0.14), transparent 28%),
    radial-gradient(ellipse at 74% 12%, rgba(18, 238, 236, 0.11), transparent 34%),
    radial-gradient(ellipse at 36% 56%, rgba(247, 251, 251, 0.08), transparent 32%),
    radial-gradient(ellipse at 92% 78%, rgba(18, 238, 236, 0.07), transparent 30%);
  filter: blur(18px);
  opacity: 0.52;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 12%, rgba(247, 251, 251, 0.055) 20%, transparent 36%),
    linear-gradient(74deg, transparent 14%, rgba(18, 238, 236, 0.045) 30%, transparent 48%),
    radial-gradient(ellipse at 50% -10%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  filter: blur(12px);
  opacity: 0.74;
}

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

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

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

button {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 12px max(18px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(18, 238, 236, 0.14);
  background:
    linear-gradient(180deg, rgba(1, 5, 6, 0.97), rgba(1, 5, 6, 0.82));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  transition: background-color 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(18, 238, 236, 0.24);
  background:
    linear-gradient(180deg, rgba(1, 5, 6, 0.98), rgba(1, 5, 6, 0.9));
}

.brand {
  min-width: max-content;
}

.brand-script,
.hero-signature,
.handwritten,
.contact-main h2,
.follow-panel strong,
.section-copy h2 span {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: normal;
}

.brand-script {
  position: relative;
  display: inline-block;
  color: var(--white);
  font-size: clamp(1.12rem, 2.2vw, 1.72rem);
  line-height: 1;
  transform: rotate(-5deg) skewX(-5deg);
  text-shadow: 0 0 18px rgba(18, 238, 236, 0.38);
}

.brand-script,
.hero-signature,
.follow-panel strong,
h1 {
  font-family: var(--font-jslide);
  font-style: normal;
  font-weight: 400;
}

.brand-script::first-letter {
  color: var(--teal);
}

.brand-script::after {
  position: absolute;
  left: 3%;
  right: 8%;
  bottom: -5px;
  height: 8px;
  z-index: -1;
  content: "";
  background: var(--teal);
  clip-path: polygon(0 42%, 90% 0, 100% 36%, 7% 100%);
  opacity: 0.74;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 2vw, 28px);
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(247, 251, 251, 0.9);
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  content: "";
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 251, 251, 0.55);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--teal);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px 0 118px;
  background:
    linear-gradient(90deg, rgba(2, 4, 4, 0.18) 0%, rgba(2, 4, 4, 0.02) 45%, rgba(2, 4, 4, 0.34) 100%),
    url("assets/jslide-hero-bg.png") center center / cover no-repeat,
    #020404;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -5;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 4, 4, 0.5) 0%, rgba(2, 4, 4, 0.12) 45%, rgba(2, 4, 4, 0.08) 74%, rgba(2, 4, 4, 0.58) 100%),
    linear-gradient(180deg, rgba(2, 4, 4, 0.18) 0%, transparent 44%, rgba(2, 4, 4, 0.92) 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(2, 4, 4, 0.96));
}

.hero-fog {
  position: absolute;
  inset: 10% -10% -12%;
  z-index: -3;
  background:
    radial-gradient(ellipse at 34% 88%, rgba(2, 4, 4, 0.82), transparent 36%),
    radial-gradient(ellipse at 5% 54%, rgba(255, 255, 255, 0.05), transparent 18%);
  filter: blur(14px);
  opacity: 0.68;
}

.stadium-glow {
  display: none;
}

.jaguar-eyes {
  display: none;
}

.jaguar-eyes::before {
  position: absolute;
  inset: -36px 8% auto;
  height: 220px;
  content: "";
  background:
    radial-gradient(circle at 18% 54%, rgba(18, 238, 236, 0.88) 0 5px, transparent 7px),
    radial-gradient(circle at 82% 54%, rgba(18, 238, 236, 0.88) 0 5px, transparent 7px),
    radial-gradient(circle at 22% 78%, rgba(247, 251, 251, 0.12) 0 2px, transparent 4px),
    radial-gradient(circle at 70% 38%, rgba(247, 251, 251, 0.1) 0 2px, transparent 4px),
    radial-gradient(ellipse at 50% 62%, rgba(18, 238, 236, 0.16), transparent 60%);
  opacity: 0.9;
}

.jaguar-eyes span {
  position: absolute;
  top: 92px;
  width: 36%;
  height: 74px;
  border: 2px solid rgba(18, 238, 236, 0.46);
  background: radial-gradient(ellipse at 50% 50%, rgba(18, 238, 236, 0.42) 0 12%, rgba(1, 5, 6, 0.86) 13% 100%);
  clip-path: polygon(0 42%, 24% 12%, 72% 0, 100% 36%, 74% 70%, 24% 90%);
}

.jaguar-eyes span:first-child {
  left: 5%;
  transform: rotate(-6deg);
}

.jaguar-eyes span:last-child {
  right: 5%;
  transform: scaleX(-1) rotate(-6deg);
}

.paint-claws {
  position: absolute;
  width: 210px;
  height: 280px;
  pointer-events: none;
  background:
    linear-gradient(107deg, transparent 0 14%, rgba(18, 238, 236, 0.92) 15% 20%, transparent 21% 36%, rgba(18, 238, 236, 0.75) 37% 42%, transparent 43% 57%, rgba(18, 238, 236, 0.82) 58% 64%, transparent 65%),
    linear-gradient(103deg, transparent 0 36%, rgba(247, 251, 251, 0.22) 37% 39%, transparent 40%);
  clip-path: polygon(0 12%, 100% 0, 80% 100%, 0 82%);
  opacity: 0.76;
}

.hero-claws {
  display: none;
}

.hero-player-wrap {
  position: absolute;
  inset: 86px 0 0 43%;
  z-index: 1;
  pointer-events: none;
}

.hero-player {
  position: absolute;
  right: max(26px, calc((100vw - var(--max)) / 2));
  bottom: -10px;
  width: min(40vw, 570px);
  max-height: 97%;
  object-fit: contain;
  object-position: bottom right;
  filter:
    drop-shadow(0 0 24px rgba(18, 238, 236, 0.22))
    drop-shadow(-28px 36px 42px rgba(0, 0, 0, 0.84));
}

.hero-player-mobile {
  display: none;
}

.hero-number {
  position: absolute;
  left: clamp(-86px, -5vw, -42px);
  right: auto;
  bottom: 43%;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(18, 238, 236, 0.78);
  font-family: var(--font-display);
  font-size: clamp(7rem, 12vw, 12rem);
  line-height: 0.8;
  opacity: 0.88;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  align-items: center;
}

.hero-copy {
  padding-top: 24px;
}

.player-kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.2rem);
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  position: relative;
  display: inline-block;
  margin: 22px 0 clamp(1.9rem, 3.4vw, 3.2rem) clamp(0.5rem, 1.4vw, 1.1rem);
  color: var(--white);
  font-size: clamp(4.4rem, 10.5vw, 8rem);
  letter-spacing: 0;
  line-height: 0.98;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.44), 0 0 26px rgba(18, 238, 236, 0.24);
  transform: rotate(-3deg) skewX(-3deg) scaleX(1.08);
  transform-origin: left center;
}

h1::before {
  position: absolute;
  left: 10%;
  right: 20%;
  bottom: 18%;
  z-index: -1;
  height: 20%;
  content: "";
  background: var(--teal);
  clip-path: polygon(0 42%, 100% 3%, 92% 100%, 8% 86%);
}

h1::after {
  position: absolute;
  inset: 29% auto auto 8%;
  z-index: -1;
  width: 64%;
  height: 15%;
  content: "";
  background: rgba(18, 238, 236, 0.64);
  clip-path: polygon(0 48%, 100% 2%, 88% 100%, 2% 72%);
}

h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 6px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-meta {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 0;
  margin-bottom: 18px;
}

.hero-meta strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 3rem);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-meta span {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 2vw, 2rem);
  letter-spacing: 0.08em;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero-quote {
  max-width: 340px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-signature {
  margin: 4px 0 26px 120px;
  color: var(--teal);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1;
  transform: none;
}

.button {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--white);
  background: transparent;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
  cursor: pointer;
}

.button::after {
  content: ">";
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 950;
  transform: translateX(0);
  transition: transform 160ms ease;
}

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

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(4px);
}

.button-primary {
  color: #001313;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  box-shadow: 0 0 32px rgba(18, 238, 236, 0.24);
}

.button-primary::before {
  position: absolute;
  inset: -10px -12px;
  z-index: -1;
  content: "";
  background: rgba(18, 238, 236, 0.34);
  clip-path: polygon(4% 18%, 100% 0, 93% 72%, 0 100%);
}

.button-secondary {
  border-color: rgba(247, 251, 251, 0.52);
  background: rgba(1, 5, 6, 0.5);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--teal);
  box-shadow: 0 0 26px rgba(18, 238, 236, 0.16);
}

.button-play {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #001313;
}

.button-play::before {
  width: 0;
  height: 0;
  margin-left: 2px;
  content: "";
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--teal);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quick-stats {
  position: relative;
  z-index: 6;
  width: min(100% - 44px, var(--max));
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  margin: -72px auto 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.stat-card {
  min-height: 126px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 17px 10px;
  border-right: 1px solid rgba(247, 251, 251, 0.22);
  text-align: center;
  transition: background-color 160ms ease, transform 160ms ease;
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card:hover {
  background: rgba(18, 238, 236, 0.08);
}

.stat-icon {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
}

.stat-label {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.96rem;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.stat-card strong {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1.18;
  text-transform: uppercase;
}

.stat-card .stat-value {
  font-size: 0.88rem;
}

.about-section,
.highlights-section,
.season-section,
.gallery-section,
.contact-section {
  position: relative;
  padding: 86px 0;
}

.about-section,
.highlights-section,
.season-section,
.gallery-section {
  isolation: isolate;
  overflow: hidden;
}

.about-section::after,
.highlights-section::after,
.season-section::after,
.gallery-section::after {
  position: absolute;
  inset: 4% -12% 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(ellipse at 18% 28%, rgba(247, 251, 251, 0.09), transparent 30%),
    radial-gradient(ellipse at 82% 64%, rgba(18, 238, 236, 0.06), transparent 34%),
    linear-gradient(105deg, transparent 10%, rgba(247, 251, 251, 0.04) 34%, transparent 58%);
  filter: blur(20px);
  opacity: 0.74;
}

.about-section {
  padding-top: 76px;
}

.about-section::before,
.gallery-section::before,
.contact-section::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(18, 238, 236, 0.45), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.about-art {
  position: relative;
  min-height: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-art::before {
  display: none;
}

.about-art img {
  position: relative;
  width: min(100%, 520px);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  opacity: 1;
  filter: saturate(1.08) contrast(1.08);
}

.section-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-copy p {
  color: rgba(247, 251, 251, 0.86);
  font-size: 1.04rem;
}

.section-copy h2 span {
  display: inline-block;
  color: var(--teal);
  font-size: 1.12em;
  letter-spacing: 0;
  text-transform: none;
  transform: none;
}

.mission-line {
  display: inline-block;
  margin-top: 20px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 4.7rem);
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 0.92;
  text-transform: uppercase;
  transform: skewX(-8deg);
}

.section-heading h2::after {
  position: absolute;
  left: 2%;
  right: 3%;
  bottom: 2%;
  z-index: -1;
  height: 17px;
  content: "";
  background: var(--teal);
  clip-path: polygon(0 55%, 92% 0, 100% 60%, 10% 100%);
  opacity: 0.55;
}

.highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.video-panel {
  position: relative;
  min-height: 318px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--black-2);
  box-shadow: var(--shadow);
}

.video-panel img {
  width: 100%;
  height: 100%;
  min-height: 318px;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.82;
  filter: saturate(1.15) contrast(1.08);
}

.video-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 4, 4, 0.08), rgba(2, 4, 4, 0.34) 52%, rgba(2, 4, 4, 0.9)),
    repeating-linear-gradient(0deg, transparent 0 11px, rgba(255, 255, 255, 0.035) 11px 12px);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(247, 251, 251, 0.9);
  border-radius: 50%;
  background: rgba(1, 5, 6, 0.58);
  box-shadow: 0 0 36px rgba(18, 238, 236, 0.26);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.play-button:hover,
.play-button:focus-visible {
  border-color: var(--teal);
  box-shadow: 0 0 46px rgba(18, 238, 236, 0.42);
  transform: translate(-50%, -50%) scale(1.06);
}

.video-controls {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.video-controls span:first-child,
.video-controls span:last-child {
  height: 4px;
  border-radius: 99px;
  background: rgba(247, 251, 251, 0.32);
}

.video-controls span:first-child {
  background: linear-gradient(90deg, var(--teal) 0 22%, rgba(247, 251, 251, 0.28) 22%);
}

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

.strength-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 12px 0;
  transition: transform 160ms ease;
}

.strength-card:hover {
  transform: translateY(-4px);
}

.strength-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(18, 238, 236, 0.68);
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1.5rem;
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

.strength-card p {
  margin-bottom: 0;
  color: rgba(247, 251, 251, 0.82);
  font-size: 0.96rem;
}

.season-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.9fr) minmax(0, 0.94fr);
  gap: 18px;
}

.stats-card,
.journey-card,
.schedule-card {
  min-height: 394px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background:
    linear-gradient(145deg, rgba(18, 238, 236, 0.12), transparent 38%),
    rgba(1, 5, 6, 0.86);
  box-shadow: var(--shadow);
}

.stats-card,
.schedule-card {
  padding: 24px;
}

.stats-card h2,
.schedule-card h2 {
  margin-bottom: 22px;
  color: var(--teal);
  font-size: clamp(2rem, 3.3vw, 3rem);
  text-align: center;
}

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

.mini-stats div {
  min-height: 88px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 14px 10px;
  border: 1px solid rgba(247, 251, 251, 0.26);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.34);
  text-align: center;
}

.mini-stats span {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.08;
  text-transform: uppercase;
}

.mini-stats strong {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
}

.handwritten {
  margin: 22px 0 0;
  padding: 18px;
  border: 1px solid rgba(247, 251, 251, 0.24);
  border-radius: 4px;
  color: var(--teal);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 0.92;
  text-align: center;
  transform: rotate(-2deg);
}

.journey-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  padding: 46px 28px 52px;
  text-align: center;
  isolation: isolate;
}

.journey-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 4, 4, 0.08), rgba(2, 4, 4, 0.76)),
    url("assets/jslide-hero-bg.png") 68% center / cover no-repeat;
}

.journey-card-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.86;
  background:
    radial-gradient(ellipse at 50% 34%, rgba(18, 238, 236, 0.22), transparent 46%),
    linear-gradient(145deg, rgba(18, 238, 236, 0.18), transparent 45%);
}

.journey-card p,
.journey-card strong {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  line-height: 1;
  text-transform: uppercase;
}

.journey-card p {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  letter-spacing: 0.08em;
}

.journey-card strong {
  color: var(--teal);
  display: block;
  width: min(100%, 420px);
  padding: 0 14px 14px;
  font-family: var(--font-jslide);
  font-size: clamp(1.65rem, 3.05vw, 2.55rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.22;
  text-shadow: 0 0 26px rgba(18, 238, 236, 0.28);
  transform: rotate(-2deg) scaleX(0.82);
  transform-origin: center;
  white-space: nowrap;
}

.schedule-list {
  display: grid;
  gap: 0;
  border: 1px solid rgba(247, 251, 251, 0.24);
  border-radius: 4px;
  overflow: hidden;
}

.schedule-list div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(247, 251, 251, 0.16);
}

.schedule-list div:last-child {
  border-bottom: 0;
}

.schedule-list span {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1.08rem;
  text-transform: uppercase;
}

.schedule-list strong,
.schedule-list small {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.schedule-list small {
  color: rgba(247, 251, 251, 0.78);
}

.schedule-button {
  width: min(100%, 220px);
  margin: 28px auto 0;
  display: flex;
}

.gallery-section {
  padding-top: 50px;
}

.gallery-section .section-heading {
  justify-content: flex-start;
  margin-bottom: 20px;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 238, 236, 0.24);
  border-radius: 4px;
  background: rgba(1, 5, 6, 0.82);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.42);
  transition: transform 160ms ease, border-color 160ms ease;
}

.gallery-card:hover {
  border-color: rgba(18, 238, 236, 0.72);
  transform: translateY(-5px);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.9;
  filter: saturate(1.12) contrast(1.08);
  transition: transform 220ms ease;
}

.gallery-card:nth-child(1) img {
  object-position: center 24%;
}

.gallery-card:nth-child(2) img {
  object-position: center 16%;
}

.gallery-card:nth-child(3) img {
  object-position: center 20%;
}

.gallery-card:nth-child(4) img {
  object-position: center 42%;
}

.gallery-card:nth-child(5) img {
  object-position: center 38%;
}

.gallery-card:nth-child(6) img {
  object-position: center 28%;
}

.gallery-card:hover img {
  transform: scale(1.07);
}

.gallery-card::after {
  position: absolute;
  inset: 44% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(2, 4, 4, 0.86));
}

.gallery-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 76px 0 34px;
  background: #020404;
}

.contact-section::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(ellipse at 18% 54%, rgba(247, 251, 251, 0.12), transparent 24%),
    radial-gradient(ellipse at 70% 40%, rgba(18, 238, 236, 0.1), transparent 34%),
    linear-gradient(108deg, transparent 6%, rgba(247, 251, 251, 0.052) 28%, transparent 48%),
    linear-gradient(90deg, rgba(2, 4, 4, 0.96), rgba(2, 4, 4, 0.52) 42%, rgba(2, 4, 4, 0.92)),
    linear-gradient(180deg, rgba(2, 4, 4, 0.18), #020404 98%),
    url("assets/jslide-hero-bg.png") center 38% / cover no-repeat;
  opacity: 0.9;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.contact-main h2 {
  margin-bottom: 18px;
  color: var(--teal);
  font-family: var(--font-jslide);
  font-size: clamp(2.2rem, 4.4vw, 3.7rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: none;
  transform: none;
}

.contact-main p {
  max-width: 300px;
  color: rgba(247, 251, 251, 0.88);
  font-size: 1rem;
}

.contact-details {
  display: grid;
  gap: 18px;
  padding-left: 32px;
  border-left: 1px solid rgba(247, 251, 251, 0.32);
}

.contact-details article {
  display: grid;
  gap: 4px;
}

.contact-details span {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details strong {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  word-break: break-word;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--teal);
}

.follow-panel {
  position: relative;
  min-height: 250px;
  display: grid;
  align-content: center;
  justify-items: center;
  overflow: visible;
  text-align: center;
}

.follow-panel p {
  max-width: 420px;
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 3.35rem);
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.follow-panel strong {
  color: var(--teal);
  display: block;
  width: min(100%, 520px);
  padding: 0 12px 12px;
  font-size: clamp(2rem, 4.2vw, 3.9rem);
  line-height: 1.18;
  transform: rotate(-3deg) scaleX(0.86);
  transform-origin: center;
  white-space: nowrap;
}

.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 18px 16px 32px;
  color: rgba(247, 251, 251, 0.72);
  background: #020404;
  text-align: center;
}

.site-footer::before {
  position: absolute;
  inset: -160px 0 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(ellipse at 46% 42%, rgba(247, 251, 251, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(2, 4, 4, 0.1), #020404 70%),
    url("assets/jslide-hero-bg.png") center 68% / cover no-repeat;
  opacity: 0.3;
}

.site-footer p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer .studio-credit {
  margin-top: 8px;
  color: rgba(18, 238, 236, 0.88);
  letter-spacing: 0.03em;
  text-transform: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 50;
  width: min(calc(100% - 32px), 430px);
  padding: 13px 16px;
  border: 1px solid rgba(18, 238, 236, 0.54);
  border-radius: 4px;
  color: var(--white);
  background: rgba(1, 5, 6, 0.92);
  box-shadow: var(--shadow);
  text-align: center;
  transform: translate(-50%, 120%);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .social-links {
    display: none;
  }

  .hero-player {
    width: min(46vw, 540px);
  }

  .quick-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .stat-card:nth-child(4) {
    border-right: 0;
  }

  .season-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .journey-card {
    min-height: 300px;
    padding-inline: 22px;
  }

  .journey-card strong {
    width: min(100%, 360px);
    font-size: clamp(1.45rem, 7vw, 2.2rem);
  }

  .contact-details {
    padding-left: 0;
    border-left: 0;
  }

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

  .gallery-card {
    min-height: 320px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 30px, var(--max));
  }

  .site-header {
    min-height: 66px;
    gap: 14px;
    padding-inline: 15px;
  }

  .brand-script {
    font-size: 1.2rem;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .site-nav a {
    font-size: 0.78rem;
  }

  .hero {
    min-height: 760px;
    padding: 104px 0 130px;
    align-items: end;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(2, 4, 4, 0.46), rgba(2, 4, 4, 0.2) 36%, rgba(2, 4, 4, 0.88) 72%, #020404 100%),
      linear-gradient(90deg, rgba(2, 4, 4, 0.86), rgba(2, 4, 4, 0.42));
  }

  .jaguar-eyes {
    top: 11%;
    right: -8%;
    width: 82vw;
    opacity: 0.44;
  }

  .hero-claws {
    right: -18px;
    bottom: 26%;
    opacity: 0.52;
  }

  .hero-player-wrap {
    inset: 66px 0 0 42vw;
    opacity: 0.9;
  }

  .hero-player {
    right: 10px;
    bottom: -8px;
    width: min(55vw, 480px);
    max-height: 89%;
  }

  .hero-number {
    left: auto;
    right: 18px;
    bottom: 28%;
    font-size: 8.8rem;
    opacity: 0.56;
  }

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

  .hero-copy {
    max-width: 520px;
    padding-top: 0;
  }

  .player-kicker {
    max-width: 100%;
    font-size: clamp(1.6rem, 8vw, 3rem);
  }

  h1 {
    font-size: clamp(3.8rem, 16vw, 5.7rem);
    transform: rotate(-3deg) skewX(-3deg) scaleX(1.04);
  }

  .hero-meta strong {
    font-size: clamp(1.42rem, 6vw, 2.2rem);
  }

  .hero-meta span {
    font-size: clamp(1.02rem, 4.5vw, 1.45rem);
  }

  .hero-actions {
    max-width: 360px;
    gap: 14px;
  }

  .button {
    width: 100%;
  }

  .quick-stats {
    width: min(100% - 30px, var(--max));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -84px;
  }

  .stat-card {
    min-height: 116px;
    border-right: 1px solid rgba(247, 251, 251, 0.2);
    border-bottom: 1px solid rgba(247, 251, 251, 0.14);
  }

  .stat-card:nth-child(2n) {
    border-right: 0;
  }

  .stat-card:nth-last-child(-n + 1) {
    grid-column: 1 / -1;
  }

  .about-grid,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .about-art {
    min-height: 0;
  }

  .about-art img {
    width: min(100%, 500px);
  }

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

  .gallery-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 500px) {
  body {
    background:
      linear-gradient(180deg, rgba(18, 238, 236, 0.06), transparent 12%),
      linear-gradient(180deg, #020404 0%, #04090a 54%, #020404 100%);
  }

  .site-header {
    align-items: start;
  }

  .site-nav {
    padding-bottom: 4px;
  }

  .site-nav a {
    font-size: 0.72rem;
  }

  .hero {
    min-height: 0;
    padding-top: 92px;
    padding-bottom: 110px;
    align-items: start;
  }

  .hero-player-wrap {
    inset: 76px 0 auto;
    height: clamp(285px, 44vh, 360px);
    min-height: 0;
    opacity: 1;
  }

  .hero-player {
    display: none;
  }

  .hero-player-mobile {
    position: absolute;
    top: 0;
    right: 50%;
    display: block;
    width: min(92vw, 410px);
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center;
    transform: translateX(50%);
    filter:
      drop-shadow(0 0 20px rgba(18, 238, 236, 0.18))
      drop-shadow(0 28px 38px rgba(0, 0, 0, 0.72));
  }

  .hero-number {
    display: none;
  }

  .hero-grid {
    padding-top: clamp(318px, 49vh, 400px);
  }

  .hero-copy {
    max-width: 100%;
  }

  .player-kicker {
    letter-spacing: 0.14em;
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 4.65rem);
    margin-left: 0.35rem;
  }

  .hero-quote {
    max-width: 290px;
    font-size: 0.92rem;
  }

  .hero-signature {
    margin-left: 86px;
  }

  .quick-stats {
    width: calc(100% - 24px);
  }

  .about-section,
  .highlights-section,
  .season-section,
  .gallery-section,
  .contact-section {
    padding-block: 62px;
  }

  .about-art {
    min-height: 0;
  }

  .about-art img {
    width: min(100%, 440px);
  }

  .video-panel,
  .video-panel img {
    min-height: 260px;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .schedule-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .gallery-row {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    min-height: 420px;
  }

  .follow-panel {
    justify-items: start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
