@font-face {
  font-family: "Unbounded";
  src: url("/fonts/Unbounded-Variable.ttf") format("truetype-variations");
  font-weight: 200 900;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Evolventa";
  src: url("/fonts/Evolventa-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Evolventa";
  src: url("/fonts/Evolventa-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --river-bg: #07111f;
  --river-bg-deep: #040b14;
  --river-surface: #0c1a2a;
  --river-surface-raised: #102338;
  --river-surface-soft: #142a40;
  --river-text: #ecf3f8;
  --river-silver: #cbd9e3;
  --river-muted: #8fa5b7;
  --river-accent: #7db5d8;
  --river-accent-strong: #9ccbe7;
  --river-ember: #e59b55;
  --river-mint: #59c7b0;
  --river-oxblood: #a04c66;
  --river-violet: #8272d8;
  --river-line: rgba(203, 217, 227, 0.16);
  --river-line-strong: rgba(203, 217, 227, 0.3);
  --river-shadow: 0 24px 64px rgba(1, 8, 17, 0.38);
  --river-ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --river-ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --river-container: 100%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
  background: var(--river-bg-deep);
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: clip;
  background:
    radial-gradient(circle at 88% -10%, rgba(125, 181, 216, 0.12), transparent 30rem),
    linear-gradient(180deg, var(--river-bg) 0%, var(--river-bg-deep) 100%);
  color: var(--river-text);
  font-family: "Unbounded", "Evolventa", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

::selection {
  background: var(--river-accent);
  color: var(--river-bg-deep);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--river-text);
  color: var(--river-bg);
  transform: translateY(-160%);
  transition: transform 160ms var(--river-ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 12px 0 auto;
  z-index: 30;
  pointer-events: none;
}

.site-header__inner {
  width: calc(100% - 24px);
  min-height: 64px;
  margin: 0 auto;
  padding: 8px 10px 8px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(203, 217, 227, 0.18);
  border-radius: 16px;
  background: rgba(7, 17, 31, 0.94);
  box-shadow: 0 18px 48px rgba(1, 8, 17, 0.24);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--river-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 30px;
  height: 38px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.site-nav a,
.header-action {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a {
  color: var(--river-silver);
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--river-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--river-ease-out);
}

.header-action {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--river-text);
  color: var(--river-bg);
  transition: background-color 160ms ease, transform 120ms var(--river-ease-out);
}

.menu-toggle {
  display: none;
}

.hero {
  width: 100%;
  min-height: 100dvh;
  margin: 0 auto;
  padding: 94px 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 14px;
}

.hero__copy {
  min-height: calc(100dvh - 120px);
  padding: clamp(34px, 5vw, 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 16px;
  background:
    linear-gradient(155deg, rgba(125, 181, 216, 0.08), transparent 42%),
    var(--river-surface);
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--river-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero__lede {
  max-width: 32rem;
  margin: 0 0 36px;
  color: var(--river-silver);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
}

.hero__actions,
.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 120ms var(--river-ease-out);
}

.button--primary {
  background: var(--river-accent);
  color: #06111d;
}

.button--secondary {
  border-color: var(--river-line-strong);
  background: transparent;
  color: var(--river-text);
}

.button:active,
.header-action:active,
.store-link:active,
.contact-line:active,
.menu-toggle:active {
  transform: scale(0.97);
}

.hero__media {
  position: relative;
  min-height: calc(100dvh - 120px);
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--river-surface);
  clip-path: inset(0 0 0 100%);
  animation: hero-reveal 1s var(--river-ease-in-out) 120ms forwards;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(2, 8, 16, 0.82));
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.hero__media figcaption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--river-silver);
  font-size: 12px;
}

@keyframes hero-reveal {
  to {
    clip-path: inset(0 0 0 0);
  }
}

.club-signals {
  width: 100%;
  margin: 0 auto;
  padding: 22px 0 92px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--river-line);
}

.club-signal {
  min-height: 118px;
  padding: 14px 24px;
  display: grid;
  align-content: center;
  gap: 5px;
  border-left: 1px solid var(--river-line);
}

.club-signal:first-child {
  border-left: 0;
}

.club-signal__index {
  margin-bottom: 6px;
  color: var(--river-muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.club-signal strong {
  font-size: 18px;
}

.club-signal > span:last-child {
  color: var(--river-muted);
  font-size: 13px;
}

.section-shell {
  width: 100%;
  margin: 0 auto;
}

.about {
  padding: 138px 0 160px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
  grid-template-areas:
    "statement body"
    "image image";
  gap: 64px 8vw;
}

.about__statement {
  grid-area: statement;
}

.about__statement h2,
.section-heading h2,
.app-section h2,
.contact h2 {
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 4.5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.display-copy {
  max-width: 20ch;
  margin: 0;
  color: var(--river-silver);
  font-size: clamp(1.4rem, 2.1vw, 2.15rem);
  line-height: 1.28;
}

.about__body {
  grid-area: body;
  align-self: end;
}

.about__body p {
  max-width: 52ch;
  margin: 0 0 18px;
  color: var(--river-silver);
  line-height: 1.7;
}

.text-link {
  position: relative;
  display: inline-flex;
  margin-top: 14px;
  color: var(--river-accent);
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform 180ms var(--river-ease-out);
}

.about__image {
  grid-area: image;
  position: relative;
  height: clamp(460px, 68vw, 820px);
  margin: 12px 0 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--river-surface);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.app-section {
  position: relative;
  min-height: min(920px, 100dvh);
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  background:
    radial-gradient(circle at 16% 45%, rgba(125, 181, 216, 0.14), transparent 25rem),
    var(--river-surface);
}

.app-section__visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.app-stage {
  position: absolute;
  inset: 38px 0 -16% 2vw;
}

.app-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 32px 52px rgba(0, 5, 12, 0.42));
}

.app-section__content {
  max-width: 680px;
  padding: clamp(74px, 9vw, 154px) clamp(30px, 7vw, 110px) 100px;
  align-self: center;
}

.app-section__intro {
  max-width: 44ch;
  margin: 0 0 44px;
  color: var(--river-silver);
  font-size: 19px;
}

.app-capabilities {
  margin-bottom: 42px;
  display: grid;
  gap: 0;
}

.app-capabilities > div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: minmax(120px, 0.4fr) 1fr;
  gap: 24px;
  border-top: 1px solid var(--river-line);
}

.app-capabilities strong {
  color: var(--river-text);
}

.app-capabilities span {
  color: var(--river-muted);
}

.store-link {
  min-width: 148px;
  min-height: 64px;
  padding: 10px 16px;
  display: grid;
  align-content: center;
  border: 1px solid var(--river-line-strong);
  border-radius: 10px;
  color: var(--river-text);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 120ms var(--river-ease-out);
}

.store-link span {
  color: var(--river-muted);
  font-size: 10px;
}

.store-link strong {
  font-size: 15px;
}

.tournaments {
  padding: 150px 0 160px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 70px;
}

.section-heading p {
  max-width: 50ch;
  margin: 0;
  color: var(--river-silver);
  font-size: 18px;
}

.tournament-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(480px, auto);
  gap: 14px;
}

.tournament {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--river-surface);
}

.tournament--phoenix {
  grid-column: span 7;
}

.tournament--rush {
  grid-column: span 5;
}

.tournament--friday {
  grid-column: span 5;
}

.tournament--king {
  grid-column: span 7;
}

.tournament > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--river-ease-out);
}

.tournament__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 9, 17, 0.05) 25%, rgba(3, 9, 17, 0.94) 88%),
    linear-gradient(90deg, rgba(3, 9, 17, 0.38), transparent 55%);
}

.tournament__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: clamp(24px, 4vw, 42px);
}

.tournament__schedule {
  margin: 0 0 8px;
  color: var(--river-accent-strong);
  font-size: 12px;
  font-weight: 700;
}

.tournament h3 {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 3.2vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.tournament__content > p:not(.tournament__schedule) {
  max-width: 36ch;
  margin: 0;
  color: var(--river-silver);
}

.tournament details {
  margin-top: 22px;
  border-top: 1px solid rgba(236, 243, 248, 0.24);
}

.tournament details summary {
  padding: 14px 0 0;
  color: var(--river-text);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.tournament summary::marker {
  color: var(--river-accent);
}

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

.tournament dl > div {
  display: grid;
  gap: 2px;
}

.tournament dt {
  color: var(--river-muted);
  font-size: 10px;
}

.tournament dd {
  margin: 0;
  font-size: 13px;
}

.tournaments__action {
  margin-top: 54px;
  padding: 34px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--river-line);
}

.tournaments__action p {
  margin: 0;
  color: var(--river-silver);
}

.contact {
  min-height: 680px;
  padding: 100px clamp(28px, 6vw, 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
  grid-template-areas:
    "lead mark"
    "actions mark";
  gap: 36px 8vw;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background:
    linear-gradient(145deg, rgba(125, 181, 216, 0.12), transparent 48%),
    var(--river-surface-raised);
}

.contact__lead {
  grid-area: lead;
  align-self: end;
}

.contact__lead p {
  margin: 0;
  color: var(--river-silver);
  font-size: 18px;
}

.contact__actions {
  grid-area: actions;
  align-self: start;
}

.contact-line {
  padding: 18px 0;
  display: grid;
  grid-template-columns: minmax(100px, 0.35fr) 1fr;
  gap: 20px;
  border-top: 1px solid var(--river-line);
  text-decoration: none;
  transition: color 180ms ease, transform 120ms var(--river-ease-out);
}

.contact-line span {
  color: var(--river-muted);
  font-size: 12px;
}

.contact-line strong {
  font-size: 18px;
}

.contact__mark {
  grid-area: mark;
  position: relative;
  align-self: center;
}

.contact__mark::before {
  content: "";
  position: absolute;
  inset: 14% 8%;
  border-radius: 50%;
  background: rgba(125, 181, 216, 0.14);
  filter: blur(40px);
}

.contact__mark img {
  position: relative;
  width: min(100%, 520px);
  margin: 0 auto;
  filter: drop-shadow(0 34px 56px rgba(0, 5, 12, 0.38));
}

.site-footer {
  width: 100%;
  margin: 0 auto;
  padding: 54px 0 34px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px 48px;
  color: var(--river-muted);
  font-size: 12px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--river-text);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-footer__brand img {
  width: 28px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.site-footer a {
  color: var(--river-silver);
  text-decoration: none;
}

.site-footer__legal {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--river-line);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms var(--river-ease-out),
    transform 620ms var(--river-ease-out);
}

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

:focus-visible {
  outline: 3px solid rgba(156, 203, 231, 0.9);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover::after,
  .text-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .header-action:hover {
    background: var(--river-accent-strong);
  }

  .button--primary:hover {
    background: var(--river-accent-strong);
  }

  .button--secondary:hover,
  .store-link:hover {
    border-color: var(--river-accent);
    background: rgba(125, 181, 216, 0.08);
  }

  .tournament:hover > img {
    transform: scale(1.035);
  }

  .contact-line:hover {
    color: var(--river-accent-strong);
  }
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 18px;
  }

  .header-action {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr;
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  }

  .hero__copy {
    padding: 40px;
  }

  .app-section {
    grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  }
}

@media (max-width: 860px) {
  :root {
    --river-container: min(100% - 28px, 760px);
  }

  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    width: 88px;
    min-height: 44px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid var(--river-line);
    border-radius: 10px;
    background: var(--river-surface-raised);
    color: var(--river-text);
    cursor: pointer;
    transition: transform 120ms var(--river-ease-out);
  }

  .menu-toggle__label {
    font-size: 12px;
    font-weight: 700;
  }

  .menu-toggle__lines,
  .menu-toggle__lines::before,
  .menu-toggle__lines::after {
    width: 16px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 180ms var(--river-ease-out), opacity 180ms ease;
  }

  .menu-toggle__lines {
    position: relative;
  }

  .menu-toggle__lines::before,
  .menu-toggle__lines::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-toggle__lines::before {
    top: -5px;
  }

  .menu-toggle__lines::after {
    top: 5px;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines::before {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines::after {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    padding: 12px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--river-line);
    border-radius: 14px;
    background: rgba(7, 17, 31, 0.97);
    box-shadow: var(--river-shadow);
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    pointer-events: none;
    transition:
      opacity 160ms ease,
      transform 180ms var(--river-ease-out);
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 14px;
    border-radius: 8px;
    background: rgba(203, 217, 227, 0.04);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
    grid-template-columns: 1fr;
  }

  .hero__copy,
  .hero__media {
    min-height: auto;
  }

  .hero__copy {
    padding: 48px 32px 54px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.75rem, 11vw, 4.6rem);
  }

  .hero__media {
    height: min(78dvh, 720px);
  }

  .club-signals {
    grid-template-columns: repeat(2, 1fr);
  }

  .club-signal:nth-child(3) {
    border-left: 0;
  }

  .club-signal:nth-child(n + 3) {
    border-top: 1px solid var(--river-line);
  }

  .about {
    padding: 104px 0 116px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "statement"
      "body"
      "image";
    gap: 38px;
  }

  .about__image {
    height: 580px;
  }

  .app-section {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .app-section__visual {
    min-height: 620px;
    order: 2;
  }

  .app-stage {
    inset: 0 10% -20%;
  }

  .app-section__content {
    max-width: 760px;
    padding: 96px max(28px, calc((100vw - 760px) / 2)) 28px;
  }

  .tournaments {
    padding: 112px 0;
  }

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

  .tournament--phoenix,
  .tournament--rush,
  .tournament--friday,
  .tournament--king {
    grid-column: auto;
  }

  .tournament {
    min-height: 580px;
  }

  .contact {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "lead"
      "actions"
      "mark";
  }

  .contact__mark img {
    max-width: 420px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  :root {
    --river-container: calc(100% - 20px);
  }

  .site-header {
    inset: 8px 0 auto;
  }

  .site-header__inner {
    min-height: 58px;
    padding: 7px 8px 7px 12px;
    border-radius: 14px;
  }

  .brand span {
    display: none;
  }

  .hero {
    padding-top: 76px;
  }

  .hero__copy {
    padding: 38px 22px 42px;
  }

  .eyebrow {
    margin-bottom: 20px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 13vw, 3.5rem);
  }

  .hero__lede {
    margin-bottom: 30px;
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero__media {
    height: 72dvh;
    min-height: 520px;
  }

  .hero__media figcaption {
    right: 16px;
    bottom: 14px;
    left: 16px;
    display: grid;
    gap: 2px;
  }

  .club-signals {
    padding-bottom: 72px;
  }

  .club-signal {
    min-height: 124px;
    padding: 14px;
  }

  .club-signal strong {
    font-size: 15px;
  }

  .about {
    padding: 82px 0 94px;
  }

  .about__statement h2,
  .section-heading h2,
  .app-section h2,
  .contact h2 {
    font-size: clamp(2.2rem, 12vw, 3.3rem);
  }

  .about__image {
    height: 470px;
  }

  .app-section__content {
    padding: 78px 20px 18px;
  }

  .app-capabilities > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .store-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .store-link:last-child {
    grid-column: 1 / -1;
  }

  .app-section__visual {
    min-height: 500px;
  }

  .app-stage {
    inset: 0 -4% -20%;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .tournament {
    min-height: 540px;
  }

  .tournament__content {
    padding: 24px;
  }

  .tournament dl {
    grid-template-columns: 1fr;
  }

  .tournaments__action {
    align-items: stretch;
    flex-direction: column;
  }

  .contact {
    padding: 70px 22px 36px;
  }

  .contact-line {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    padding-top: 40px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .river-wave {
    display: none !important;
  }

  .hero__media {
    clip-path: none;
  }

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

@media (prefers-reduced-transparency: reduce) {
  .site-header__inner,
  .site-nav {
    background: var(--river-bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --river-muted: #c2d1dc;
    --river-line: rgba(236, 243, 248, 0.42);
    --river-line-strong: rgba(236, 243, 248, 0.7);
  }
}

/* Cinematic layer: a live tournament atmosphere over the same blue-silver system. */
.site-header__inner {
  border-color: rgba(194, 221, 238, 0.26);
  background:
    linear-gradient(100deg, rgba(125, 181, 216, 0.08), transparent 42%),
    rgba(4, 11, 20, 0.72);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  padding: 94px 0 26px;
  display: block;
  overflow: hidden;
  border-radius: 0 0 22px 22px;
  background: var(--river-bg-deep);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 16, 0.96) 0%, rgba(2, 8, 16, 0.8) 39%, rgba(2, 8, 16, 0.1) 74%),
    linear-gradient(0deg, rgba(2, 8, 16, 0.74), transparent 48%);
}

.hero::after {
  width: 52vw;
  height: 52vw;
  top: 8%;
  right: -14%;
  border: 1px solid rgba(157, 206, 235, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 8vw rgba(125, 181, 216, 0.018),
    0 0 0 16vw rgba(125, 181, 216, 0.012);
  animation: none;
  opacity: 0.7;
}

.hero__copy {
  position: relative;
  z-index: 3;
  width: min(790px, 62%);
  min-height: calc(100dvh - 120px);
  padding: clamp(54px, 7vw, 112px) clamp(30px, 5.4vw, 82px);
  justify-content: center;
  border-radius: 0;
  background: transparent;
}

.hero h1 {
  max-width: 9.5ch;
  font-size: clamp(4.2rem, 7.45vw, 8.4rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.48);
}

.hero h1::after {
  content: "";
  width: clamp(110px, 12vw, 180px);
  height: 2px;
  margin-top: 28px;
  display: block;
  background: linear-gradient(90deg, var(--river-accent), rgba(125, 181, 216, 0));
  transform-origin: left;
  animation: none;
  opacity: 0.85;
}

.hero__lede {
  max-width: 30rem;
  font-size: clamp(17px, 1.45vw, 22px);
}

.hero__media {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  position: absolute;
  z-index: 0;
  inset: 0;
  min-height: 0;
  border-radius: 0;
  clip-path: inset(0 0 0 100%);
  transform: scale(1.025) translate3d(var(--hero-shift-x), var(--hero-shift-y), 0);
  transition: transform 900ms var(--river-ease-out);
}

.hero__media::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(rgba(236, 243, 248, 0.08) 0.6px, transparent 0.7px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero__media::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 8, 16, 0.04) 52%, rgba(2, 8, 16, 0.82)),
    linear-gradient(90deg, rgba(2, 8, 16, 0.92), transparent 62%);
}

.hero__media img {
  object-position: center;
}

.hero__media figcaption {
  right: 32px;
  left: auto;
  width: min(390px, 32vw);
  padding-top: 12px;
  border-top: 1px solid rgba(236, 243, 248, 0.28);
}

.hero__live {
  width: min(100%, 440px);
  margin-top: clamp(36px, 5vh, 64px);
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 18px;
  border: 1px solid rgba(203, 217, 227, 0.26);
  border-radius: 12px;
  background: rgba(5, 15, 26, 0.58);
  box-shadow: 0 20px 60px rgba(0, 4, 10, 0.26);
}

.hero__live-state {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--river-accent-strong);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__live-state i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--river-accent);
  box-shadow: 0 0 0 4px rgba(125, 181, 216, 0.18);
  animation: none;
}

.hero__live strong {
  font-size: 15px;
}

.hero__live > span:last-child {
  color: var(--river-muted);
  font-size: 12px;
}

.motion-ticker {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--river-line);
  background: #091827;
}

.motion-ticker__track {
  width: max-content;
  padding: 17px 0;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--river-silver);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  animation: ticker-run 26s linear infinite;
}

.motion-ticker__track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--river-accent);
  box-shadow: 0 0 14px rgba(125, 181, 216, 0.8);
}

.club-signals {
  padding-top: 42px;
}

.club-signal {
  position: relative;
  overflow: hidden;
}

.club-signal::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--river-accent), transparent);
  transform: scaleX(0);
  transition: transform 420ms var(--river-ease-out);
}

.about,
.tournaments {
  position: relative;
}

.about::before,
.tournaments::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 119, 160, 0.16), transparent 68%);
  filter: none;
  pointer-events: none;
}

.about::before {
  top: 12%;
  right: -28%;
}

.tournaments::before {
  bottom: 4%;
  left: -30%;
}

.about__image {
  border: 1px solid var(--river-line);
  box-shadow: 0 40px 100px rgba(0, 4, 10, 0.46);
}

.about__image::after {
  content: none;
}

.app-section {
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(125, 181, 216, 0.16), transparent 38%),
    radial-gradient(circle at 16% 45%, rgba(125, 181, 216, 0.2), transparent 26rem),
    var(--river-surface);
}

.app-section::before,
.app-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 42vw;
  aspect-ratio: 1;
  top: 13%;
  left: -7%;
  border: 1px solid rgba(125, 181, 216, 0.18);
  border-radius: 50%;
  animation: app-ring 12s linear infinite;
}

.app-section::after {
  width: 31vw;
  top: 23%;
  left: -1%;
  animation-direction: reverse;
  animation-duration: 9s;
}

.app-section__visual,
.app-section__content {
  position: relative;
  z-index: 1;
}

.app-stage {
  animation: phone-float 5.5s ease-in-out infinite;
}

.tournament {
  border: 1px solid rgba(203, 217, 227, 0.2);
  box-shadow: 0 22px 80px rgba(0, 5, 12, 0.24);
  transition:
    border-color 220ms ease,
    transform 480ms var(--river-ease-out),
    box-shadow 480ms var(--river-ease-out);
}

.tournament::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0;
  background: linear-gradient(120deg, transparent 32%, rgba(197, 226, 243, 0.19), transparent 62%);
  transform: translateX(-80%);
  transition: opacity 200ms ease, transform 800ms var(--river-ease-out);
  pointer-events: none;
}

.contact {
  position: relative;
  border: 1px solid var(--river-line);
  background:
    linear-gradient(145deg, rgba(125, 181, 216, 0.2), transparent 48%),
    radial-gradient(circle at 82% 50%, rgba(125, 181, 216, 0.18), transparent 28%),
    var(--river-surface-raised);
}

@keyframes hero-orbit {
  to { transform: rotate(360deg); }
}

@keyframes line-breathe {
  from { transform: scaleX(0.52); opacity: 0.55; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(125, 181, 216, 0.54); }
  75%, 100% { box-shadow: 0 0 0 9px rgba(125, 181, 216, 0); }
}

@keyframes ticker-run {
  to { transform: translateX(-50%); }
}

@keyframes metal-sweep {
  0%, 68% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes app-ring {
  to { transform: rotate(360deg) scale(1.035); }
}

@keyframes phone-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}

@media (hover: hover) and (pointer: fine) {
  .motion-ticker:hover .motion-ticker__track {
    animation-play-state: paused;
  }

  .club-signal:hover::after {
    transform: scaleX(1);
  }

  .tournament:hover {
    z-index: 2;
    border-color: rgba(156, 203, 231, 0.62);
    box-shadow: 0 34px 110px rgba(0, 7, 17, 0.5);
    transform: translateY(-8px);
  }

  .tournament:hover::after {
    opacity: 1;
    transform: translateX(85%);
  }
}

@media (max-width: 920px) {
  .hero__copy {
    width: min(760px, 80%);
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(2, 8, 16, 0.96), rgba(2, 8, 16, 0.6) 62%, rgba(2, 8, 16, 0.12)),
      linear-gradient(0deg, rgba(2, 8, 16, 0.82), transparent 52%);
  }

  .hero h1 {
    font-size: clamp(4rem, 10vw, 6.8rem);
  }

  .hero__media {
    height: auto;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 820px;
  }

  .hero__copy {
    width: 100%;
    min-height: 820px;
    padding: 118px 22px 68px;
    justify-content: flex-end;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(2, 8, 16, 0.98) 8%, rgba(2, 8, 16, 0.74) 62%, rgba(2, 8, 16, 0.12)),
      linear-gradient(90deg, rgba(2, 8, 16, 0.52), transparent);
  }

  .hero::after {
    width: 100vw;
    height: 100vw;
    top: 6%;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(3.35rem, 16vw, 5rem);
  }

  .hero__lede {
    max-width: 25rem;
  }

  .hero__media {
    min-height: 820px;
  }

  .hero__media img {
    object-position: 64% center;
  }

  .hero__media figcaption {
    top: 88px;
    right: 18px;
    bottom: auto;
    width: 58vw;
  }

  .hero__live {
    margin-top: 30px;
  }

  .club-signals {
    padding-top: 26px;
  }

  .motion-ticker__track {
    animation-duration: 20s;
  }

  .app-section::before {
    width: 90vw;
  }

  .app-section::after {
    width: 68vw;
  }
}

/* Immersive narrative pass: scroll-scrub chapters and spatial finale. */
.scrub-word {
  display: inline-block;
  transform-style: preserve-3d;
}

.about__image {
  height: min(78vw, 940px);
  max-height: 940px;
}

.about__image img {
  object-position: center;
}

.app-section {
  min-height: 100dvh;
  isolation: isolate;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.72fr);
  background: #06101c;
}

.app-section__visual {
  z-index: 0;
  min-height: 100dvh;
  grid-column: 1 / -1;
  grid-row: 1;
}

.app-stage {
  inset: 0;
  animation: none;
  transform-style: preserve-3d;
}

.app-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 9, 17, 0.06) 34%, rgba(3, 9, 17, 0.62) 68%, rgba(3, 9, 17, 0.94)),
    linear-gradient(0deg, rgba(3, 9, 17, 0.72), transparent 42%);
}

.app-stage img {
  object-fit: cover;
  object-position: center;
  filter: none;
}

.app-section__content {
  z-index: 2;
  max-width: 760px;
  margin-right: clamp(30px, 5vw, 96px);
  padding: clamp(64px, 8vw, 124px) 0;
  grid-column: 2;
  grid-row: 1;
}

.app-section__content::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8% -14% 8% -10%;
  border: 1px solid rgba(203, 217, 227, 0.12);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(8, 22, 36, 0.86), rgba(4, 12, 22, 0.48));
  box-shadow:
    inset 0 1px 0 rgba(224, 241, 250, 0.07),
    0 42px 120px rgba(0, 3, 10, 0.38);
}

.app-section::before,
.app-section::after {
  z-index: 1;
  opacity: 0.34;
}

.tournaments {
  min-height: 100dvh;
  padding: clamp(84px, 10vh, 118px) 0 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.tournaments .section-heading {
  width: 100%;
  max-width: none;
  margin-bottom: clamp(24px, 4vh, 42px);
  padding-inline: clamp(24px, 5vw, 96px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.tournaments .section-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.tournaments .section-heading p {
  max-width: 36ch;
  padding-bottom: 8px;
}

.tournament-grid {
  width: max-content;
  padding-inline: 5vw;
  display: flex;
  gap: clamp(16px, 2vw, 32px);
  perspective: 1800px;
  transform-style: preserve-3d;
}

.tournament,
.tournament--phoenix,
.tournament--rush,
.tournament--friday,
.tournament--king {
  width: min(72vw, 1120px);
  min-height: min(63vh, 660px);
  flex: 0 0 min(72vw, 1120px);
  grid-column: auto;
  border-radius: 24px;
  box-shadow:
    0 42px 140px rgba(0, 3, 10, 0.5),
    inset 0 1px 0 rgba(226, 242, 250, 0.06);
}

.tournament > img {
  will-change: auto;
}

.tournament__content {
  max-width: 760px;
  padding: clamp(30px, 4.2vw, 64px);
}

.tournament h3 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 5vw, 5.8rem);
}

.tournament__content > p:not(.tournament__schedule) {
  font-size: clamp(15px, 1.3vw, 19px);
}

.tournament details {
  max-width: 620px;
}

.tournaments__action {
  width: calc(100% - clamp(48px, 10vw, 192px));
  margin: clamp(22px, 3vh, 38px) auto 0;
  padding-top: 18px;
}

.contact {
  min-height: 100dvh;
  isolation: isolate;
  padding: clamp(104px, 13vh, 150px) clamp(28px, 7vw, 132px) 72px;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.48fr);
  grid-template-areas:
    "lead ."
    "actions .";
  align-content: end;
  background: var(--river-bg-deep);
}

.contact::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.96) 0%, rgba(2, 7, 13, 0.72) 38%, rgba(2, 7, 13, 0.08) 76%),
    linear-gradient(0deg, rgba(2, 7, 13, 0.86), transparent 60%);
}

.contact__lead,
.contact__actions {
  position: relative;
  z-index: 3;
}

.contact__lead h2 {
  max-width: 7.8ch;
  margin-bottom: 28px;
  font-size: clamp(4rem, 7.2vw, 8.8rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.contact__lead p {
  font-size: clamp(16px, 1.3vw, 20px);
}

.contact__actions {
  max-width: 680px;
  margin-top: 28px;
  padding: 8px 24px;
  border: 1px solid rgba(203, 217, 227, 0.2);
  border-radius: 18px;
  background: rgba(4, 13, 23, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(223, 240, 249, 0.06),
    0 32px 100px rgba(0, 3, 10, 0.38);
}

.contact-line {
  min-height: 76px;
  align-items: center;
  transition:
    color 260ms ease,
    transform 520ms var(--river-ease-out),
    padding 520ms var(--river-ease-out);
}

.contact-line strong {
  font-size: clamp(15px, 1.55vw, 22px);
}

.contact__mark {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
  opacity: 1;
  transform: none;
}

.contact__mark::before {
  display: none;
}

.contact__mark img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.contact-orbit {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 12.5%;
  width: clamp(180px, 19vw, 340px);
  aspect-ratio: 1;
  perspective: 1100px;
  transform: translateY(-50%);
  transform-style: preserve-3d;
  pointer-events: none;
}

.contact-orbit::before {
  content: "";
  position: absolute;
  inset: 26%;
  border-radius: 50%;
  background: rgba(125, 181, 216, 0.22);
  filter: blur(36px);
}

.contact-orbit__ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(210, 234, 247, 0.42);
  border-radius: 50%;
  box-shadow:
    inset 0 0 32px rgba(125, 181, 216, 0.08),
    0 0 28px rgba(125, 181, 216, 0.12);
  animation: contact-ring-a 10s linear infinite;
}

.contact-orbit__ring--vertical {
  transform: rotateY(72deg) rotateX(14deg);
  animation-name: contact-ring-b;
  animation-duration: 7.5s;
}

.contact-orbit b {
  position: absolute;
  inset: 29%;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(203, 217, 227, 0.34);
  border-radius: 50%;
  color: var(--river-text);
  background:
    radial-gradient(circle at 34% 27%, rgba(255, 255, 255, 0.16), transparent 20%),
    rgba(5, 17, 29, 0.86);
  box-shadow:
    inset 0 0 0 8px rgba(125, 181, 216, 0.04),
    0 24px 58px rgba(0, 3, 9, 0.42);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(15px, 1.6vw, 25px);
  font-weight: 500;
  transform: translateZ(36px);
}

.contact-orbit small {
  margin-top: 5px;
  color: var(--river-accent);
  font-family: "Evolventa", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes contact-ring-a {
  to { transform: rotateZ(360deg) rotateX(12deg); }
}

@keyframes contact-ring-b {
  to { transform: rotateY(432deg) rotateX(14deg); }
}

@media (hover: hover) and (pointer: fine) {
  .contact-line:hover {
    padding-left: 12px;
    transform: translateZ(22px);
  }
}

@media (min-width: 901px) {
  html:not(.has-gsap-motion) .tournaments {
    overflow: visible;
  }

  html:not(.has-gsap-motion) .tournament-grid {
    width: auto;
    padding-inline: clamp(28px, 5vw, 96px);
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    transform: none !important;
  }

  html:not(.has-gsap-motion) .tournament {
    width: auto;
    min-height: 560px;
    flex: none;
  }

  html:not(.has-gsap-motion) .tournament--phoenix,
  html:not(.has-gsap-motion) .tournament--friday {
    grid-column: span 7;
  }

  html:not(.has-gsap-motion) .tournament--rush,
  html:not(.has-gsap-motion) .tournament--king {
    grid-column: span 5;
  }
}

/* 2026 finish pass: stable typography, chip-led hero, readable tournament deck. */
html,
body,
button,
input,
select,
textarea {
  font-family: "Unbounded", "Evolventa", system-ui, sans-serif;
  font-optical-sizing: auto;
}

body {
  color: #f2f7fa;
  font-weight: 400;
}

.hero {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: 100dvh;
  padding: 76px 0 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 77% 48%, rgba(91, 170, 218, 0.2), transparent 18%),
    radial-gradient(ellipse at 76% 54%, rgba(27, 76, 118, 0.34), transparent 34%),
    linear-gradient(110deg, #06101c 0%, #071728 45%, #030914 100%);
}

.hero__copy {
  position: relative;
  width: min(64vw, 1240px);
  min-height: calc(100dvh - 76px);
  padding: clamp(86px, 10vh, 132px) clamp(28px, 6vw, 116px) clamp(52px, 7vh, 86px);
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  animation: none;
}

.hero__media {
  position: absolute;
  z-index: 1;
  inset: 76px 0 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  opacity: 0.44;
  transform: scale(1.025) translate3d(var(--hero-shift-x, 0), var(--hero-shift-y, 0), 0);
  animation: none;
  filter: saturate(0.76) contrast(1.08);
}

.hero__media img {
  object-position: center 58%;
}

.hero__media::after {
  background:
    radial-gradient(circle at 76% 47%, rgba(107, 186, 229, 0.04), transparent 18%),
    linear-gradient(90deg, #06101c 0%, rgba(6, 16, 28, 0.94) 32%, rgba(5, 14, 25, 0.44) 63%, rgba(3, 9, 20, 0.72) 100%),
    linear-gradient(180deg, rgba(3, 9, 18, 0.06) 48%, rgba(2, 7, 14, 0.9) 100%);
}

.hero h1 {
  width: min(64vw, 1120px);
  max-width: none;
  margin-bottom: 30px;
  color: #f4f8fb;
  font-size: clamp(3.8rem, 6.15vw, 7.4rem);
  font-weight: 650;
  line-height: 0.94;
  letter-spacing: -0.062em;
}

.hero h1 span,
.hero h1 span:nth-child(2) {
  padding: 0;
  margin: 0;
  opacity: 1;
  transform: none;
  animation: none;
}

.hero h1 span:nth-child(2) {
  color: transparent;
  background: linear-gradient(108deg, #f4f8fb 4%, #9fc8df 48%, #e9f4f9 74%, #6f9fb9 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lede {
  max-width: 42rem;
  color: #c7d5de;
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 350;
}

.eyebrow,
.hero__lede,
.hero__actions,
.hero__live {
  opacity: 1;
  transform: none;
  animation: none;
}

.hero-chip-visual {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: clamp(26px, 7vw, 142px);
  width: min(31vw, 590px);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translateY(-48%);
  perspective: 1400px;
}

.hero-chip-visual::before,
.hero-chip-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-chip-visual::before {
  inset: -8%;
  border: 1px solid rgba(166, 217, 242, 0.24);
  background:
    conic-gradient(from 206deg, transparent, rgba(131, 198, 232, 0.18), transparent 21%, transparent 72%, rgba(224, 242, 250, 0.12), transparent),
    radial-gradient(circle, rgba(103, 186, 228, 0.14), transparent 62%);
  box-shadow:
    inset 0 0 76px rgba(92, 179, 224, 0.08),
    0 0 100px rgba(40, 122, 169, 0.14);
  transform: rotateX(66deg) rotateZ(-12deg);
  animation: none;
}

.hero-chip-visual::after {
  right: 4%;
  bottom: 1%;
  left: 4%;
  height: 18%;
  background: rgba(42, 126, 174, 0.34);
  filter: blur(38px);
  transform: rotate(-5deg);
}

.hero-chip-visual__orbit {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(207, 234, 247, 0.2);
  border-radius: 50%;
  transform: rotateX(72deg) rotateZ(24deg);
  animation: none;
}

.hero-chip-visual__orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccecff;
  box-shadow: 0 0 20px #6cc6f4;
}

.hero-chip-visual img {
  position: absolute;
  inset: 7%;
  width: 86%;
  height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(0, 4, 12, 0.48));
  transform-origin: 50% 54%;
  animation: hero-chip-float-image 5.8s cubic-bezier(0.37, 0, 0.2, 1) infinite alternate;
}

@keyframes hero-chip-float-image {
  from { transform: translate3d(0, 8px, 0) rotate(-5deg) scale(0.99); }
  to { transform: translate3d(0, -13px, 34px) rotate(4deg) scale(1.015); }
}

@keyframes hero-chip-orbit {
  to { transform: rotateX(66deg) rotateZ(348deg); }
}

@keyframes hero-chip-orbit-reverse {
  to { transform: rotateX(72deg) rotateZ(-336deg); }
}

.button,
.header-action {
  min-height: 58px;
  padding: 0 12px 0 24px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
}

.button::after,
.header-action::after {
  width: 34px;
  height: 34px;
  font-size: 15px;
}

.header-action {
  min-height: 50px;
  padding-left: 20px;
}

.brand::after,
.store-link small,
.tournament dt {
  font-family: "Unbounded", "Evolventa", sans-serif;
}

.site-nav a {
  font-size: 13px;
  font-weight: 450;
}

.tournaments,
html.has-gsap-motion .tournaments {
  min-height: auto;
  padding: clamp(126px, 12vw, 210px) 0 clamp(126px, 12vw, 210px);
  overflow: visible;
}

.tournaments .section-heading,
html.has-gsap-motion .tournaments .section-heading {
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(42px, 6vw, 84px);
  padding: 0 clamp(24px, 5vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: clamp(30px, 7vw, 140px);
}

.tournaments .section-heading h2 {
  max-width: 11ch;
  margin: 0;
}

.tournaments .section-heading p {
  max-width: 38ch;
  padding: 0 0 0.7em;
  color: #cbd8e0;
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.65;
}

.tournament-grid,
html.has-gsap-motion .tournament-grid {
  width: 100%;
  padding: 0 clamp(20px, 3.6vw, 70px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 30px);
  transform: none !important;
  will-change: auto;
}

.tournament,
.tournament--phoenix,
.tournament--rush,
.tournament--friday,
.tournament--training,
.tournament--king,
html.has-gsap-motion .tournament,
html.has-gsap-motion .tournament--phoenix,
html.has-gsap-motion .tournament--rush,
html.has-gsap-motion .tournament--friday,
html.has-gsap-motion .tournament--training,
html.has-gsap-motion .tournament--king {
  width: 100%;
  min-height: clamp(660px, 70vw, 920px);
  flex: none;
  grid-column: span 6;
  border: 1px solid rgba(190, 218, 233, 0.2);
  border-radius: 26px;
  transform: none;
}

.tournament--training,
html.has-gsap-motion .tournament--training {
  grid-column: span 5;
}

.tournament--king,
html.has-gsap-motion .tournament--king {
  grid-column: span 7;
}

.tournament__scrim {
  background:
    linear-gradient(180deg, rgba(2, 7, 15, 0.04) 14%, rgba(2, 7, 15, 0.5) 46%, #020914 87%),
    linear-gradient(90deg, rgba(2, 8, 16, 0.5), transparent 68%);
}

.tournament__content {
  width: 100%;
  max-width: none;
  padding: clamp(30px, 3.3vw, 62px);
  transform: none;
}

.tournament h3 {
  max-width: 12ch;
  margin-bottom: 14px;
  font-size: clamp(2.65rem, 4.2vw, 5.4rem);
  line-height: 0.98;
}

.tournament__content > p:not(.tournament__schedule) {
  max-width: 44ch;
  color: #d6e0e6;
  font-size: clamp(16px, 1.12vw, 20px);
  line-height: 1.55;
}

.tournament__schedule {
  padding: 10px 14px;
  font-size: clamp(13px, 0.82vw, 16px);
}

.tournament details {
  max-width: 820px;
  margin-top: 24px;
  padding-top: 18px;
  border-top-color: rgba(224, 239, 247, 0.3);
}

.tournament summary {
  padding: 0;
  list-style: none;
  color: #eef5f8;
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 600;
  pointer-events: none;
}

.tournament details summary::-webkit-details-marker {
  display: none;
}

.tournament details summary::after {
  display: none !important;
  content: none !important;
}

.tournament dl {
  margin-top: 18px;
  gap: 14px clamp(18px, 3vw, 48px);
}

.tournament dl > div {
  gap: 5px;
  padding-top: 10px;
  border-top: 1px solid rgba(205, 225, 236, 0.14);
}

.tournament details dt {
  color: #aebfcb;
  font-size: clamp(12px, 0.76vw, 14px);
  line-height: 1.35;
}

.tournament details dd {
  color: #f1f6f8;
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.4;
}

.tournaments__action,
html.has-gsap-motion .tournaments__action {
  width: auto;
  margin: clamp(40px, 5vw, 80px) clamp(24px, 5vw, 96px) 0;
  padding: 30px 0 0;
  justify-content: flex-start;
  gap: clamp(24px, 4vw, 64px);
  opacity: 1;
  transform: none;
}

.tournaments__action p {
  color: #cbd8e0;
}

.tournaments__action p {
  max-width: 42ch;
  color: #c6d4dd;
  font-size: clamp(16px, 1vw, 19px);
}

@media (max-width: 1080px) {
  .hero__copy {
    width: 74vw;
  }

  .hero h1 {
    width: 78vw;
    font-size: clamp(3.4rem, 8vw, 6.3rem);
  }

  .hero-chip-visual {
    right: -5vw;
    width: 42vw;
    opacity: 0.86;
  }

  .tournaments .section-heading,
  html.has-gsap-motion .tournaments .section-heading {
    grid-template-columns: 1fr;
  }

  .tournament,
  .tournament--training,
  .tournament--king,
  html.has-gsap-motion .tournament,
  html.has-gsap-motion .tournament--training,
  html.has-gsap-motion .tournament--king {
    min-height: 720px;
    grid-column: span 12;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 860px;
  }

  .hero__copy {
    width: 100%;
    min-height: 820px;
    padding: 84px 20px 260px;
    justify-content: flex-start;
  }

  .hero h1 {
    width: 100%;
    font-size: clamp(2.8rem, 12.6vw, 4.2rem);
    line-height: 0.96;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero__lede {
    font-size: 16px;
  }

  .hero-chip-visual {
    top: auto;
    right: -3vw;
    bottom: 20px;
    width: 74vw;
    transform: none;
    opacity: 0.72;
  }

  .hero__media {
    opacity: 0.3;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

  .tournaments,
  html.has-gsap-motion .tournaments {
    padding: 104px 0 116px;
  }

  .tournament-grid,
  html.has-gsap-motion .tournament-grid {
    padding-inline: 12px;
  }

  .tournament,
  .tournament--training,
  .tournament--king,
  html.has-gsap-motion .tournament,
  html.has-gsap-motion .tournament--training,
  html.has-gsap-motion .tournament--king {
    min-height: 760px;
    border-radius: 20px;
  }

  .tournament__content {
    padding: 24px 20px 28px;
  }

  .tournament h3 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .tournament dl {
    grid-template-columns: 1fr 1fr;
  }

  .tournaments__action,
  html.has-gsap-motion .tournaments__action {
    margin-inline: 18px;
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-chip-visual::before,
  .hero-chip-visual__orbit,
  .hero-chip-visual img {
    animation: none;
  }
}

/* Final hero direction: one cinematic field, no disconnected orbital props. */
.hero__media {
  clip-path: none;
  animation: hero-camera-settle 1400ms var(--river-ease-out) both;
}

.hero__media::after {
  background:
    radial-gradient(circle at 76% 42%, rgba(72, 151, 198, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(2, 8, 16, 0.08) 44%, rgba(2, 8, 16, 0.86)),
    linear-gradient(90deg, rgba(2, 8, 16, 0.96) 0%, rgba(2, 8, 16, 0.72) 36%, rgba(2, 8, 16, 0.12) 72%);
}

.hero__copy {
  animation: hero-copy-settle 760ms var(--river-ease-out) both;
}

.hero h1 {
  overflow: visible;
}

.hero h1 span,
.hero h1 span:nth-child(2),
.eyebrow,
.hero__lede,
.hero__actions,
.hero__live {
  opacity: 1;
  transform: none;
  animation: none;
}

.hero h1 span {
  padding-block: 0.07em 0.12em;
  margin-block: -0.07em -0.12em;
}

.hero h1 span:nth-child(2) {
  animation: none;
}

.river-wave {
  opacity: 0.5;
}

@keyframes hero-camera-settle {
  from {
    opacity: 0.74;
    transform: scale(1.055) translate3d(0, 8px, 0);
  }
  to {
    opacity: 1;
    transform: scale(1.025) translate3d(var(--hero-shift-x), var(--hero-shift-y), 0);
  }
}

@keyframes hero-copy-settle {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media,
  .hero__copy,
  .hero h1 span:nth-child(2) {
    animation: none;
  }
}

/* River Spatial UI: one continuous wave field and a sharper broadcast control kit. */
:root {
  --river-muted: #a9bbc9;
  --river-line: rgba(203, 217, 227, 0.21);
  --river-line-strong: rgba(203, 217, 227, 0.38);
}

.river-wave {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: normal;
  -webkit-mask-image: linear-gradient(90deg, transparent 3%, rgba(0, 0, 0, 0.24) 24%, black 58%, transparent 98%);
  mask-image: linear-gradient(90deg, transparent 3%, rgba(0, 0, 0, 0.24) 24%, black 58%, transparent 98%);
}

.hero__copy { z-index: 5; }
.hero__media { z-index: 1; }
.hero-3d { z-index: 4; }

.site-header {
  inset: 0 0 auto;
}

.site-header__inner {
  width: 100%;
  min-height: 76px;
  padding: 0 clamp(22px, 4vw, 76px);
  gap: clamp(22px, 3vw, 54px);
  border-width: 0 0 1px;
  border-radius: 0;
  border-color: rgba(205, 225, 236, 0.18);
  background:
    linear-gradient(90deg, rgba(125, 181, 216, 0.12), transparent 24%),
    rgba(3, 11, 20, 0.88);
  box-shadow: 0 18px 70px rgba(0, 4, 11, 0.22);
}

.brand {
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.13em;
}

.brand::after {
  content: "SAMARA / RIVER";
  margin-left: 10px;
  padding-left: 20px;
  border-left: 1px solid rgba(203, 217, 227, 0.18);
  color: var(--river-muted);
  font-family: "Evolventa", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

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

.site-nav a {
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  color: #c4d3dd;
  font-size: 12px;
  font-weight: 400;
}

.site-nav a::after {
  bottom: 0;
}

.button,
.header-action,
.store-link {
  border-radius: 11px;
  font-family: "Unbounded", "Evolventa", sans-serif;
}

.button,
.header-action {
  min-height: 54px;
  padding-inline: 20px 10px;
  gap: 18px;
  border: 1px solid rgba(211, 229, 239, 0.26);
  font-size: 11px;
  letter-spacing: -0.015em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 46px rgba(0, 4, 11, 0.2);
}

.header-action {
  min-height: 48px;
  padding-left: 18px;
}

.motion-ticker {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  background:
    linear-gradient(90deg, rgba(125, 181, 216, 0.08), transparent 20%, transparent 80%, rgba(125, 181, 216, 0.08)),
    #081522;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}

.motion-ticker__track {
  padding: 0;
  gap: 0;
  transform: translate3d(0, 0, 0);
}

.motion-ticker__group {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 0 0 auto;
}

.motion-ticker__group span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
}

.store-actions {
  gap: 10px;
}

.store-link {
  min-width: 178px;
  min-height: 68px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background:
    linear-gradient(145deg, rgba(125, 181, 216, 0.08), transparent 50%),
    rgba(4, 13, 23, 0.86);
}

.store-link img {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
}

.store-link > span {
  display: grid;
  gap: 1px;
  color: var(--river-text);
}

.store-link small {
  color: var(--river-muted);
  font-family: "Evolventa", sans-serif;
  font-size: 9px;
  line-height: 1.1;
}

.store-link strong {
  font-size: 13px;
  line-height: 1.15;
}

.tournament--training {
  --tournament-tone: #d6ad68;
}

.tournament details {
  margin-top: 18px;
  border-block: 1px solid rgba(203, 217, 227, 0.2);
}

.tournament summary {
  min-height: 54px;
  padding: 0 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #dfeaf0;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.tournament summary::-webkit-details-marker {
  display: none;
}

.tournament summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(203, 217, 227, 0.25);
  border-radius: 50%;
  color: var(--river-accent-strong);
  background: rgba(4, 13, 23, 0.58);
  font-family: "Unbounded", sans-serif;
  font-size: 15px;
  transition:
    transform 260ms var(--river-ease-out),
    background-color 220ms ease;
}

.tournament details[open] summary::after {
  background: color-mix(in srgb, var(--tournament-tone) 16%, rgba(4, 13, 23, 0.7));
  transform: rotate(45deg);
}

.tournament details dl {
  padding: 6px 0 18px;
}

.tournament details dt {
  color: #aebfcb;
  font-size: 11px;
}

.tournament details dd {
  color: #f0f6f9;
  font-size: 13px;
}

@media (min-width: 901px) {
  .tournament,
  .tournament--phoenix,
  .tournament--rush,
  .tournament--friday,
  .tournament--training,
  .tournament--king {
    width: min(68vw, 1040px);
    flex-basis: min(68vw, 1040px);
  }

  html:not(.has-gsap-motion) .tournament--training {
    grid-column: span 5;
  }
}

@media (max-width: 900px) {
  .brand::after {
    display: none;
  }

  .site-header__inner {
    min-height: 68px;
    padding-inline: 14px;
  }

  .river-wave {
    opacity: 0.48;
  }
}

@media (max-width: 640px) {
  .store-actions {
    grid-template-columns: 1fr;
  }

  .store-link,
  .store-link:last-child {
    width: 100%;
    min-width: 0;
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .app-section {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .app-section__visual {
    min-height: 76dvh;
    grid-column: 1;
    grid-row: 1;
  }

  .app-stage::after {
    background:
      linear-gradient(0deg, rgba(3, 9, 17, 0.96) 2%, rgba(3, 9, 17, 0.42) 58%, rgba(3, 9, 17, 0.08)),
      linear-gradient(90deg, transparent, rgba(3, 9, 17, 0.28));
  }

  .app-section__content {
    margin: -18vh 20px 0;
    padding: 42px 24px 70px;
    grid-column: 1;
    grid-row: 2;
  }

  .app-section__content::before {
    inset: 0;
  }

  .tournaments {
    min-height: auto;
    padding: 112px 10px 120px;
    overflow: visible;
  }

  .tournaments .section-heading {
    padding-inline: 12px;
    display: block;
  }

  .tournaments .section-heading h2 {
    margin-bottom: 22px;
  }

  .tournament-grid {
    width: auto;
    padding-inline: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    transform: none !important;
  }

  .tournament,
  .tournament--phoenix,
  .tournament--rush,
  .tournament--friday,
  .tournament--king {
    width: 100%;
    min-height: 72dvh;
    flex: none;
    border-radius: 18px;
  }

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

  .contact {
    min-height: 920px;
    padding: 104px 22px 48px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "lead"
      "actions";
  }

  .contact::before {
    background:
      linear-gradient(0deg, rgba(2, 7, 13, 0.98) 4%, rgba(2, 7, 13, 0.68) 62%, rgba(2, 7, 13, 0.08)),
      linear-gradient(90deg, rgba(2, 7, 13, 0.58), transparent);
  }

  .contact__mark img {
    object-position: 67% center;
  }

  .contact__lead h2 {
    font-size: clamp(3.5rem, 14vw, 5.6rem);
  }

  .contact-orbit {
    top: 26%;
    right: 7%;
    width: 42vw;
    opacity: 0.72;
  }
}

.hero h1 span {
  display: block;
  opacity: 0;
  transform: translateY(70px);
  animation: hero-word-in 1.05s var(--river-ease-out) forwards;
}

.hero h1 span:nth-child(2) {
  color: transparent;
  background:
    linear-gradient(110deg, #f3f8fb 8%, #91bed8 46%, #f0f7fb 64%, #729db8 92%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: hero-word-in 1.05s var(--river-ease-out) 90ms forwards;
}

.eyebrow,
.hero__lede,
.hero__actions,
.hero__live {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-detail-in 780ms var(--river-ease-out) forwards;
}

.eyebrow { animation-delay: 180ms; }
.hero__lede { animation-delay: 300ms; }
.hero__actions { animation-delay: 390ms; }
.hero__live { animation-delay: 500ms; }

.button,
.header-action {
  overflow: hidden;
}

.button::after,
.header-action::after {
  content: "↗";
  width: 29px;
  height: 29px;
  margin-left: 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(4, 11, 20, 0.12);
  font-size: 13px;
  transition:
    transform 420ms var(--river-ease-out),
    background-color 220ms ease;
}

.button--secondary::after {
  background: rgba(236, 243, 248, 0.08);
}

.header-action {
  padding-right: 9px;
}

.header-action::after {
  width: 30px;
  height: 30px;
  background: rgba(4, 11, 20, 0.1);
}

.reveal {
  transform: translateY(46px) scale(0.985);
  transition:
    opacity 880ms var(--river-ease-out),
    transform 880ms var(--river-ease-out);
}

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

.tournament-grid {
  perspective: 1500px;
}

.tournament {
  transform-style: preserve-3d;
}

.tournament--phoenix {
  --tournament-tone: var(--river-ember);
}

.tournament--rush {
  --tournament-tone: var(--river-mint);
}

.tournament--friday {
  --tournament-tone: var(--river-oxblood);
}

.tournament--king {
  --tournament-tone: var(--river-violet);
}

.tournament::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--tournament-tone), var(--river-accent), transparent);
  box-shadow: 0 0 28px color-mix(in srgb, var(--tournament-tone) 55%, transparent);
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 760ms var(--river-ease-out);
}

.tournament__scrim {
  background:
    linear-gradient(180deg, rgba(3, 9, 17, 0.02) 18%, rgba(3, 9, 17, 0.26) 48%, rgba(3, 9, 17, 0.98) 92%),
    linear-gradient(90deg, color-mix(in srgb, var(--tournament-tone) 18%, transparent), transparent 58%);
}

.tournament__schedule {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--tournament-tone) 46%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--tournament-tone) 12%, rgba(3, 9, 17, 0.7));
  color: color-mix(in srgb, var(--tournament-tone) 62%, white);
}

.tournament h3 {
  max-width: 9ch;
  margin-top: 13px;
  text-shadow: 0 16px 46px rgba(0, 0, 0, 0.62);
}

.tournament details {
  max-width: 520px;
}

@keyframes hero-word-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-detail-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headline-metal {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover::after,
  .header-action:hover::after {
    background: rgba(4, 11, 20, 0.2);
    transform: translate(3px, -2px) scale(1.08);
  }

  .button--secondary:hover::after {
    background: rgba(236, 243, 248, 0.14);
  }

  .tournament:hover {
    transform: translateY(-10px) rotateX(1.2deg) rotateY(-1.2deg);
  }

  .tournament:nth-child(even):hover {
    transform: translateY(-10px) rotateX(1.2deg) rotateY(1.2deg);
  }

  .tournament:hover::before {
    transform: scaleX(1);
  }
}

/* Full-bleed venue and dimensional display layer. */
h1,
h2,
h3,
.brand,
.header-action,
.button,
.club-signal strong,
.store-link strong,
.contact-line strong {
  font-family: "Unbounded", "Evolventa", sans-serif;
}

.site-header__inner {
  padding-inline: clamp(14px, 2vw, 28px) 10px;
}

.hero {
  border-radius: 0;
}

.hero__copy {
  width: 100%;
  padding-right: 0;
  z-index: 4;
}

.hero h1 {
  max-width: none;
  width: min(70vw, 1020px);
  font-size: clamp(3.65rem, 6.45vw, 7.6rem);
  line-height: 0.91;
  letter-spacing: -0.07em;
}

.hero h1 span {
  white-space: nowrap;
}

.hero-3d {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: absolute;
  z-index: 3;
  top: 16%;
  right: 4vw;
  width: min(42vw, 650px);
  aspect-ratio: 1;
  pointer-events: none;
  perspective: 1400px;
  transform: perspective(1400px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-3d::after {
  content: "";
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: rgba(83, 164, 211, 0.2);
  filter: blur(70px);
  transform: translateZ(-80px) scale(1.2);
}

.hero-3d__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(188, 225, 246, 0.28);
  border-radius: 50%;
  transform-style: preserve-3d;
}

.hero-3d__orbit::before,
.hero-3d__orbit::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: 50%;
  left: -5px;
  border-radius: 50%;
  background: #bfe5f8;
  box-shadow: 0 0 22px rgba(125, 181, 216, 0.95);
}

.hero-3d__orbit::after {
  right: -5px;
  left: auto;
}

.hero-3d__orbit--outer {
  width: 92%;
  height: 92%;
  margin: -46%;
  border-color: rgba(125, 181, 216, 0.2);
  transform: rotateX(68deg) rotateZ(18deg);
  animation: orbit-outer 13s linear infinite;
}

.hero-3d__orbit--inner {
  width: 68%;
  height: 68%;
  margin: -34%;
  transform: rotateY(72deg) rotateZ(-26deg);
  animation: orbit-inner 10s linear infinite reverse;
}

.hero-chip {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(18vw, 260px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotateX(59deg) rotateZ(-18deg);
  transform-style: preserve-3d;
  animation: hero-chip-float 5.2s cubic-bezier(0.32, 0.72, 0, 1) infinite alternate;
}

.hero-chip__layer,
.hero-chip__face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform-style: preserve-3d;
}

.hero-chip__layer {
  border: clamp(9px, 1vw, 15px) solid transparent;
  background:
    linear-gradient(#071321, #071321) padding-box,
    conic-gradient(
      from 15deg,
      #eaf5fb,
      #628eaa 7%,
      #07111f 13%,
      #91c8e8 20%,
      #eff8fc 28%,
      #1b4d6c 37%,
      #9fcce4 47%,
      #06101c 55%,
      #dcecf4 67%,
      #4f7e9a 78%,
      #eff8fc 88%,
      #2d6689
    ) border-box;
  box-shadow:
    inset 0 0 0 2px rgba(225, 241, 250, 0.16),
    0 18px 36px rgba(0, 3, 10, 0.34);
}

.hero-chip__layer--1 { transform: translateZ(-26px); filter: brightness(0.48); }
.hero-chip__layer--2 { transform: translateZ(-18px); filter: brightness(0.62); }
.hero-chip__layer--3 { transform: translateZ(-10px); filter: brightness(0.78); }
.hero-chip__layer--4 { transform: translateZ(-2px); filter: brightness(0.92); }
.hero-chip__layer--5 { transform: translateZ(6px); }

.hero-chip__face {
  transform: translateZ(14px);
  display: grid;
  place-items: center;
  border: clamp(11px, 1.2vw, 18px) solid rgba(174, 218, 242, 0.72);
  background:
    radial-gradient(circle at 40% 28%, rgba(255, 255, 255, 0.28), transparent 18%),
    repeating-conic-gradient(from 10deg, rgba(236, 247, 252, 0.75) 0 7deg, #244f69 8deg 18deg),
    #0a1d2e;
  box-shadow:
    inset 0 0 0 10px #071321,
    inset 0 0 0 12px rgba(187, 225, 245, 0.42),
    inset 0 -20px 50px rgba(0, 4, 11, 0.78),
    0 0 50px rgba(91, 173, 220, 0.28);
}

.hero-chip__face::before {
  content: "";
  position: absolute;
  inset: 25%;
  border: 1px solid rgba(219, 239, 249, 0.4);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, rgba(232, 246, 253, 0.18), transparent 24%),
    #07111f;
  box-shadow:
    inset 0 8px 18px rgba(225, 242, 251, 0.06),
    0 0 0 5px rgba(5, 15, 25, 0.72);
}

.hero-chip__face b {
  position: relative;
  z-index: 1;
  color: transparent;
  background: linear-gradient(150deg, #ffffff, #76a9c7 50%, #eaf6fc);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(32px, 5vw, 76px);
  line-height: 1;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.48);
}

.hero-3d__satellite {
  position: absolute;
  z-index: 3;
  width: clamp(38px, 5vw, 74px);
  aspect-ratio: 1;
  border: 5px solid rgba(174, 218, 242, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle, #0c2236 0 38%, transparent 40%),
    conic-gradient(#edf8fd, #275f82, #a9d7ef, #07111f, #edf8fd);
  box-shadow:
    inset 0 0 0 4px #07111f,
    0 14px 34px rgba(0, 4, 11, 0.38),
    0 0 24px rgba(125, 181, 216, 0.22);
}

.hero-3d__satellite--one {
  top: 12%;
  left: 14%;
  animation: satellite-one 6s cubic-bezier(0.32, 0.72, 0, 1) infinite alternate;
}

.hero-3d__satellite--two {
  right: 9%;
  bottom: 18%;
  width: clamp(30px, 4vw, 58px);
  animation: satellite-two 7.2s cubic-bezier(0.32, 0.72, 0, 1) infinite alternate;
}

.hero-3d__satellite--three {
  bottom: 8%;
  left: 22%;
  width: clamp(24px, 3vw, 46px);
  animation: satellite-three 5.4s cubic-bezier(0.32, 0.72, 0, 1) infinite alternate;
}

.club-signals {
  padding-inline: clamp(22px, 5vw, 96px);
}

.about {
  padding: 160px clamp(24px, 6vw, 120px) 180px;
}

.app-section__content {
  max-width: none;
}

.tournaments {
  padding: 170px clamp(18px, 4vw, 78px) 180px;
}

.section-heading {
  max-width: 1180px;
}

.section-heading h2 {
  max-width: 14ch;
}

.contact {
  min-height: 760px;
  padding-inline: clamp(34px, 8vw, 150px);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.site-footer {
  padding-inline: clamp(24px, 5vw, 96px);
}

.about__image,
.app-stage,
.tournament,
.contact__mark {
  transform-style: preserve-3d;
}

.about__image,
.app-stage {
  transition: transform 1s var(--river-ease-out);
}

.tournament__content {
  transform: translateZ(30px);
}

@keyframes orbit-outer {
  to { transform: rotateX(68deg) rotateZ(378deg); }
}

@keyframes orbit-inner {
  to { transform: rotateY(72deg) rotateZ(334deg); }
}

@keyframes hero-chip-float {
  from { transform: translate(-50%, -50%) rotateX(59deg) rotateZ(-18deg) translateZ(0); }
  to { transform: translate(-50%, -54%) rotateX(63deg) rotateZ(-10deg) translateZ(34px); }
}

@keyframes satellite-one {
  to { transform: translate3d(34px, 26px, 60px) rotate(48deg); }
}

@keyframes satellite-two {
  to { transform: translate3d(-38px, -24px, 80px) rotate(-64deg); }
}

@keyframes satellite-three {
  to { transform: translate3d(24px, -36px, 42px) rotate(36deg); }
}

@media (hover: hover) and (pointer: fine) {
  .about__image:hover {
    transform: perspective(1300px) rotateX(1.2deg) rotateY(-1.8deg) translateY(-8px);
  }

  .app-section:hover .app-stage {
    transform: perspective(1200px) rotateY(2.2deg) translateY(-12px);
  }
}

@media (max-width: 980px) {
  .hero-3d {
    top: 21%;
    right: -6vw;
    width: 48vw;
    opacity: 0.92;
  }

  .about {
    padding-inline: 28px;
  }

  .tournaments {
    padding-inline: 20px;
  }
}

@media (max-width: 640px) {
  .hero__copy {
    padding-right: 22px;
  }

  .hero h1 {
    width: 100%;
    font-size: clamp(2.65rem, 12.5vw, 4rem);
    line-height: 0.96;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-3d {
    top: 13%;
    right: -18vw;
    width: 90vw;
    opacity: 0.78;
  }

  .hero-chip {
    width: 38vw;
  }

  .about {
    padding: 104px 16px 116px;
  }

  .tournaments {
    padding: 112px 10px 120px;
  }

  .contact {
    padding-inline: 22px;
  }
}

@media (min-width: 901px) {
  html.has-gsap-motion .tournaments {
    min-height: 100dvh;
    padding: 84px 0 18px;
  }

  html.has-gsap-motion .tournaments .section-heading {
    margin-bottom: 14px;
  }

  html.has-gsap-motion .tournament,
  html.has-gsap-motion .tournament--phoenix,
  html.has-gsap-motion .tournament--rush,
  html.has-gsap-motion .tournament--friday,
  html.has-gsap-motion .tournament--king {
    min-height: min(54dvh, 590px);
  }

  html.has-gsap-motion .tournaments__action {
    margin-top: 10px;
    padding-top: 10px;
  }
}

/* Cascade lock: these rules intentionally finish the duplicated legacy stylesheet. */
.tournament--storm {
  --tournament-tone: #62b9e8;
}

.hero h1 {
  width: min(60vw, 1000px);
  font-size: clamp(3.5rem, 5.45vw, 6.85rem);
  line-height: 0.94;
}

.hero-chip-visual {
  right: clamp(24px, 4.5vw, 92px);
  width: min(28vw, 530px);
}

.button,
.header-action {
  font-size: 14px;
}

.hero__live-state,
.club-signal__index {
  font-size: 12px;
}

.store-link small {
  font-size: 11px;
}

.store-link strong {
  font-size: 14px;
}

.tournaments,
html.has-gsap-motion .tournaments {
  min-height: auto;
  padding: clamp(126px, 12vw, 210px) 0;
  overflow: visible;
}

.tournaments .section-heading,
html.has-gsap-motion .tournaments .section-heading {
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(42px, 6vw, 84px);
  padding: 0 clamp(24px, 5vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: clamp(30px, 7vw, 140px);
}

.tournament-grid,
html.has-gsap-motion .tournament-grid {
  width: 100%;
  padding: 0 clamp(20px, 3.6vw, 70px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 30px);
  transform: none !important;
  will-change: auto;
}

.tournament,
.tournament--storm,
.tournament--phoenix,
.tournament--rush,
.tournament--friday,
.tournament--training,
.tournament--king,
html.has-gsap-motion .tournament,
html.has-gsap-motion .tournament--storm,
html.has-gsap-motion .tournament--phoenix,
html.has-gsap-motion .tournament--rush,
html.has-gsap-motion .tournament--friday,
html.has-gsap-motion .tournament--training,
html.has-gsap-motion .tournament--king {
  width: 100%;
  min-height: clamp(650px, 55vw, 840px);
  flex: none;
  grid-column: span 6;
  border-radius: 26px;
  transform: none;
}

.tournament--training,
html.has-gsap-motion .tournament--training {
  grid-column: span 5;
}

.tournament--king,
html.has-gsap-motion .tournament--king {
  grid-column: span 7;
}

.tournament__content {
  width: 100%;
  max-width: none;
  padding: clamp(30px, 3.3vw, 62px);
  transform: none;
}

.tournament h3 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 4vw, 5.15rem);
  line-height: 0.98;
}

.tournament details summary {
  padding: 0;
  list-style: none;
  font-size: clamp(15px, 0.95vw, 18px);
  pointer-events: none;
}

.tournament details summary::-webkit-details-marker {
  display: none;
}

.tournament details summary::after {
  display: none !important;
  content: none !important;
}

.tournament details dt {
  color: #b7c6d0;
  font-size: clamp(14px, 0.86vw, 16px);
}

.tournament details dd {
  color: #f1f6f8;
  font-size: clamp(17px, 1vw, 19px);
}

.tournaments__action,
html.has-gsap-motion .tournaments__action {
  width: auto;
  margin: clamp(40px, 5vw, 80px) clamp(24px, 5vw, 96px) 0;
  padding-top: 30px;
  justify-content: flex-start;
  gap: clamp(24px, 4vw, 64px);
}

@media (max-width: 1080px) {
  .hero h1 {
    width: 72vw;
    font-size: clamp(3.2rem, 6.7vw, 5.4rem);
  }

  .hero-chip-visual {
    right: -4vw;
    width: 38vw;
    opacity: 0.82;
  }

  .tournaments .section-heading,
  html.has-gsap-motion .tournaments .section-heading {
    grid-template-columns: 1fr;
  }

  .tournament,
  .tournament--training,
  .tournament--king,
  html.has-gsap-motion .tournament,
  html.has-gsap-motion .tournament--training,
  html.has-gsap-motion .tournament--king {
    min-height: 720px;
    grid-column: span 12;
  }
}

@media (max-width: 640px) {
  .hero__media figcaption {
    display: none;
  }

  .hero h1 {
    width: 100%;
    font-size: clamp(2.65rem, 11.8vw, 3.9rem);
  }

  .hero-chip-visual {
    right: -3vw;
    width: 72vw;
  }

  .tournament-grid,
  html.has-gsap-motion .tournament-grid {
    padding-inline: 12px;
  }

  .tournament,
  .tournament--training,
  .tournament--king,
  html.has-gsap-motion .tournament,
  html.has-gsap-motion .tournament--training,
  html.has-gsap-motion .tournament--king {
    min-height: 760px;
    border-radius: 20px;
  }
}

/* Interaction and hero integrity layer. Kept last to neutralize legacy cascade collisions. */
:root {
  --river-control-edge: rgba(214, 235, 246, 0.34);
  --river-control-cut: 13px;
}

.button,
.header-action,
.store-link {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0;
  clip-path: polygon(
    0 0,
    calc(100% - var(--river-control-cut)) 0,
    100% var(--river-control-cut),
    100% 100%,
    var(--river-control-cut) 100%,
    0 calc(100% - var(--river-control-cut))
  );
}

.button,
.header-action {
  min-height: 58px;
  padding: 0 62px 0 22px;
  justify-content: flex-start;
  gap: 0;
  border: 1px solid var(--river-control-edge);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 44%),
    rgba(5, 16, 28, 0.82);
  color: #edf5f9;
  font-size: 13px;
  font-weight: 580;
  letter-spacing: -0.02em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 40px rgba(0, 5, 13, 0.28);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 160ms var(--river-ease-out);
}

.button::before,
.header-action::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(105deg, transparent 16%, rgba(255, 255, 255, 0.18) 48%, transparent 78%);
  transform: translateX(-115%);
  transition: transform 520ms var(--river-ease-out);
}

.button::after,
.header-action::after {
  content: "↗";
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
  width: 42px;
  height: auto;
  margin: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-left: 1px solid rgba(222, 239, 248, 0.2);
  border-radius: 0;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.12), transparent),
    rgba(5, 16, 28, 0.24);
  color: currentColor;
  font-size: 16px;
  transition:
    transform 180ms var(--river-ease-out),
    background-color 180ms ease;
}

.button--primary {
  border-color: rgba(213, 237, 249, 0.66);
  background:
    linear-gradient(120deg, #dcecf4 0%, #9bc8df 48%, #75acd0 100%);
  color: #04111e;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(20, 73, 105, 0.28),
    0 18px 44px rgba(42, 126, 174, 0.25);
}

.button--primary::after {
  border-left-color: rgba(4, 17, 30, 0.18);
  background: rgba(4, 17, 30, 0.08);
}

.button--secondary {
  border-color: rgba(166, 206, 229, 0.3);
  background:
    linear-gradient(110deg, rgba(111, 174, 210, 0.1), transparent 48%),
    rgba(3, 12, 22, 0.72);
}

.header-action {
  min-height: 48px;
  padding: 0 54px 0 18px;
  border-color: rgba(213, 237, 249, 0.5);
  background: linear-gradient(120deg, #e8f2f7, #a9ccdf);
  color: #04111e;
  font-size: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 12px 34px rgba(24, 83, 119, 0.22);
}

.header-action::after {
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 36px;
  height: auto;
  border-left-color: rgba(4, 17, 30, 0.18);
  background: rgba(4, 17, 30, 0.07);
}

.store-link {
  min-height: 72px;
  border: 1px solid rgba(186, 216, 233, 0.26);
  background:
    linear-gradient(120deg, rgba(126, 184, 217, 0.12), transparent 48%),
    rgba(3, 12, 22, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(242, 250, 254, 0.08),
    0 16px 38px rgba(0, 4, 12, 0.24);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 160ms var(--river-ease-out);
}

.button:focus-visible,
.header-action:focus-visible,
.store-link:focus-visible {
  outline: 3px solid rgba(137, 204, 239, 0.88);
  outline-offset: 4px;
}

.button:active,
.header-action:active,
.store-link:active {
  transform: scale(0.975);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .header-action:hover,
  .store-link:hover {
    border-color: rgba(224, 242, 251, 0.72);
    transform: translateY(-2px);
  }

  .button:hover::before,
  .header-action:hover::before {
    transform: translateX(115%);
  }

  .button:hover::after,
  .header-action:hover::after {
    transform: translate3d(2px, -2px, 0);
  }
}

.hero h1 {
  width: min(76vw, 1420px);
  max-width: none;
  overflow: visible;
  font-size: clamp(4rem, 4.65vw, 5.95rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
}

.hero h1 span,
.hero h1 span:nth-child(2) {
  width: max-content;
  max-width: 100%;
  overflow: visible;
  white-space: nowrap;
  opacity: 1;
  transform: none;
  animation: none;
}

.hero__live {
  width: min(650px, 48vw);
  min-height: 96px;
  padding: 8px 58px 8px 8px;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(172, 211, 233, 0.3);
  border-radius: 15px;
  background:
    linear-gradient(105deg, rgba(107, 172, 209, 0.12), transparent 52%),
    rgba(3, 12, 22, 0.78);
  color: #f2f7fa;
  box-shadow:
    inset 0 1px 0 rgba(242, 250, 254, 0.07),
    0 18px 52px rgba(0, 4, 12, 0.3);
  text-decoration: none;
  opacity: 1;
  transform: none;
  animation: none;
  transition:
    border-color 180ms ease,
    transform 180ms var(--river-ease-out);
}

.hero__live-visual {
  position: relative;
  height: 78px;
  overflow: hidden;
  border-radius: 10px;
  background: #071524;
}

.hero__live-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 45%, rgba(3, 12, 22, 0.58));
}

.hero__live-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
  filter: saturate(0.82) contrast(1.08);
  transition: transform 520ms var(--river-ease-out);
}

.hero__live-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.hero__live-state {
  color: #9fcce5;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__live strong {
  overflow: hidden;
  color: #f4f8fa;
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero__live-copy > span:last-child {
  color: #c3d2dc;
  font-size: 12px;
}

.hero__live-arrow {
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  width: 40px;
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(189, 219, 235, 0.18);
  color: #bfe1f3;
  font-size: 16px;
  transition: transform 180ms var(--river-ease-out);
}

.hero__live:focus-visible {
  outline: 3px solid rgba(137, 204, 239, 0.88);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .hero__live:hover {
    border-color: rgba(190, 224, 242, 0.6);
    transform: translateY(-3px);
  }

  .hero__live:hover .hero__live-visual img {
    transform: scale(1.055);
  }

  .hero__live:hover .hero__live-arrow {
    transform: translate3d(2px, -2px, 0);
  }
}

@media (max-width: 1080px) {
  .hero h1 {
    width: min(82vw, 880px);
    font-size: clamp(3.4rem, 6.2vw, 4.8rem);
  }

  .hero__live {
    width: min(720px, 72vw);
  }
}

@media (max-width: 640px) {
  .button,
  .header-action {
    min-height: 56px;
    padding-left: 18px;
    font-size: 12px;
  }

  .hero h1 {
    width: 100%;
    font-size: clamp(2.55rem, 11.2vw, 3.7rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .hero h1 span,
  .hero h1 span:nth-child(2) {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }

  .hero__live {
    width: 100%;
    min-height: 92px;
    padding-right: 50px;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
  }

  .hero__live-visual {
    height: 72px;
  }

  .hero__live strong {
    font-size: 14px;
  }
}

/* Schedule-aware hero and optical alignment corrections. */
.hero h1 {
  width: min(74vw, 1360px);
  padding: 0.08em 0.12em 0.14em 0.04em;
  margin: -0.08em 0 -0.14em -0.04em;
  overflow: visible;
  font-size: clamp(3.85rem, 4.5vw, 5.75rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.hero h1 span,
.hero h1 span:nth-child(2) {
  width: fit-content;
  max-width: none;
  padding: 0.05em 0.1em 0.1em 0.025em;
  margin: -0.05em -0.1em -0.1em -0.025em;
  overflow: visible;
}

.motion-ticker__track {
  display: flex;
  align-items: center;
  gap: 0;
  animation-name: ticker-run-centered;
}

.motion-ticker__group {
  width: 100vw;
  min-width: 100vw;
  justify-content: space-evenly;
  gap: clamp(18px, 2.2vw, 42px);
}

.tournament.is-next-game {
  border-color: color-mix(in srgb, var(--tournament-tone, #7db5d8) 58%, rgba(210, 232, 243, 0.34));
  box-shadow:
    inset 0 1px 0 rgba(243, 250, 253, 0.1),
    0 26px 80px rgba(0, 7, 17, 0.34);
}

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

@media (max-width: 1080px) {
  .hero h1 {
    width: min(88vw, 930px);
    font-size: clamp(3.2rem, 6vw, 4.65rem);
  }
}

@media (max-width: 820px) {
  .motion-ticker__group {
    width: max-content;
    min-width: max-content;
    justify-content: flex-start;
    gap: 26px;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    width: calc(100% + 0.1em);
    padding: 0.08em 0.08em 0.16em 0.025em;
    margin: -0.08em -0.08em -0.16em -0.025em;
    font-size: clamp(2.45rem, 10.75vw, 3.55rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
  }

  .hero h1 span,
  .hero h1 span:nth-child(2) {
    width: auto;
    max-width: 100%;
    padding: 0.04em 0.06em 0.1em 0.02em;
    margin: -0.04em -0.06em -0.1em -0.02em;
  }

  .hero__live strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12.5px;
    line-height: 1.25;
    text-overflow: clip;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ticker__track {
    animation: none;
  }
}

/* Grouped nearest-day schedule and final information hierarchy. */
.hero__live {
  position: relative;
  width: min(820px, 58vw);
  min-height: 0;
  padding: 13px 58px 13px 13px;
  display: block;
}

.hero__live-state {
  margin: 0 0 9px 3px;
}

.hero__live-events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 9px;
}

.hero__live-event {
  min-width: 0;
  padding: 6px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(184, 214, 231, 0.16);
  border-radius: 11px;
  background: rgba(8, 21, 34, 0.7);
}

.hero__live-visual {
  height: 60px;
}

.hero__live-copy > span:last-child {
  color: #c3d2dc;
  font-size: 11px;
}

.hero__live-event .hero__live-copy strong {
  display: block;
  overflow: visible;
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.2;
  text-overflow: clip;
  white-space: normal;
}

.tournament details dl {
  row-gap: 13px;
}

.tournament details .tournament__addon {
  grid-column: 1 / -1;
  padding-top: 11px;
  border-top: 1px solid rgba(236, 243, 248, 0.16);
}

.tournament details .tournament__addon dd {
  color: #f0d58e;
}

.contact__actions .contact-line:first-child {
  border-top: 0;
}

@media (max-width: 1080px) {
  .hero__live {
    width: min(760px, 78vw);
  }
}

@media (max-width: 640px) {
  .hero__live {
    width: 100%;
    padding: 12px 48px 12px 12px;
  }

  .hero__live-events {
    grid-template-columns: 1fr;
  }

  .hero__live-event {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .hero__live-visual {
    height: 54px;
  }
}

/* Mobile integrity + drawer nav + landing preloader (final cascade lock). */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(125, 181, 216, 0.14), transparent 42%),
    #040b14;
  transition: opacity 320ms cubic-bezier(0.23, 1, 0.32, 1), visibility 320ms linear;
}

.site-preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-preloader__mark {
  display: grid;
  justify-items: center;
  gap: clamp(16px, 2.4vw, 32px);
  color: #ecf3f8;
  text-align: center;
}

.site-preloader__mark img {
  width: clamp(72px, 14vw, 140px);
  height: auto;
  animation: preloader-breathe 1.4s cubic-bezier(0.37, 0, 0.2, 1) infinite alternate;
}

.site-preloader__mark span:not(.site-preloader__bar) {
  font-size: clamp(12px, 1.5vw, 18px);
  font-weight: 700;
  letter-spacing: 0.22em;
}

.site-preloader__bar {
  width: clamp(96px, 20vw, 200px);
  height: clamp(2px, 0.28vw, 3px);
  margin-top: clamp(2px, 0.4vw, 8px);
  overflow: hidden;
  border-radius: 999px;
  background: rgba(203, 217, 227, 0.16);
}

.site-preloader__bar i {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7db5d8, #dbe8f0);
  animation: preloader-slide 1.1s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}

@media (max-width: 640px) {
  .site-preloader__mark img {
    width: clamp(64px, 18vw, 88px);
  }

  .site-preloader__mark span:not(.site-preloader__bar) {
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .site-preloader__bar {
    width: min(42vw, 120px);
    height: 2px;
  }
}

@media (min-width: 641px) and (max-width: 1079px) {
  .site-preloader__mark img {
    width: clamp(88px, 12vw, 112px);
  }

  .site-preloader__bar {
    width: clamp(120px, 18vw, 160px);
    height: 2.5px;
  }
}

@media (min-width: 1080px) {
  .site-preloader__mark img {
    width: clamp(120px, 9vw, 156px);
  }

  .site-preloader__mark span:not(.site-preloader__bar) {
    font-size: clamp(14px, 1.1vw, 18px);
    letter-spacing: 0.24em;
  }

  .site-preloader__bar {
    width: clamp(160px, 14vw, 220px);
    height: 3px;
  }
}

body.is-loading {
  overflow: hidden;
}

@keyframes preloader-breathe {
  from { transform: scale(0.96); opacity: 0.82; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes preloader-slide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(280%); }
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader__mark img,
  .site-preloader__bar i {
    animation: none;
  }
}

@media (max-width: 860px) {
  :root {
    --river-container: min(100% - 40px, 720px);
    --river-mobile-gutter: 22px;
  }

  .brand::after {
    display: none;
  }

  .site-header,
  .site-header__inner,
  main,
  .hero,
  .about,
  .app-section,
  .tournaments,
  .contact,
  .site-footer,
  .motion-ticker {
    max-width: 100%;
  }

  .site-header {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    inset: 0 0 auto !important;
    z-index: 50 !important;
    padding-top: env(safe-area-inset-top, 0px) !important;
    pointer-events: none !important;
    background: #040b14 !important;
  }

  .site-header__inner {
    position: relative;
    width: 100% !important;
    min-height: 64px;
    margin: 0 !important;
    padding: 0 var(--river-mobile-gutter) !important;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    border: 0 !important;
    border-bottom: 1px solid rgba(205, 225, 236, 0.16) !important;
    border-radius: 0 !important;
    background: #07111f !important;
    box-shadow: 0 10px 28px rgba(0, 4, 12, 0.35) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    pointer-events: auto !important;
  }

  .header-action {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(203, 217, 227, 0.28);
    border-radius: 12px;
    background: rgba(10, 24, 38, 0.92);
    color: #ecf3f8;
    cursor: pointer;
  }

  .menu-toggle:focus-visible {
    outline: 2px solid #7db5d8;
    outline-offset: 2px;
  }

  .menu-toggle__lines,
  .menu-toggle__lines::before,
  .menu-toggle__lines::after {
    width: 18px;
    height: 1.5px;
    display: block;
    background: currentColor;
    transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1), opacity 160ms ease;
  }

  .menu-toggle__lines {
    position: relative;
  }

  .menu-toggle__lines::before,
  .menu-toggle__lines::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-toggle__lines::before {
    top: -6px;
  }

  .menu-toggle__lines::after {
    top: 6px;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines::before {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 60;
    top: calc(64px + env(safe-area-inset-top, 0px));
    right: var(--river-mobile-gutter);
    left: var(--river-mobile-gutter);
    bottom: auto;
    max-height: calc(100dvh - 80px - env(safe-area-inset-top, 0px));
    padding: 10px;
    display: grid;
    gap: 6px;
    overflow: auto;
    border: 1px solid rgba(203, 217, 227, 0.22);
    border-radius: 16px;
    background: rgba(4, 12, 22, 0.98);
    box-shadow: 0 24px 80px rgba(0, 4, 12, 0.48);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 48px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    background: rgba(203, 217, 227, 0.05);
    color: #dce8f0;
    font-size: 14px;
    font-weight: 600;
  }

  .site-nav a::after {
    display: none;
  }

  .hero,
  .hero__copy,
  .hero__media,
  html.has-gsap-motion .hero,
  html.has-gsap-motion .hero__copy {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
  }

  .hero {
    min-height: auto !important;
    padding: calc(72px + env(safe-area-inset-top, 0px)) 0 28px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
    overflow: hidden !important;
  }

  .hero::after {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
  }

  .hero__copy {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 12px var(--river-mobile-gutter) 180px !important;
    justify-content: flex-start !important;
    box-sizing: border-box !important;
  }

  .hero h1,
  .hero h1 span,
  .hero h1 span:nth-child(2) {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 9vw, 3.4rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.04em !important;
  }

  .hero__lede {
    max-width: 100% !important;
  }

  .hero__actions {
    width: 100%;
    max-width: 100%;
  }

  .hero__actions .button {
    width: 100%;
    max-width: 100%;
  }

  .hero__actions {
    margin-bottom: 0 !important;
  }

  .hero__live {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 22px 0 0 !important;
    padding: 12px 52px 12px 12px !important;
    box-sizing: border-box !important;
  }

  .hero__live-events {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    grid-template-columns: 1fr !important;
  }

  .hero__live-event {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .hero__live-arrow {
    right: 6px !important;
    width: 36px !important;
  }

  .hero-chip-visual,
  .hero-3d {
    right: var(--river-mobile-gutter) !important;
    left: auto !important;
    bottom: 8px !important;
    top: auto !important;
    width: min(40vw, 148px) !important;
    max-width: 148px !important;
    opacity: 0.5 !important;
    transform: none !important;
    pointer-events: none !important;
  }

  .hero__media {
    position: absolute !important;
    inset: 0 !important;
    min-height: 0 !important;
    opacity: 0.28 !important;
  }

  .about,
  .app-section,
  .tournaments,
  .contact,
  .site-footer {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding-left: var(--river-mobile-gutter) !important;
    padding-right: var(--river-mobile-gutter) !important;
    overflow-x: clip !important;
    box-sizing: border-box !important;
  }

  .about {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px !important;
  }

  .about__image,
  .about__copy {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .app-section {
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    overflow-x: clip !important;
  }

  .app-section__visual {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 42dvh !important;
    max-height: 48dvh;
    overflow: hidden !important;
  }

  .app-section__content {
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: -8vh 0 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 28px 16px 48px !important;
    box-sizing: border-box !important;
    overflow-x: clip !important;
    overflow-y: visible !important;
  }

  .app-section h2,
  .app-section__content h2 {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 16px !important;
    font-size: clamp(1.7rem, 7.6vw, 2.35rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.03em !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    text-wrap: balance !important;
  }

  .app-section__intro {
    max-width: 100% !important;
  }

  .app-section__content::before {
    inset: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: auto !important;
    max-width: none !important;
    border-radius: 18px !important;
  }

  .store-actions {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    gap: 10px !important;
    box-sizing: border-box !important;
  }

  .store-link {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .tournaments {
    min-height: 0 !important;
    padding-top: 72px !important;
    padding-bottom: 72px !important;
    overflow: visible !important;
  }

  .tournaments .section-heading,
  html.has-gsap-motion .tournaments .section-heading {
    width: 100% !important;
    padding-inline: 0 !important;
    display: block !important;
  }

  .tournament-grid,
  html.has-gsap-motion .tournament-grid {
    width: 100% !important;
    padding-inline: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
    gap: 14px !important;
    transform: none !important;
  }

  .tournament,
  .tournament--storm,
  .tournament--phoenix,
  .tournament--rush,
  .tournament--friday,
  .tournament--training,
  .tournament--king,
  html.has-gsap-motion .tournament,
  html.has-gsap-motion .tournament--training,
  html.has-gsap-motion .tournament--king,
  html.has-gsap-motion .tournament--phoenix,
  html.has-gsap-motion .tournament--rush,
  html.has-gsap-motion .tournament--friday {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    grid-column: auto !important;
    display: block !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    transform: none !important;
  }

  .tournament > img,
  .tournament__scrim {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  .tournament__content,
  html.has-gsap-motion .tournament__content {
    position: relative !important;
    inset: auto !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 46vw !important;
    padding: 18px 16px 18px !important;
    transform: none !important;
  }

  .tournament h3 {
    max-width: 100% !important;
    font-size: clamp(1.7rem, 8vw, 2.4rem) !important;
  }

  .tournament__content > p:not(.tournament__schedule) {
    max-width: 100% !important;
    font-size: 15px !important;
  }

  .tournament details {
    margin-top: 14px !important;
  }

  .tournament dl {
    grid-template-columns: 1fr !important;
  }

  .tournaments__action,
  html.has-gsap-motion .tournaments__action {
    width: 100% !important;
    margin: 28px 0 0 !important;
    padding-top: 0 !important;
    justify-content: flex-start !important;
    flex-direction: column;
    align-items: stretch;
  }

  .contact {
    min-height: 0 !important;
    padding-top: 72px !important;
    padding-bottom: 40px !important;
    grid-template-columns: 1fr !important;
  }

  .contact__lead,
  .contact__actions {
    width: 100% !important;
    max-width: 100% !important;
  }

  .contact__lead h2 {
    font-size: clamp(2.4rem, 11vw, 3.6rem) !important;
    overflow-wrap: anywhere;
  }

  .contact-orbit {
    display: none !important;
  }

  .motion-ticker {
    overflow: hidden !important;
  }

  .motion-ticker__group {
    width: max-content !important;
    min-width: max-content !important;
  }

  .site-footer {
    display: grid !important;
    gap: 14px !important;
  }
}

@media (max-width: 640px) {
  :root {
    --river-mobile-gutter: 20px;
  }

  .hero__copy {
    padding: 12px var(--river-mobile-gutter) 150px !important;
  }

  .hero-chip-visual {
    width: min(42vw, 148px) !important;
    opacity: 0.48 !important;
  }

  .app-section__content {
    padding: 24px 16px 40px !important;
  }

  .tournament__content,
  html.has-gsap-motion .tournament__content {
    margin-top: 52vw !important;
    padding: 16px 14px 16px !important;
  }

  .tournament h3 {
    font-size: clamp(1.55rem, 8.5vw, 2.1rem) !important;
  }
}

@media (max-width: 860px) and (prefers-reduced-motion: reduce) {
  .site-nav {
    transition: opacity 120ms ease;
    transform: none;
  }
}

@media (max-width: 860px) {
  .hero__live,
  .hero__live-events,
  .hero__live-event,
  .app-section__content,
  .store-actions,
  .store-link,
  .tournament,
  .tournament-grid {
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 860px) {
  .hero__live {
    margin-top: 22px !important;
  }

  .app-section h2,
  .app-section__content h2 {
    font-size: clamp(1.7rem, 7.6vw, 2.35rem) !important;
    line-height: 1.12 !important;
    max-width: 100% !important;
  }
}

@media (max-width: 640px) {
  .hero__live {
    margin-top: 20px !important;
  }

  .app-section h2,
  .app-section__content h2 {
    font-size: clamp(1.6rem, 8vw, 2.1rem) !important;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: fixed !important;
    inset: 0 0 auto !important;
    top: 0 !important;
    padding-top: env(safe-area-inset-top, 0px) !important;
    background: #040b14 !important;
  }

  .site-header__inner {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    background: #07111f !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.menu-open .site-header {
    background: #040b14 !important;
  }
}

