@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;1,500&display=swap");

:root {
  --ink: #050d18;
  --ink-soft: #0a1830;
  --ink-blue: #0b2240;
  --gold: #d7ad4a;
  --gold-pale: #f3d68d;
  --cyan: #50bfe6;
  --paper: #eee9df;
  --white: #f8f5ef;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(5, 13, 24, 0.16);
  --space: clamp(1.25rem, 4vw, 4.5rem);
  --section-space: clamp(6rem, 12vw, 11rem);
  color-scheme: dark;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: "Manrope", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--gold-pale);
}

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

button {
  color: inherit;
  font: inherit;
}

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

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

.skip-link:focus {
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  padding: 0.8rem 1rem;
  background: var(--white);
  color: var(--ink);
}

#starfield,
.noise,
.cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#starfield {
  z-index: 0;
  opacity: 0.58;
}

.noise {
  z-index: 90;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.22) 0 0.5px, transparent 0.8px),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.16) 0 0.45px, transparent 0.75px);
  background-size: 5px 7px, 7px 5px;
  mix-blend-mode: overlay;
}

.cursor-glow {
  z-index: 1;
  width: 36rem;
  height: 36rem;
  inset: auto;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(42, 107, 170, 0.15), transparent 66%);
  transition: opacity 0.3s ease;
}

.intro {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1rem;
  background: var(--ink);
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1) 0.6s;
}

.intro img {
  width: 5rem;
  opacity: 0;
  animation: introMark 0.9s ease forwards 0.15s;
}

.intro-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: introLine 0.9s ease forwards 0.45s;
}

.intro p {
  margin: 0;
  color: var(--gold-pale);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  opacity: 0;
  animation: introMark 0.8s ease forwards 0.7s;
}

body.is-loaded .intro {
  transform: translateY(-100%);
}

@keyframes introMark {
  to { opacity: 1; }
}

@keyframes introLine {
  to { width: 11rem; }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 5.25rem;
  padding: 0 var(--space);
  border-bottom: 1px solid transparent;
  transition: min-height 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  min-height: 4.3rem;
  background: rgba(5, 13, 24, 0.86);
  border-color: var(--line-dark);
  backdrop-filter: blur(20px);
}

.wordmark {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 0.72rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.wordmark img {
  width: 2.1rem;
  height: 2.1rem;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.8rem);
}

.desktop-nav a {
  position: relative;
  padding: 0.8rem 0;
  color: rgba(248, 245, 239, 0.7);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.5rem;
  height: 1px;
  background: var(--gold);
  transition: right 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  right: 0;
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.language-toggle,
.menu-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-toggle {
  padding: 0.75rem 0.4rem;
  color: rgba(248, 245, 239, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 7.9rem;
  padding: 0.82rem 1rem;
  border: 1px solid rgba(215, 173, 74, 0.52);
  color: var(--gold-pale);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-cta:hover {
  color: var(--ink);
  background: var(--gold);
}

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.7rem;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0.35rem 0;
  background: var(--white);
  transition: transform 0.25s ease;
}

.mobile-menu {
  position: fixed;
  inset: 4.25rem 0 0;
  display: none;
  padding: 3rem var(--space);
  background: rgba(5, 13, 24, 0.98);
}

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 9vw, 4rem);
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroIn 2.1s cubic-bezier(0.16, 1, 0.3, 1) forwards 1.1s;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(5, 13, 24, 0.35), rgba(5, 13, 24, 0.14) 52%, rgba(5, 13, 24, 0.85)),
    linear-gradient(90deg, rgba(5, 13, 24, 0.78), transparent 52%);
}

@keyframes heroIn {
  to { transform: scale(1); }
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(215, 173, 74, 0.25);
  border-radius: 50%;
  transform: rotate(-13deg);
}

.orbit-one {
  width: 72vw;
  height: 22vw;
  right: -20vw;
  bottom: 8vh;
}

.orbit-two {
  width: 45vw;
  height: 15vw;
  right: -2vw;
  bottom: 12vh;
  border-color: rgba(80, 191, 230, 0.2);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100svh;
  padding: 8rem var(--space) 5.5rem;
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--gold-pale);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-title {
  width: min-content;
  margin: 0;
  color: var(--white);
  font-size: clamp(5.8rem, 17vw, 15rem);
  font-weight: 300;
  letter-spacing: -0.075em;
  line-height: 0.72;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-line > span {
  display: block;
  transform: translateY(110%);
  animation: titleUp 1.3s cubic-bezier(0.16, 1, 0.3, 1) forwards 1.1s;
}

.title-star {
  margin-left: clamp(4rem, 15vw, 16rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 214, 141, 0.72);
}

.title-star > span {
  animation-delay: 1.22s;
}

@keyframes titleUp {
  to { transform: translateY(0); }
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  width: min(68rem, 100%);
  margin-top: 3rem;
}

.hero-statement {
  max-width: 34rem;
  margin: 0;
  color: rgba(248, 245, 239, 0.76);
  font-family: "Playfair Display", "Songti SC", serif;
  font-size: clamp(1.2rem, 2.3vw, 2rem);
  line-height: 1.45;
}

.circle-link {
  display: grid;
  place-items: center;
  width: 7.5rem;
  height: 7.5rem;
  border: 1px solid rgba(215, 173, 74, 0.55);
  border-radius: 50%;
  color: var(--gold-pale);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.circle-link b {
  font-size: 1rem;
  font-weight: 400;
}

.circle-link:hover {
  color: var(--ink);
  background: var(--gold);
  transform: rotate(-8deg);
}

.hero-rail {
  position: absolute;
  right: var(--space);
  bottom: 1.7rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(248, 245, 239, 0.44);
  font-size: 0.56rem;
  letter-spacing: 0.2em;
}

.hero-rail i {
  width: 2rem;
  height: 1px;
  background: rgba(215, 173, 74, 0.4);
}

.section {
  position: relative;
  padding: var(--section-space) var(--space);
  background: var(--ink);
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.section-dark {
  background: #06111f;
}

.section-index {
  display: flex;
  gap: 0.55rem;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  color: rgba(248, 245, 239, 0.47);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-light .section-index {
  color: rgba(5, 13, 24, 0.5);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: clamp(3rem, 9vw, 10rem);
}

.display-copy {
  margin: 0;
  font-family: "Playfair Display", "Songti SC", serif;
  font-size: clamp(3rem, 7.6vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.lead {
  max-width: 43rem;
  margin: clamp(2rem, 4vw, 4rem) 0 0;
  color: rgba(248, 245, 239, 0.68);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 300;
  line-height: 1.8;
}

.section-light .lead {
  color: rgba(5, 13, 24, 0.67);
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(5rem, 10vw, 9rem);
  border-top: 1px solid var(--line-dark);
}

.value-strip article {
  min-height: 17rem;
  padding: 1.4rem clamp(1rem, 2vw, 2rem);
  border-right: 1px solid var(--line-dark);
}

.value-strip article:first-child {
  padding-left: 0;
}

.value-strip article:last-child {
  border: 0;
}

.value-strip span,
.panel-number,
.product-meta > span,
.collector-list li > span:first-child,
.club-tiers article > span,
.partner-list article > span,
.craft-image figcaption span:first-child {
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
}

.value-strip h3 {
  margin: 4.8rem 0 0.8rem;
  font-family: "Playfair Display", "Songti SC", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 500;
}

.value-strip p {
  max-width: 14rem;
  margin: 0;
  color: rgba(248, 245, 239, 0.52);
  font-size: 0.8rem;
  line-height: 1.7;
}

.universe {
  overflow: hidden;
}

.universe::before {
  content: "";
  position: absolute;
  top: -20vw;
  right: -10vw;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(80, 191, 230, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 6vw rgba(80, 191, 230, 0.015), 0 0 0 12vw rgba(215, 173, 74, 0.012);
}

.universe-heading {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: end;
  gap: 4rem;
}

.universe-heading .lead {
  margin: 0 0 0.8rem;
}

.universe-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 6rem;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.universe-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 35rem;
  padding: clamp(1.8rem, 4vw, 4rem);
  overflow: hidden;
  background: var(--ink-soft);
}

.universe-panel::before {
  content: "";
  position: absolute;
  right: -15%;
  bottom: -20%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(215, 173, 74, 0.18);
  border-radius: 50%;
}

.star-panel::before {
  border-color: rgba(80, 191, 230, 0.22);
}

.universe-panel h3 {
  max-width: 10ch;
  margin: 0 0 1.3rem;
  font-family: "Playfair Display", "Songti SC", serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1;
}

.universe-panel p:not(.eyebrow) {
  max-width: 34rem;
  color: rgba(248, 245, 239, 0.6);
  font-size: 0.92rem;
  line-height: 1.8;
}

.panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.panel-tags span {
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(248, 245, 239, 0.2);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
}

.collection-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
}

.sport-switch {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-dark);
}

.sport-switch button {
  position: relative;
  padding: 0.9rem 1.2rem;
  border: 0;
  background: transparent;
  color: rgba(248, 245, 239, 0.38);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  cursor: pointer;
}

.sport-switch button[aria-selected="true"] {
  color: var(--gold-pale);
}

.sport-switch button[aria-selected="true"]::after {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: -1px;
  height: 1px;
  background: var(--gold);
}

.sport-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  align-items: end;
  gap: 3rem;
  margin: clamp(4rem, 8vw, 8rem) 0 3rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--line-dark);
}

.sport-origin {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--gold);
  font-size: 0.57rem;
  letter-spacing: 0.18em;
}

.sport-intro h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 500;
}

.sport-intro > p {
  max-width: 37rem;
  margin: 0 0 0.65rem;
  color: rgba(248, 245, 239, 0.58);
  font-size: 0.92rem;
  line-height: 1.8;
}

.sport-stat {
  text-align: right;
}

.sport-stat span {
  display: block;
  color: var(--gold-pale);
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  line-height: 1;
}

.sport-stat small {
  color: rgba(248, 245, 239, 0.45);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
}

.product-stage {
  position: relative;
}

.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(19rem, 30vw);
  gap: 1.2rem;
  overflow-x: auto;
  padding: 0.5rem 0 1.5rem;
  scrollbar-width: none;
  cursor: grab;
  scroll-snap-type: x mandatory;
}

.product-rail:active {
  cursor: grabbing;
}

.product-rail::-webkit-scrollbar {
  display: none;
}

.product-card {
  position: relative;
  min-height: 39rem;
  overflow: hidden;
  background: var(--ink-soft);
  scroll-snap-align: start;
  transform-style: preserve-3d;
  transition: opacity 0.35s ease, transform 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8rem 1.5rem 1.6rem;
  background: linear-gradient(transparent, rgba(5, 13, 24, 0.98));
  transform: translateZ(25px);
}

.product-meta h3 {
  margin: 0.45rem 0 0.4rem;
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  font-weight: 500;
}

.product-meta p {
  margin: 0;
  color: rgba(248, 245, 239, 0.55);
  font-size: 0.72rem;
}

.drag-hint {
  margin: 1.3rem 0 0;
  color: rgba(248, 245, 239, 0.38);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.craft-heading {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: end;
  gap: 5rem;
}

.craft-heading .lead {
  margin-bottom: 0.7rem;
}

.craft-gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  margin-top: clamp(5rem, 10vw, 9rem);
}

.craft-image {
  position: relative;
  min-height: 19rem;
  margin: 0;
  overflow: hidden;
  background: #c8c2b7;
}

.craft-large {
  grid-row: 1 / 3;
  min-height: 39rem;
}

.craft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.03);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.craft-image:hover img {
  transform: scale(1.025);
  filter: saturate(0.96) contrast(1);
}

.craft-image figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: rgba(5, 13, 24, 0.78);
  color: var(--white);
  backdrop-filter: blur(12px);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capability-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  color: rgba(5, 13, 24, 0.54);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capability-line i {
  flex: 1;
  height: 1px;
  background: var(--line-light);
}

.collector {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  min-height: 55rem;
  padding: 0;
  background: #030812;
}

.collector-media {
  min-height: 55rem;
  overflow: hidden;
}

.collector-media picture,
.collector-media img {
  width: 100%;
  height: 100%;
}

.collector-media img {
  object-fit: cover;
}

.collector-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-space) var(--space);
}

.collector-copy .section-index {
  margin-bottom: 4rem;
}

.collector-copy .display-copy {
  font-size: clamp(3rem, 5.6vw, 6rem);
}

.collector-list {
  margin: 3.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.collector-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(248, 245, 239, 0.67);
  font-size: 0.8rem;
}

.clubs {
  overflow: hidden;
}

.clubs-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  align-items: end;
  gap: 5rem;
}

.clubs-heading .lead {
  margin-bottom: 0.5rem;
}

.club-visual {
  position: relative;
  margin-top: 6rem;
  overflow: hidden;
}

.club-visual > img {
  width: 100%;
  max-height: 48rem;
  object-fit: cover;
}

.club-badge {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: grid;
  place-items: center;
  width: 10rem;
  height: 10rem;
  border: 1px solid rgba(215, 173, 74, 0.45);
  border-radius: 50%;
  background: rgba(5, 13, 24, 0.75);
  backdrop-filter: blur(15px);
}

.club-badge img {
  width: 3.8rem;
}

.club-badge span {
  font-size: 0.46rem;
  letter-spacing: 0.16em;
}

.club-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
  border-top: 1px solid var(--line-dark);
}

.club-tiers article {
  min-height: 16rem;
  padding: 1.6rem 2rem 1.6rem 0;
  border-right: 1px solid var(--line-dark);
}

.club-tiers article + article {
  padding-left: 2rem;
}

.club-tiers article:last-child {
  border-right: 0;
}

.club-tiers h3 {
  margin: 3.5rem 0 0.8rem;
  color: var(--gold-pale);
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.club-tiers p {
  max-width: 21rem;
  margin: 0;
  color: rgba(248, 245, 239, 0.52);
  font-size: 0.77rem;
  line-height: 1.7;
}

.partnerships {
  color: var(--ink);
  background: var(--paper);
}

.partnerships .section-index {
  color: rgba(5, 13, 24, 0.5);
}

.partnership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4rem, 8vw, 9rem);
}

.partner-list {
  border-top: 1px solid var(--line-light);
}

.partner-list article {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 1rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line-light);
  transition: padding 0.3s ease;
}

.partner-list article:hover {
  padding-left: 0.7rem;
}

.partner-list h3 {
  margin: 0 0 0.45rem;
  font-family: "Playfair Display", "Songti SC", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.partner-list p {
  margin: 0;
  color: rgba(5, 13, 24, 0.55);
  font-size: 0.78rem;
  line-height: 1.6;
}

.partner-list b {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 400;
}

.contact {
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  text-align: center;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at center, transparent, rgba(5, 13, 24, 0.2) 45%, var(--ink) 82%);
}

.contact-world {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.contact-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  max-width: 70rem;
}

.contact-mark {
  width: 6rem;
  margin-bottom: 2rem;
}

.contact-title {
  margin: 0;
  font-family: "Playfair Display", "Songti SC", serif;
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.contact .lead {
  max-width: 40rem;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(32rem, 100%);
  margin-top: 3rem;
  padding: 1.3rem 0;
  border-top: 1px solid rgba(215, 173, 74, 0.55);
  border-bottom: 1px solid rgba(215, 173, 74, 0.55);
  color: var(--gold-pale);
  font-size: clamp(0.78rem, 1.4vw, 1rem);
  letter-spacing: 0.08em;
}

.contact-link b {
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.contact-link:hover b {
  transform: translate(0.3rem, -0.3rem);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  align-items: end;
  padding: 2rem var(--space);
  border-top: 1px solid var(--line-dark);
  background: #030812;
}

.site-footer div {
  display: grid;
  gap: 0.45rem;
}

.site-footer span {
  font-size: 0.68rem;
  letter-spacing: 0.09em;
}

.site-footer small {
  color: rgba(248, 245, 239, 0.38);
  font-size: 0.58rem;
}

.site-footer > a {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html[data-lang="zh"] .display-copy,
html[data-lang="zh"] .hero-statement,
html[data-lang="zh"] .universe-panel h3,
html[data-lang="zh"] .contact-title {
  letter-spacing: -0.03em;
}

@media (max-width: 980px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

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

  .menu-toggle {
    display: block;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .hero-title {
    font-size: clamp(5rem, 18vw, 10rem);
  }

  .manifesto-grid,
  .universe-heading,
  .craft-heading,
  .clubs-heading,
  .partnership-grid {
    grid-template-columns: 1fr;
  }

  .value-strip {
    grid-template-columns: 1fr 1fr;
  }

  .value-strip article:nth-child(2) {
    border-right: 0;
  }

  .value-strip article:nth-child(n+3) {
    border-top: 1px solid var(--line-dark);
  }

  .universe-panels {
    grid-template-columns: 1fr;
  }

  .universe-panel {
    min-height: 30rem;
  }

  .sport-intro {
    grid-template-columns: 1fr 1fr;
  }

  .sport-intro > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .product-rail {
    grid-auto-columns: minmax(18rem, 48vw);
  }

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

  .collector-media {
    min-height: 34rem;
  }
}

@media (max-width: 700px) {
  :root {
    --space: 1.2rem;
    --section-space: 6rem;
  }

  .site-header {
    min-height: 4.25rem;
  }

  .wordmark span {
    font-size: 0.66rem;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 7rem;
  }

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

  .hero-title {
    font-size: clamp(4.5rem, 25vw, 7.5rem);
  }

  .title-star {
    margin-left: 1.5rem;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .circle-link {
    width: 5.5rem;
    height: 5.5rem;
  }

  .hero-rail {
    display: none;
  }

  .section-index {
    margin-bottom: 3rem;
  }

  .display-copy {
    font-size: clamp(2.9rem, 14vw, 4.7rem);
  }

  .value-strip {
    grid-template-columns: 1fr;
  }

  .value-strip article,
  .value-strip article:first-child {
    min-height: auto;
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .value-strip article:nth-child(n+3) {
    border-top: 0;
  }

  .value-strip h3 {
    margin-top: 2.5rem;
  }

  .universe-panel {
    min-height: 32rem;
  }

  .collection-header {
    grid-template-columns: 1fr;
  }

  .sport-switch {
    justify-self: stretch;
    justify-content: space-between;
  }

  .sport-intro {
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
  }

  .sport-stat span {
    font-size: 3rem;
  }

  .product-rail {
    grid-auto-columns: 82vw;
  }

  .product-card {
    min-height: 34rem;
  }

  .craft-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .craft-large {
    grid-row: auto;
    min-height: 27rem;
  }

  .craft-image {
    min-height: 20rem;
  }

  .capability-line {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .capability-line i {
    min-width: 2rem;
  }

  .collector-media {
    min-height: 27rem;
  }

  .collector-copy {
    padding: 5rem var(--space);
  }

  .club-badge {
    right: 1rem;
    bottom: 1rem;
    width: 7rem;
    height: 7rem;
  }

  .club-badge img {
    width: 2.7rem;
  }

  .club-tiers {
    grid-template-columns: 1fr;
  }

  .club-tiers article,
  .club-tiers article + article {
    min-height: auto;
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .club-tiers h3 {
    margin-top: 2rem;
  }

  .partnership-grid {
    gap: 4rem;
  }

  .contact-title {
    font-size: clamp(3.8rem, 20vw, 6rem);
  }

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

  .site-footer div:nth-child(2) {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

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

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

  .intro {
    display: none;
  }

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