:root {
  --ink: #050505;
  --ink-soft: #0c0c0f;
  --surface: #111116;
  --silver: #c0c0c0;
  --silver-bright: #f2f2f2;
  --silver-muted: #888891;
  --purple: #4b008f;
  --purple-bright: #751bd0;
  --line: rgba(192, 192, 192, 0.18);
  --max-width: 1400px;
  --header-height: 88px;
  font-family: Inter, "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  color: var(--silver-bright);
  background: var(--ink);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(75, 0, 143, 0.16), transparent 24rem),
    var(--ink);
  color: var(--silver-bright);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 0;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--purple), #a451f2, var(--silver-bright));
  box-shadow: 0 0 16px rgba(117, 27, 208, 0.75);
}

::selection {
  color: #fff;
  background: var(--purple-bright);
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 16px;
  transform: translateY(-180%);
  background: #fff;
  color: #000;
  font-weight: 800;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  border-inline: 1px solid rgba(255, 255, 255, 0.04);
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 50;
  display: flex;
  width: min(100%, 1920px);
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 4vw, 72px);
  transform: translateX(-50%);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, height 220ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-color: var(--line);
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 48px);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 12px;
  color: var(--silver);
  transition: color 180ms ease;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background: var(--purple-bright);
  transition: width 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after {
  width: 100%;
}

.nav-cta {
  padding: 13px 20px !important;
  border: 1px solid rgba(192, 192, 192, 0.36);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(960px, 100svh);
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  grid-template-rows: 1fr auto;
  overflow: hidden;
  padding: calc(var(--header-height) + 64px) clamp(22px, 5.5vw, 104px) 0;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 59%;
  z-index: -1;
  width: 1px;
  content: "";
  background: linear-gradient(transparent, var(--line) 15%, var(--line) 85%, transparent);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: 108px;
  z-index: -1;
  width: 520px;
  height: 16px;
  content: "";
  transform: rotate(-42deg);
  background: linear-gradient(90deg, transparent, var(--purple-bright), #a34aff, transparent);
  filter: blur(5px);
  opacity: 0.65;
  box-shadow: 0 0 42px var(--purple-bright);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(192, 192, 192, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 192, 192, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-light {
  position: absolute;
  top: 10%;
  right: 5%;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: rgba(75, 0, 143, 0.12);
  filter: blur(90px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 900px;
  padding: 44px 36px 76px 0;
}

.eyebrow,
.kicker {
  margin: 0 0 22px;
  color: var(--silver-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  margin-right: 16px;
  color: #fff;
}

.eyebrow span::before {
  display: inline-block;
  width: 22px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  content: "";
  background: var(--purple-bright);
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.86;
  text-transform: uppercase;
}

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

.hero h1 span {
  display: block;
}

.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.12vw, 2px) var(--silver);
}

.hero-intro {
  max-width: 620px;
  margin: 34px 0 0;
  color: var(--silver);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px);
  background: var(--purple);
  box-shadow: 0 0 0 rgba(75, 0, 143, 0);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  background: var(--purple-bright);
  box-shadow: 0 14px 40px rgba(75, 0, 143, 0.3);
}

.text-link {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--silver-muted);
  color: var(--silver);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-mark {
  position: relative;
  z-index: 1;
  display: flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 0 72px 6vw;
}

.mark-frame {
  position: relative;
  width: min(32vw, 460px);
  min-width: 300px;
  overflow: hidden;
  clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.65));
}

.mark-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.6);
}

.mark-frame img {
  width: 100%;
}

.mark-index {
  position: absolute;
  top: 6%;
  right: -3%;
  z-index: -1;
  color: rgba(255, 255, 255, 0.035);
  font-family: Impact, sans-serif;
  font-size: clamp(10rem, 19vw, 22rem);
  line-height: 1;
}

.hero-mark p {
  margin: 18px 0 0;
  color: var(--silver-muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.42em;
}

.status-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-inline: calc(clamp(22px, 5.5vw, 104px) * -1);
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.5);
}

.status-strip > div {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 28px;
  border-right: 1px solid var(--line);
}

.status-strip span {
  color: var(--silver-muted);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status-strip strong {
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-strip .signal > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 16px var(--purple-bright);
  animation: signal 1.8s ease-in-out infinite;
}

.dispatch-ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-bottom: 1px solid rgba(192, 192, 192, 0.18);
  background: var(--purple);
  color: #fff;
  transform: skewY(-1.2deg);
  transform-origin: left;
}

.dispatch-ticker > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 17px 0;
  animation: ticker 24s linear infinite;
}

.dispatch-ticker span {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  white-space: nowrap;
}

.dispatch-ticker i {
  display: block;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  transform: rotate(45deg);
  background: var(--silver-bright);
}

.section {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(100px, 12vw, 190px) clamp(22px, 5.5vw, 86px);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(48px, 7vw, 96px);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-label span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  background: var(--purple);
}

.section-label p {
  margin: 0;
  color: var(--silver-muted);
}

.about-copy {
  display: grid;
  grid-template-columns: minmax(160px, 0.5fr) minmax(420px, 1.2fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 36px;
}

.section h2 {
  font-size: clamp(3.8rem, 7.2vw, 7.8rem);
}

.section h2 em {
  color: var(--silver);
  font-style: normal;
  -webkit-text-stroke: 1px var(--silver);
}

.about-copy .section-intro {
  margin: 0 0 8px;
  color: var(--silver);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-copy .section-intro p {
  margin: 0;
}

.about-copy .section-intro p + p {
  margin-top: 18px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(70px, 9vw, 130px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle {
  position: relative;
  min-height: 260px;
  padding: 38px clamp(24px, 3vw, 48px);
  border-right: 1px solid var(--line);
  transition: background 220ms ease;
}

.principle:last-child {
  border-right: 0;
}

.principle:hover {
  background: linear-gradient(145deg, rgba(75, 0, 143, 0.14), transparent 70%);
}

.principle > span,
.year-tag {
  color: var(--purple-bright);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.principle h3 {
  margin: 62px 0 14px;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.principle p {
  max-width: 320px;
  margin: 0;
  color: var(--silver-muted);
  line-height: 1.65;
}

.valorant {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: clamp(60px, 7vw, 120px);
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(75, 0, 143, 0.14), transparent 42%),
    var(--ink-soft);
}

.valorant::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  content: "";
  opacity: 0.2;
  background-image: linear-gradient(135deg, transparent 45%, var(--line) 45%, var(--line) 46%, transparent 46%);
  background-size: 30px 30px;
}

.valorant-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.section-label-inline {
  margin-bottom: clamp(62px, 8vw, 118px);
}

.valorant-content > p:last-child {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--silver);
  font-size: 1.05rem;
  line-height: 1.75;
}

.valorant-number {
  position: absolute;
  bottom: -0.16em;
  left: -0.05em;
  color: rgba(255, 255, 255, 0.025);
  font-family: Impact, sans-serif;
  font-size: min(38vw, 520px);
  line-height: 0.8;
}

.round-display {
  position: relative;
  z-index: 2;
  align-self: center;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.8);
  box-shadow: 30px 30px 0 rgba(75, 0, 143, 0.08);
}

.round-display::before,
.round-display::after {
  position: absolute;
  width: 38px;
  height: 38px;
  content: "";
}

.round-display::before {
  top: -1px;
  left: -1px;
  border-top: 3px solid var(--purple-bright);
  border-left: 3px solid var(--purple-bright);
}

.round-display::after {
  right: -1px;
  bottom: -1px;
  border-right: 3px solid var(--silver);
  border-bottom: 3px solid var(--silver);
}

.round-top,
.round-bottom {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  color: var(--silver-muted);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.round-top {
  border-bottom: 1px solid var(--line);
}

.round-bottom {
  align-items: flex-start;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.round-bottom strong {
  margin-top: 7px;
  color: var(--silver-bright);
}

.round-score {
  display: grid;
  min-height: 260px;
  grid-template-columns: 1fr 110px 1fr;
  align-items: center;
  justify-items: center;
  padding: 32px;
  font-family: Impact, sans-serif;
  font-size: clamp(5rem, 8vw, 8rem);
}

.round-score img {
  width: 110px;
  height: 130px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}

.roster {
  max-width: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(75, 0, 143, 0.2), transparent 28rem),
    var(--ink);
}

.roster::before {
  position: absolute;
  top: 10%;
  right: -6%;
  width: 34vw;
  height: 34vw;
  content: "05";
  color: transparent;
  font-family: Impact, sans-serif;
  font-size: min(29vw, 440px);
  line-height: 0.9;
  -webkit-text-stroke: 1px rgba(192, 192, 192, 0.055);
}

.roster-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: clamp(40px, 7vw, 110px);
}

.roster-heading > p {
  max-width: 580px;
  margin: 0 0 8px;
  color: var(--silver);
  font-size: 1.05rem;
  line-height: 1.75;
}

.roster-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(70px, 9vw, 130px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.roster-slot {
  position: relative;
  display: flex;
  min-height: 500px;
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
  transition: background 260ms ease, transform 260ms ease;
}

.roster-slot::after {
  position: absolute;
  right: -42%;
  bottom: -25%;
  width: 150%;
  height: 34%;
  content: "";
  transform: rotate(-44deg);
  background: linear-gradient(90deg, transparent, rgba(117, 27, 208, 0.25), transparent);
  transition: transform 300ms ease, opacity 300ms ease;
  opacity: 0.42;
}

.roster-slot:hover {
  z-index: 2;
  transform: translateY(-8px);
  background: linear-gradient(160deg, rgba(75, 0, 143, 0.3), rgba(17, 17, 22, 0.82) 60%);
}

.roster-slot:hover::after {
  transform: translateY(-90px) rotate(-44deg);
  opacity: 1;
}

.slot-number {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--silver-muted);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(8px);
}

.player-photo {
  position: relative;
  height: clamp(460px, 34vw, 620px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 44%, rgba(75, 0, 143, 0.24), transparent 52%),
    #050507;
}

.player-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(to top, rgba(5, 5, 5, 0.94), transparent 45%),
    linear-gradient(145deg, transparent 55%, rgba(75, 0, 143, 0.28));
}

.player-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(0.92) contrast(1.08) brightness(0.8);
  transform: scale(1);
  transition: filter 350ms ease, transform 450ms ease;
}

.roster-slot:hover .player-photo img {
  filter: saturate(1.12) contrast(1.08) brightness(0.98);
  transform: scale(1.02);
}

.player-photo span {
  position: absolute;
  right: 16px;
  bottom: 15px;
  z-index: 2;
  color: var(--silver-muted);
  font-size: 0.54rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.player-meta {
  position: relative;
  z-index: 3;
  padding: 22px 20px 24px;
}

.roster-slot p {
  margin: 0 0 8px;
  color: var(--purple-bright);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.roster-slot h3 {
  margin: 0;
  font-size: clamp(0.9rem, 1.15vw, 1.2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.roster-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 4px;
  border-bottom: 1px solid var(--line);
}

.roster-cta p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--silver-muted);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.roster-cta p span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 15px var(--purple-bright);
  animation: signal 1.8s ease-in-out infinite;
}

.year-one {
  padding-bottom: clamp(100px, 10vw, 160px);
}

.year-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.5fr) 2fr;
  align-items: start;
  gap: 36px;
}

.year-list {
  margin-top: clamp(70px, 9vw, 126px);
  border-top: 1px solid var(--line);
}

.year-item {
  display: grid;
  min-height: 150px;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 28px 12px;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms ease, background 220ms ease;
}

.year-item:hover {
  padding-inline: 28px;
  background: linear-gradient(90deg, rgba(75, 0, 143, 0.13), transparent);
}

.year-index {
  color: var(--silver-muted);
  font-family: Impact, sans-serif;
  font-size: 2.5rem;
}

.year-item h3 {
  margin: 0 0 8px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  text-transform: uppercase;
}

.year-item p {
  max-width: 700px;
  margin: 0;
  color: var(--silver-muted);
  line-height: 1.6;
}

.updates-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 72px;
  padding: clamp(32px, 5vw, 66px);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  background:
    linear-gradient(115deg, rgba(75, 0, 143, 0.62), rgba(17, 17, 22, 0.86) 55%),
    var(--surface);
}

.updates-panel h3 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  text-transform: uppercase;
}

.updates-panel p:last-child {
  max-width: 660px;
  margin: 0;
  color: var(--silver);
  line-height: 1.65;
}

.pulse-mark {
  display: grid;
  width: 90px;
  height: 90px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.pulse-mark span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.08), 0 0 36px rgba(255, 255, 255, 0.5);
  animation: signal 1.8s ease-in-out infinite;
}

.contact {
  display: grid;
  max-width: none;
  min-height: 720px;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(75, 0, 143, 0.18), transparent 50%),
    #08080a;
}

.contact::before {
  position: absolute;
  right: -10%;
  bottom: -35%;
  width: 70%;
  height: 70%;
  content: "";
  transform: rotate(-17deg);
  border-top: 1px solid rgba(117, 27, 208, 0.5);
  box-shadow: 0 -8px 50px rgba(75, 0, 143, 0.22);
}

.contact-mark {
  color: transparent;
  font-family: Impact, sans-serif;
  font-size: clamp(8rem, 19vw, 21rem);
  line-height: 0.8;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  -webkit-text-stroke: 1px rgba(192, 192, 192, 0.12);
}

.contact-copy {
  position: relative;
  z-index: 1;
}

.contact-copy > p:not(.kicker) {
  max-width: 560px;
  margin: 28px 0 32px;
  color: var(--silver);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-secondary {
  border: 1px solid rgba(192, 192, 192, 0.36);
  clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px);
  background: rgba(192, 192, 192, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
  border-color: var(--silver);
  background: rgba(192, 192, 192, 0.1);
}

.contact-email {
  display: inline-block;
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  color: var(--silver-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  transition: color 180ms ease, border-color 180ms ease;
}

.contact-email:hover,
.contact-email:focus-visible {
  border-color: var(--purple-bright);
  color: #fff;
}

.site-footer {
  display: grid;
  min-height: 150px;
  grid-template-columns: auto 1fr minmax(280px, 0.7fr);
  align-items: center;
  gap: 36px;
  padding: 34px clamp(22px, 5.5vw, 88px);
  border-top: 1px solid var(--line);
  background: #030303;
  color: var(--silver-muted);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand-footer {
  color: var(--silver-bright);
}

.brand-footer img {
  width: 38px;
  height: 38px;
}

.site-footer p {
  margin: 0;
}

.site-footer .legal {
  line-height: 1.6;
}

.site-footer .legal a {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--silver-bright);
  font-weight: 900;
}

.home-overview {
  overflow: hidden;
}

.home-overview-heading,
.contact-directory-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(40px, 7vw, 110px);
}

.home-overview-heading > p,
.contact-directory-heading > p {
  max-width: 580px;
  margin: 0 0 8px;
  color: var(--silver);
  font-size: 1.05rem;
  line-height: 1.75;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(70px, 9vw, 126px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.page-card {
  position: relative;
  display: flex;
  min-height: 320px;
  justify-content: flex-end;
  flex-direction: column;
  padding: clamp(28px, 4vw, 54px);
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
  transition: background 240ms ease, transform 240ms ease;
}

.page-card::before {
  position: absolute;
  top: -30%;
  right: -15%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  content: "";
  background: rgba(75, 0, 143, 0.18);
  filter: blur(55px);
  opacity: 0;
  transition: opacity 240ms ease;
}

.page-card:hover,
.page-card:focus-visible {
  z-index: 1;
  transform: translateY(-5px);
  background: linear-gradient(145deg, rgba(75, 0, 143, 0.22), rgba(17, 17, 22, 0.65));
}

.page-card:hover::before,
.page-card:focus-visible::before {
  opacity: 1;
}

.page-card > span,
.contact-card > span {
  position: absolute;
  top: clamp(28px, 4vw, 48px);
  left: clamp(28px, 4vw, 54px);
  color: var(--purple-bright);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.page-card h3,
.contact-card h3 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  text-transform: uppercase;
}

.page-card p,
.contact-card p {
  max-width: 520px;
  margin: 0 0 30px;
  color: var(--silver-muted);
  line-height: 1.65;
}

.page-card strong,
.contact-card strong {
  color: var(--silver-bright);
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-card-store {
  grid-column: 1 / -1;
  min-height: 260px;
  background:
    linear-gradient(90deg, rgba(75, 0, 143, 0.2), transparent 58%),
    rgba(255, 255, 255, 0.012);
}

.home-callout {
  display: flex;
  max-width: none;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(75, 0, 143, 0.34), transparent 55%),
    var(--ink-soft);
}

.home-callout > div > p:last-child {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--silver);
  line-height: 1.7;
}

.home-callout .button {
  flex: 0 0 auto;
}

.subpage-hero {
  position: relative;
  display: grid;
  min-height: min(780px, 78svh);
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: clamp(48px, 8vw, 130px);
  overflow: hidden;
  padding: calc(var(--header-height) + 72px) clamp(22px, 5.5vw, 104px) 84px;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.subpage-hero::after {
  position: absolute;
  right: -12%;
  bottom: -42%;
  z-index: -1;
  width: 62%;
  height: 70%;
  content: "";
  transform: rotate(-18deg);
  border-top: 1px solid rgba(117, 27, 208, 0.5);
  box-shadow: 0 -16px 70px rgba(75, 0, 143, 0.24);
}

.subpage-copy {
  position: relative;
  z-index: 1;
  max-width: 970px;
}

.subpage-copy h1,
.store-copy h1 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4.4rem, 9vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-transform: uppercase;
}

.subpage-copy h1 em,
.store-copy h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: clamp(1px, 0.12vw, 2px) var(--silver);
}

.subpage-copy > p:last-child,
.store-copy > p {
  max-width: 650px;
  margin: 34px 0 0;
  color: var(--silver);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.subpage-emblem {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(75, 0, 143, 0.2), rgba(17, 17, 22, 0.55));
}

.subpage-emblem::before,
.subpage-emblem::after {
  position: absolute;
  width: 42px;
  height: 42px;
  content: "";
}

.subpage-emblem::before {
  top: -1px;
  left: -1px;
  border-top: 3px solid var(--purple-bright);
  border-left: 3px solid var(--purple-bright);
}

.subpage-emblem::after {
  right: -1px;
  bottom: -1px;
  border-right: 3px solid var(--silver);
  border-bottom: 3px solid var(--silver);
}

.subpage-emblem > span {
  position: absolute;
  top: 24px;
  left: 26px;
  color: var(--silver-muted);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.subpage-emblem img {
  width: min(76%, 300px);
  max-height: 310px;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(75, 0, 143, 0.42));
}

.subpage-stat {
  position: relative;
  display: flex;
  min-height: 390px;
  justify-content: center;
  flex-direction: column;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.72);
}

.subpage-stat > span {
  color: var(--purple-bright);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.subpage-stat strong {
  margin: 16px 0 8px;
  font-family: Impact, sans-serif;
  font-size: clamp(7rem, 13vw, 12rem);
  font-weight: 400;
  line-height: 0.82;
}

.subpage-stat p {
  margin: 20px 0 0;
  color: var(--silver-muted);
  line-height: 1.6;
}

.split-callout {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: clamp(56px, 9vw, 150px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(75, 0, 143, 0.22), transparent 52%),
    var(--ink-soft);
}

.split-callout > div:last-child > p {
  margin: 0 0 28px;
  color: var(--silver);
  font-size: 1.05rem;
  line-height: 1.75;
}

.contact-directory {
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(70px, 9vw, 126px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-card {
  position: relative;
  display: flex;
  min-height: 370px;
  justify-content: flex-end;
  flex-direction: column;
  padding: clamp(32px, 4vw, 58px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
  transition: background 220ms ease, transform 220ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-5px);
  background: linear-gradient(145deg, rgba(75, 0, 143, 0.24), rgba(17, 17, 22, 0.7));
}

.contact-card strong {
  overflow-wrap: anywhere;
}

.response-note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--silver-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.response-note span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 15px var(--purple-bright);
}

.response-note p {
  margin: 0;
}

.store-coming-soon {
  position: relative;
  display: grid;
  min-height: calc(100svh - 150px);
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  overflow: hidden;
  padding: calc(var(--header-height) + 70px) clamp(22px, 5.5vw, 104px) 86px;
  isolation: isolate;
}

.store-glow {
  position: absolute;
  right: 4%;
  bottom: 5%;
  z-index: -1;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  background: rgba(75, 0, 143, 0.2);
  filter: blur(100px);
}

.store-copy {
  position: relative;
  z-index: 1;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 11px 16px;
  border: 1px solid rgba(192, 192, 192, 0.24);
  color: var(--silver-bright);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.coming-soon-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 15px var(--purple-bright);
  animation: signal 1.8s ease-in-out infinite;
}

.store-copy > p {
  margin-top: 24px;
}

.store-mark {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(17, 17, 22, 0.65);
}

.store-mark > span {
  display: block;
  margin: 6px 6px 20px;
  color: var(--purple-bright);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.store-mark > div {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  background:
    radial-gradient(circle, rgba(75, 0, 143, 0.28), transparent 64%),
    #08080a;
}

.store-mark img {
  width: 74%;
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 22px 40px rgba(75, 0, 143, 0.5));
}

.store-mark > p {
  margin: 20px 6px 6px;
  color: var(--silver-muted);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
}

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

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

@keyframes signal {
  0%, 100% { opacity: 0.45; transform: scale(0.88); }
  50% { opacity: 1; transform: scale(1); }
}

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

@media (max-width: 1000px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + 54px);
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    padding-bottom: 28px;
  }

  .hero-mark {
    padding: 0 0 70px;
  }

  .mark-frame {
    width: min(70vw, 460px);
  }

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

  .status-strip > div:nth-child(2) {
    border-right: 0;
  }

  .status-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .about-copy,
  .year-heading {
    grid-template-columns: 1fr;
  }

  .about-copy .kicker,
  .year-heading .kicker {
    margin-bottom: -10px;
  }

  .about-copy .section-intro {
    max-width: 680px;
    margin-top: 12px;
  }

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

  .principle {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .principle h3 {
    margin-top: 42px;
  }

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

  .roster-heading {
    grid-template-columns: 1fr;
  }

  .home-overview-heading,
  .contact-directory-heading,
  .split-callout {
    grid-template-columns: 1fr;
  }

  .home-overview-heading > p,
  .contact-directory-heading > p,
  .split-callout > div:last-child {
    max-width: 700px;
  }

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

  .roster-slot {
    min-height: 460px;
  }

  .roster-slot:last-child {
    grid-column: 1 / -1;
  }

  .round-display {
    width: min(100%, 620px);
  }

  .contact {
    min-height: 640px;
    grid-template-columns: 0.42fr 1fr;
  }

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

  .site-footer .legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 740px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    background: rgba(5, 5, 5, 0.88);
    backdrop-filter: blur(16px);
  }

  .brand {
    font-size: 0.76rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 20px clamp(22px, 4vw, 72px) 30px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.97);
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 16px;
    border: 1px solid var(--line);
    text-align: center;
  }

  .hero {
    padding-inline: 22px;
  }

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

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .mark-frame {
    min-width: 0;
    width: min(86vw, 400px);
  }

  .status-strip {
    grid-template-columns: 1fr;
    margin-inline: -22px;
  }

  .status-strip > div {
    justify-content: space-between;
    min-height: 62px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-inline: 22px;
  }

  .section h2 {
    font-size: clamp(3.25rem, 15vw, 5.5rem);
  }

  .section-label {
    margin-bottom: 46px;
  }

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

  .page-card-store {
    grid-column: auto;
  }

  .page-card,
  .contact-card {
    min-height: 300px;
  }

  .home-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .subpage-hero,
  .store-coming-soon {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + 72px);
  }

  .subpage-copy h1,
  .store-copy h1 {
    font-size: clamp(3.8rem, 17vw, 6.8rem);
  }

  .subpage-emblem,
  .subpage-stat {
    min-height: 310px;
  }

  .store-mark {
    width: min(100%, 520px);
  }

  .principle {
    padding-inline: 24px;
  }

  .valorant {
    padding-block: 100px;
  }

  .round-score {
    min-height: 200px;
    grid-template-columns: 1fr 76px 1fr;
    padding: 24px 14px;
    font-size: 4.8rem;
  }

  .round-score img {
    width: 76px;
    height: 96px;
  }

  .year-item {
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }

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

  .roster-slot,
  .roster-slot:last-child {
    min-height: 450px;
    grid-column: auto;
  }

  .player-photo {
    height: clamp(480px, 145vw, 620px);
  }

  .roster-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .year-tag {
    grid-column: 2;
  }

  .updates-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact {
    min-height: 640px;
    grid-template-columns: 1fr;
  }

  .contact-mark {
    position: absolute;
    right: -0.1em;
    bottom: -0.15em;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .contact-copy .button {
    width: 100%;
    padding-inline: 12px;
    font-size: 0.64rem;
  }

  .contact-actions {
    flex-direction: column;
  }

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

  .site-footer .legal {
    grid-column: auto;
  }
}

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

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

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