:root {
  --black: #050505;
  --panel: #11100d;
  --panel-2: #191610;
  --gold: #d7a84d;
  --gold-2: #f3d58c;
  --text: #f7f1e4;
  --muted: #b9ad98;
  --line: rgba(215, 168, 77, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 14%, rgba(215, 168, 77, 0.16), transparent 26rem),
    linear-gradient(180deg, #070604 0%, #0d0b08 45%, #050505 100%);
  font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", Arial, sans-serif;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.74);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 40px;
  color: #171107;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-radius: 6px;
  font-weight: 900;
  letter-spacing: 1px;
}

.brand-copy {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #e9dcc4;
  font-size: 17px;
}

.main-nav a {
  position: relative;
  padding: 26px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  content: "";
}

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

.header-cta,
.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.primary-btn {
  color: #161006;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 10px 30px rgba(215, 168, 77, 0.22);
}

.ghost-btn {
  color: var(--text);
  border: 1px solid rgba(247, 241, 228, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.header-cta:hover,
.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(560px, 0.9fr) minmax(380px, 0.55fr);
  align-items: center;
  min-height: 900px;
  padding: 120px 72px 86px;
  overflow: hidden;
  background: #050505;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-video {
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(1.26) contrast(1.18) brightness(0.88);
  transform: scale(1.1);
  animation: videoBreath 7s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.62) 37%, rgba(5, 5, 5, 0.1) 68%, rgba(5, 5, 5, 0.38) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, #050505 100%);
  pointer-events: none;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 3;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: 96px;
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: 1px;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.48);
}

.hero-lede {
  max-width: 680px;
  margin: 30px 0 0;
  color: #d8ccb8;
  font-size: 20px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.hero-panel {
  justify-self: end;
  width: 330px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 9, 7, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel div:last-child {
  border-bottom: 0;
}

.hero-panel strong {
  color: var(--gold-2);
  font-size: 52px;
  line-height: 1;
}

.hero-panel span {
  color: var(--muted);
  font-size: 15px;
}

.section {
  padding: 104px 72px;
}

.era-scroll {
  position: relative;
  min-height: 100vh;
  scroll-margin-top: 88px;
  background: #050505;
}

.era-cinema {
  overflow: clip;
}

.era-cinema-stage {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 36%, rgba(215, 168, 77, 0.18), transparent 28rem),
    linear-gradient(180deg, #050505, #0a0805 54%, #050505);
}

.era-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.era-slide {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  opacity: 1;
  transform: translate3d(calc(var(--era-offset, var(--era-slide-index, 0)) * 100% + var(--era-drag-x, 0px)), 0, 0);
  transition: transform 760ms cubic-bezier(0.22, 0.78, 0.24, 1), opacity 520ms ease;
  will-change: transform;
}

.era-slideshow.is-dragging {
  cursor: grabbing;
}

.era-slideshow.is-dragging .era-slide {
  transition: none;
}

.era-slide:nth-child(1) {
  --era-slide-index: 0;
}

.era-slide:nth-child(2) {
  --era-slide-index: 1;
}

.era-slide:nth-child(3) {
  --era-slide-index: 2;
}

.era-slide:nth-child(4) {
  --era-slide-index: 3;
}

.era-slide.is-active {
  z-index: 1;
}

.era-slide picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.era-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  transform: scale(1.02);
  filter: saturate(1.06) contrast(1.06) brightness(0.86);
  transition: transform 6200ms ease;
}

.era-slide.is-active .era-slide-image {
  transform: scale(1.055) translate3d(-8px, 3px, 0);
}
.era-slide figcaption {
  position: absolute;
  right: 56px;
  bottom: 42px;
  z-index: 2;
  color: rgba(245, 239, 228, 0.74);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.76);
}

.era-slide-message {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(78vw, 860px);
  color: #fff8eb;
  text-align: center;
  transform: translate(-50%, -50%);
  text-shadow:
    0 4px 24px rgba(0, 0, 0, 0.86),
    0 18px 60px rgba(0, 0, 0, 0.78);
}

.era-slide-message span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.era-slide-message strong {
  display: block;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.era-film-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0.32), transparent 30rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.12) 34%, rgba(0, 0, 0, 0.06) 66%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.34) 100%);
  pointer-events: none;
}

.era-frame {
  position: absolute;
  top: 50%;
  right: max(8vw, 82px);
  width: min(42vw, 620px);
  height: min(88vh, 820px);
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  opacity: var(--frame-opacity, 0);
  transform:
    translate3d(var(--frame-x, 0), calc(-50% + var(--frame-y, 0px)), 0)
    scale(var(--frame-scale, 1));
  transform-origin: 52% 56%;
  filter:
    saturate(var(--frame-saturation, 1))
    contrast(1.08)
    brightness(var(--frame-brightness, 0.82));
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.64),
    0 0 88px var(--frame-glow, rgba(215, 168, 77, 0.22));
  transition: opacity 80ms linear, transform 80ms linear, filter 80ms linear;
  will-change: opacity, transform, filter;
}

.era-cinema-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 132px 72px 0;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.78);
}

.era-cinema-copy .section-kicker {
  margin-bottom: 20px;
  color: var(--era-active-color, var(--gold-2));
  text-align: left;
}

.era-cinema-copy h2 {
  margin: 0;
  font-size: 58px;
  line-height: 1.12;
  letter-spacing: 1px;
}

.era-cinema-copy p:not(.section-kicker) {
  margin: 24px 0 0;
  color: #d7ccb9;
  font-size: 19px;
  line-height: 1.9;
}

.era-progress {
  position: absolute;
  z-index: 3;
  right: 72px;
  bottom: 54px;
  left: 72px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.era-progress span {
  display: block;
  width: calc(var(--era-progress, 0) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #e63f45, #f3d58c, #f2f2f2, #32b66b);
  box-shadow: 0 0 20px rgba(243, 213, 140, 0.44);
}

.canvas-journey {
  position: relative;
  min-height: 100vh;
  padding: 78px 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(215, 168, 77, 0.18), transparent 24rem),
    radial-gradient(circle at 20% 72%, rgba(255, 255, 255, 0.06), transparent 20rem),
    linear-gradient(180deg, #050505, #0b0906 54%, #050505);
}

.canvas-journey::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(215, 168, 77, 0.08), transparent 24%, rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 120px);
  opacity: 0.45;
  content: "";
}

.journey-kicker {
  position: relative;
  z-index: 2;
  margin: 0 auto 20px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-align: center;
  text-transform: uppercase;
}

.journey-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 22px;
  text-align: center;
}

.journey-copy h2 {
  margin: 0;
  font-size: 50px;
  line-height: 1.18;
}

.journey-copy p:not(.section-kicker) {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

#journeyCanvas {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 1320px);
  height: min(55vw, 560px);
  min-height: 440px;
  margin: 0 auto;
  border: 1px solid rgba(215, 168, 77, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow);
  transform: translateZ(0);
}

.era-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.72fr) minmax(540px, 1fr);
  align-items: center;
  min-height: 100vh;
  padding: 110px 72px;
  overflow: hidden;
  isolation: isolate;
}

.era-panel::before,
.era-panel::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
}

.era-panel::before {
  background:
    radial-gradient(circle at 74% 48%, var(--era-glow), transparent 26rem),
    linear-gradient(110deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.72) 42%, rgba(5, 5, 5, 0.18) 100%),
    var(--era-bg);
}

.era-panel::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(215, 168, 77, 0.12), transparent 28%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 110px);
  opacity: 0.36;
}

.era-united {
  --era-bg: linear-gradient(135deg, #1a0505, #050505 58%, #170b05);
  --era-glow: rgba(190, 15, 28, 0.42);
  --era-accent: #e63f45;
}

.era-madrid {
  --era-bg: linear-gradient(135deg, #191612, #050505 52%, #291d08);
  --era-glow: rgba(243, 213, 140, 0.35);
  --era-accent: #f3d58c;
}

.era-juventus {
  --era-bg: linear-gradient(135deg, #0f0f0f, #050505 54%, #1c1c1c);
  --era-glow: rgba(230, 230, 230, 0.28);
  --era-accent: #f2f2f2;
}

.era-portugal {
  --era-bg: linear-gradient(135deg, #071707, #050505 48%, #1f0607);
  --era-glow: rgba(0, 150, 76, 0.34);
  --era-accent: #32b66b;
}

.era-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.era-copy .section-kicker {
  margin-bottom: 20px;
  color: var(--era-accent);
  text-align: left;
}

.era-copy h2 {
  margin: 0;
  font-size: 58px;
  line-height: 1.12;
  letter-spacing: 1px;
}

.era-copy p:not(.section-kicker) {
  margin: 24px 0 0;
  color: #d7ccb9;
  font-size: 19px;
  line-height: 1.9;
}

.era-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 680px;
  perspective: 1200px;
}

.era-visual::before {
  position: absolute;
  right: 2%;
  bottom: 7%;
  width: min(42vw, 620px);
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.68), transparent 70%);
  filter: blur(8px);
  transform: rotateX(62deg);
  content: "";
}

.era-visual img {
  width: min(38vw, 560px);
  height: min(78vh, 760px);
  object-fit: cover;
  object-position: var(--era-image-position, center top);
  border: 1px solid rgba(243, 213, 140, 0.24);
  border-radius: 8px;
  box-shadow:
    0 42px 95px rgba(0, 0, 0, 0.62),
    0 0 80px color-mix(in srgb, var(--era-accent) 28%, transparent);
  transform:
    translate3d(var(--era-shift, 80px), var(--era-rise, 0px), 0)
    scale(var(--era-scale, 0.9))
    rotateY(var(--era-tilt, -10deg));
  transform-origin: 58% 54%;
  filter: saturate(var(--era-saturation, 0.92)) contrast(1.08) brightness(var(--era-brightness, 0.78));
  opacity: var(--era-opacity, 0.58);
  transition: filter 120ms linear, opacity 120ms linear, transform 120ms linear;
  will-change: transform, filter, opacity;
}

.era-madrid .era-visual img {
  --era-image-position: center top;
}

.era-juventus .era-visual img,
.era-portugal .era-visual img {
  object-position: center top;
}

.section-kicker {
  text-align: center;
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.18;
}

.section-heading p {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.legacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.legacy-card,
.moment-card,
.honor-card,
.slide-card {
  border: 1px solid rgba(215, 168, 77, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow: var(--shadow);
}

.legacy-card {
  min-height: 245px;
  padding: 34px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.legacy-card:hover {
  transform: translateY(-8px);
  border-color: rgba(243, 213, 140, 0.52);
  background:
    linear-gradient(145deg, rgba(215, 168, 77, 0.15), rgba(255, 255, 255, 0.018)),
    var(--panel);
}

.legacy-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
}

.legacy-card h3 {
  margin: 58px 0 14px;
  font-size: 25px;
}

.legacy-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.honors {
  background:
    linear-gradient(180deg, rgba(215, 168, 77, 0.05), rgba(255, 255, 255, 0)),
    #080705;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
}

.tab {
  min-width: 128px;
  padding: 13px 22px;
  color: var(--text);
  border: 1px solid rgba(247, 241, 228, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.tab:hover,
.tab.active {
  color: #171107;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  transform: translateY(-2px);
}

.honor-stage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1180px;
  min-height: 190px;
  margin: 0 auto;
}

.honor-card {
  padding: 28px;
  overflow: hidden;
}

.honor-card strong {
  display: block;
  color: var(--gold-2);
  font-size: 44px;
  line-height: 1;
}

.honor-card span {
  display: block;
  margin-top: 16px;
  color: var(--text);
  font-size: 19px;
  font-weight: 800;
}

.honor-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.timeline-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.year-btn {
  padding: 18px 12px;
  color: var(--muted);
  border: 1px solid rgba(215, 168, 77, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.year-btn:hover,
.year-btn.active {
  color: var(--gold-2);
  border-color: rgba(243, 213, 140, 0.75);
  transform: translateY(-4px);
}

.moment-card {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 28px;
  min-height: 245px;
  padding: 38px;
  background:
    linear-gradient(120deg, rgba(215, 168, 77, 0.15), rgba(255, 255, 255, 0.02)),
    var(--panel-2);
}

.moment-year {
  color: var(--gold-2);
  font-size: 78px;
  font-weight: 900;
  line-height: 1;
}

.moment-card h3 {
  margin: 4px 0 14px;
  font-size: 34px;
}

.moment-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.carousel {
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  align-items: center;
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
}

.slide-window {
  overflow: hidden;
  border-radius: 8px;
}

.slide-track {
  display: flex;
  transition: transform 360ms ease;
}

.slide-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 0.44fr 1fr;
  min-height: 380px;
  overflow: hidden;
}

.slide-art {
  display: grid;
  place-items: center;
  color: #161006;
  background:
    radial-gradient(circle at 55% 38%, rgba(255, 255, 255, 0.72), transparent 0.25rem),
    radial-gradient(circle at 50% 50%, rgba(243, 213, 140, 0.74), transparent 10rem),
    linear-gradient(135deg, var(--gold-2), #b7812d);
  font-size: 96px;
  font-weight: 900;
}

.slide-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px;
}

.slide-copy h3 {
  margin: 0;
  font-size: 42px;
}

.slide-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.carousel-btn {
  width: 62px;
  height: 62px;
  color: var(--gold-2);
  border: 1px solid rgba(215, 168, 77, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.carousel-btn:hover {
  background: rgba(215, 168, 77, 0.13);
  transform: scale(1.06);
}

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.dot {
  width: 38px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.dot.active {
  background: var(--gold);
}

.join {
  padding: 110px 72px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.28), rgba(5, 5, 5, 0.86)),
    radial-gradient(circle at 20% 50%, rgba(215, 168, 77, 0.2), transparent 24rem),
    #0c0a07;
}

.join-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.join h2 {
  margin: 0 0 34px;
  font-size: 48px;
  line-height: 1.25;
}

.future-stage {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #050505;
}

.future-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.12) contrast(1.08) brightness(0.82);
  pointer-events: none;
}

.future-video-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.22) 44%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.48) 100%);
  pointer-events: none;
}

.future-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  max-width: 760px;
  padding: 0 72px 18vh;
  pointer-events: none;
}

.future-copy p {
  position: relative;
  margin: 0;
  color: transparent;
  background:
    linear-gradient(90deg, #84f7ff 0%, #f8fbff 38%, #ff4fd8 72%, #8b5cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 60px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 12px;
  text-transform: uppercase;
  text-shadow:
    2px 0 0 rgba(0, 246, 255, 0.72),
    -2px 0 0 rgba(255, 45, 214, 0.7),
    0 12px 34px rgba(0, 0, 0, 0.78),
    0 0 28px rgba(0, 246, 255, 0.46),
    0 0 42px rgba(255, 45, 214, 0.36);
  filter: drop-shadow(0 0 18px rgba(0, 246, 255, 0.3));
}

.future-copy p::before {
  position: absolute;
  inset: 0;
  color: transparent;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0 1px, transparent 1px 7px),
    linear-gradient(90deg, #00f6ff, #ff2dd6);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.32;
  transform: translate(3px, -2px);
  content: "未来已来";
}

.future-copy p::after {
  position: absolute;
  right: -46px;
  bottom: -18px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(0, 246, 255, 0.95), rgba(255, 45, 214, 0.68), transparent);
  box-shadow:
    0 0 16px rgba(0, 246, 255, 0.68),
    0 0 28px rgba(255, 45, 214, 0.44);
  content: "";
}

.fan-page {
  background:
    radial-gradient(circle at 78% 12%, rgba(49, 182, 107, 0.16), transparent 23rem),
    radial-gradient(circle at 18% 18%, rgba(215, 168, 77, 0.18), transparent 28rem),
    linear-gradient(180deg, #070604 0%, #0d0b08 44%, #050505 100%);
}

.fan-main {
  min-height: 100vh;
}

.fan-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 42px;
  align-items: end;
  min-height: 720px;
  padding: 132px 72px 78px;
  overflow: hidden;
}

.fan-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.58) 48%, rgba(5, 5, 5, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.18) 0%, #050505 100%),
    url("assets/hero-signature-celebration.png") center 26% / cover no-repeat;
  filter: saturate(1.08) contrast(1.08) brightness(0.82);
  transform: scale(1.03);
}

.fan-hero-copy,
.fan-boost {
  position: relative;
  z-index: 2;
}

.fan-hero-copy {
  max-width: 780px;
}

.fan-hero-copy h1 {
  margin: 0;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 20px 58px rgba(0, 0, 0, 0.68);
}

.fan-hero-copy p:not(.section-kicker) {
  max-width: 650px;
  margin: 26px 0 0;
  color: #d8ccb8;
  font-size: 19px;
  line-height: 1.85;
}

.fan-boost {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(243, 213, 140, 0.3);
  border-radius: 8px;
  background: rgba(8, 7, 5, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.fan-boost span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.fan-boost strong {
  display: block;
  margin: 10px 0 22px;
  color: var(--gold-2);
  font-size: 72px;
  line-height: 1;
}

.boost-button {
  width: 100%;
  min-height: 50px;
  color: #151007;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 12px 34px rgba(215, 168, 77, 0.24);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.boost-button:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.boost-button:disabled,
.boost-button.is-disabled {
  color: rgba(247, 241, 228, 0.58);
  background: linear-gradient(135deg, #4d4a43, #2d2b27);
  box-shadow: none;
  cursor: not-allowed;
  filter: grayscale(1);
  transform: none;
}

.boost-button:disabled:hover,
.boost-button.is-disabled:hover {
  filter: grayscale(1);
  transform: none;
}

.boost-button.boosted {
  animation: boostPulse 420ms ease;
}

.gift-particle {
  position: absolute;
  right: 50%;
  bottom: 88px;
  z-index: 3;
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  color: #151007;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: linear-gradient(135deg, #fff4bd, #d7a84d);
  box-shadow:
    0 0 18px rgba(243, 213, 140, 0.62),
    0 10px 24px rgba(0, 0, 0, 0.32);
  font-size: 12px;
  font-weight: 900;
  pointer-events: none;
  transform: translate(50%, 0) scale(0.7) rotate(0deg);
  animation: giftFloat 1050ms cubic-bezier(0.17, 0.84, 0.32, 1) var(--gift-delay, 0ms) forwards;
}

.boost-ring {
  position: absolute;
  right: 50%;
  bottom: 92px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(243, 213, 140, 0.72);
  border-radius: 50%;
  box-shadow:
    0 0 24px rgba(243, 213, 140, 0.5),
    inset 0 0 18px rgba(243, 213, 140, 0.26);
  pointer-events: none;
  transform: translate(50%, 0) scale(0.6);
  animation: boostRing 820ms ease-out forwards;
}

.gift-ball,
.gift-trophy {
  min-width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: rgba(7, 7, 7, 0.24);
  font-size: 25px;
  box-shadow:
    0 0 22px rgba(255, 255, 255, 0.18),
    0 14px 30px rgba(0, 0, 0, 0.35);
}

.gift-trophy {
  filter: drop-shadow(0 0 12px rgba(243, 213, 140, 0.7));
}

.gift-doll {
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff8e7;
  border: 2px solid rgba(243, 213, 140, 0.86);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0 38%, transparent 39%),
    linear-gradient(135deg, #c71322 0 54%, #0f8f55 55% 100%);
  font-size: 11px;
  letter-spacing: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
}

.gift-doll::before {
  position: absolute;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d7a27d;
  box-shadow: 0 -4px 0 #1b1511;
  content: "";
}

.gift-badge,
.gift-spark {
  min-width: 26px;
  height: 26px;
  color: #151007;
  background: linear-gradient(135deg, #fff4bd, #d7a84d);
}

.fan-boost small {
  display: block;
  margin-top: 14px;
  color: rgba(247, 241, 228, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

.fan-board {
  padding: 96px 72px 104px;
  background:
    linear-gradient(180deg, rgba(215, 168, 77, 0.04), transparent 38%),
    #050505;
}

.fan-board-heading {
  max-width: 850px;
  margin: 0 auto 42px;
  text-align: center;
}

.fan-board-heading h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.14;
}

.fan-board-heading p:not(.section-kicker) {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.fan-board-grid {
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.message-form,
.message-wall {
  border: 1px solid rgba(215, 168, 77, 0.2);
  border-radius: 8px;
  background: rgba(17, 16, 13, 0.72);
  box-shadow: var(--shadow);
}

.message-form {
  display: grid;
  gap: 18px;
  align-self: start;
  padding: 24px;
}

.message-form label {
  display: grid;
  gap: 8px;
}

.message-form label span,
.name-field > label span {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.name-field {
  display: grid;
  gap: 8px;
}

.nickname-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 8px;
}

.nickname-button {
  display: grid;
  place-items: center;
  width: 46px;
  min-height: 46px;
  padding: 0;
  color: var(--gold-2);
  border: 1px solid rgba(215, 168, 77, 0.34);
  border-radius: 8px;
  background: rgba(215, 168, 77, 0.09);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nickname-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nickname-button:hover {
  border-color: rgba(243, 213, 140, 0.74);
  background: rgba(215, 168, 77, 0.16);
  transform: translateY(-1px);
}

.nickname-button:disabled,
.nickname-button.is-disabled {
  opacity: 0.46;
  cursor: not-allowed;
  transform: none;
}

.message-form input,
.message-form textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid rgba(247, 241, 228, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  outline: none;
  font: inherit;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.message-form input {
  height: 46px;
  padding: 0 14px;
}

.message-form input:disabled,
.message-form input.is-disabled {
  color: rgba(247, 241, 228, 0.62);
  background: rgba(255, 255, 255, 0.035);
  cursor: not-allowed;
}

.message-form textarea {
  min-height: 132px;
  padding: 13px 14px;
  resize: vertical;
}

.message-form input:focus,
.message-form textarea:focus {
  border-color: rgba(243, 213, 140, 0.78);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 3px rgba(215, 168, 77, 0.13);
}

.message-form ::placeholder {
  color: rgba(185, 173, 152, 0.58);
}

.message-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.message-actions .primary-btn {
  border: 0;
  cursor: pointer;
}

#messageStatus {
  min-height: 20px;
  color: var(--muted);
  font-size: 13px;
}

.message-wall {
  display: grid;
  gap: 14px;
  align-content: start;
  height: min(66vh, 680px);
  min-height: 430px;
  padding: 18px;
  overflow-y: auto;
  scrollbar-color: rgba(215, 168, 77, 0.72) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.message-wall::-webkit-scrollbar {
  width: 8px;
}

.message-wall::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
}

.message-wall::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(215, 168, 77, 0.76);
}

.message-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 168, 77, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(5, 5, 5, 0.36);
}

.message-card[data-clone="true"] {
  pointer-events: none;
}

.message-card header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(247, 241, 228, 0.66);
  font-size: 12px;
}

.message-card strong {
  color: var(--gold-2);
  font-size: 16px;
}

.message-card p {
  margin: 12px 0 0;
  color: #eee3cf;
  line-height: 1.75;
  word-break: break-word;
}

.message-card-actions {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  color: rgba(247, 241, 228, 0.66);
  font-size: 13px;
}

.comment-like {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 30px;
  padding: 0;
  color: var(--gold-2);
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 160ms ease, color 160ms ease;
}

.comment-like svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.like-count {
  margin-left: -2px;
  min-width: 1.5em;
}

.comment-like:hover {
  color: #fff0b8;
  transform: translateY(-1px);
}

.reply-toggle {
  min-height: 30px;
  padding: 0 8px;
  color: rgba(243, 213, 140, 0.88);
  border: 0;
  background: transparent;
  font-size: 13px;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease;
}

.reply-toggle:hover {
  color: #fff0b8;
  transform: translateY(-1px);
}

.message-replies[hidden] {
  display: none;
}

.message-replies {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reply-list {
  display: grid;
  gap: 8px;
}

.reply-item {
  padding: 10px 12px;
  border-left: 2px solid rgba(215, 168, 77, 0.52);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.045);
}

.reply-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.reply-item span {
  display: block;
  color: rgba(243, 213, 140, 0.78);
  font-size: 12px;
}

.reply-item p {
  margin: 5px 0 0;
  color: rgba(247, 241, 228, 0.84);
  font-size: 14px;
  line-height: 1.55;
}

.reply-again {
  flex: 0 0 auto;
  padding: 0;
  color: rgba(243, 213, 140, 0.82);
  border: 0;
  background: transparent;
  font-size: 12px;
  cursor: pointer;
}

.reply-again:hover {
  color: #fff0b8;
}

.reply-followup[hidden] {
  display: none;
}

.reply-followup {
  margin-top: 8px;
  padding: 10px 12px;
  border-left: 2px solid rgba(215, 168, 77, 0.52);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.045);
}

.reply-item .reply-followup {
  margin-right: -12px;
  margin-left: -12px;
}

.reply-form {
  position: relative;
  display: block;
}

.reply-form input {
  min-width: 0;
  width: 100%;
  height: 38px;
  padding: 0 68px 0 12px;
  color: var(--text);
  border: 1px solid rgba(247, 241, 228, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.reply-form input:focus {
  border-color: rgba(243, 213, 140, 0.68);
}

.reply-form button {
  position: absolute;
  top: 4px;
  right: 4px;
  height: 30px;
  min-height: 30px;
  padding: 0 13px;
  color: #151007;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 800;
  cursor: pointer;
}

.message-empty {
  display: grid;
  place-items: center;
  min-height: 300px;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}

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

  42% {
    transform: scale(1.04);
  }
}

@keyframes giftFloat {
  0% {
    opacity: 0;
    transform: translate(50%, 0) scale(0.58) rotate(0deg);
  }

  14% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform:
      translate(calc(50% + var(--gift-x, 0px) + var(--gift-drift, 0px)), var(--gift-y, -140px))
      scale(1.08)
      rotate(var(--gift-rotate, 24deg));
  }
}

@keyframes boostRing {
  0% {
    opacity: 0;
    transform: translate(50%, 0) scale(0.45);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(50%, -8px) scale(3.2);
  }
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 28px 72px;
  color: #8f846f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
  font-size: 13px;
}

@keyframes videoBreath {
  0% {
    transform: scale(1.1) translate3d(0, 0, 0);
    filter: saturate(1.18) contrast(1.12) brightness(0.8);
  }

  100% {
    transform: scale(1.15) translate3d(-14px, -5px, 0);
    filter: saturate(1.36) contrast(1.22) brightness(0.92);
  }
}

@keyframes eraSlideShow {
  0%,
  22% {
    opacity: 1;
  }

  34%,
  88% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes eraSlideImage {
  0% {
    transform: translate3d(0, 0, 0) scale(var(--era-image-start-scale, 1.02));
  }

  34% {
    transform: translate3d(-8px, 3px, 0) scale(var(--era-image-end-scale, 1.05));
  }

  100% {
    transform: translate3d(-8px, 3px, 0) scale(var(--era-image-end-scale, 1.05));
  }
}

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

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

@media (max-width: 1180px) {
  body {
    min-width: 0;
  }

  .site-header {
    padding: 0 28px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 780px;
    padding: 120px 34px 70px;
  }

  .hero-panel {
    justify-self: start;
    margin-top: 42px;
  }

  .section,
  .join {
    padding-right: 34px;
    padding-left: 34px;
  }

  .era-panel {
    grid-template-columns: 1fr;
    padding-right: 34px;
    padding-left: 34px;
  }

  .era-copy h2 {
    font-size: 46px;
  }

  .era-visual {
    min-height: 560px;
  }

  .era-visual img {
    width: min(70vw, 560px);
  }

  .journey-copy h2 {
    font-size: 40px;
  }

  #journeyCanvas {
    height: 520px;
  }

  .future-copy {
    padding-right: 34px;
    padding-left: 34px;
  }

  .future-copy h2 {
    font-size: 48px;
  }

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

  .fan-hero {
    grid-template-columns: 1fr;
    min-height: 680px;
    padding: 118px 34px 68px;
  }

  .fan-boost {
    width: min(100%, 430px);
  }

  .fan-board {
    padding-right: 34px;
    padding-left: 34px;
  }

  .fan-board-grid {
    grid-template-columns: 1fr;
  }

  .message-wall {
    height: min(62vh, 640px);
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 64px;
    padding: 0 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 48px;
    height: 36px;
  }

  .brand-copy,
  .header-cta {
    display: none;
  }

  .main-nav {
    gap: 18px;
    font-size: 14px;
  }

  .main-nav a {
    padding: 22px 0;
  }

  .hero {
    min-height: 100svh;
    padding: 104px 24px 54px;
  }

  .hero h1 {
    font-size: clamp(40px, 9vw, 64px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-panel {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 18px;
  }

  .hero-panel div {
    gap: 12px;
    padding: 16px 4px;
  }

  .hero-panel strong {
    font-size: 38px;
  }

  .hero-panel span {
    font-size: 13px;
  }

  .era-scroll {
    min-height: 100svh;
    scroll-margin-top: 64px;
  }

  .era-cinema-stage {
    min-height: 100svh;
  }

  .era-slide-image {
    object-position: 58% center;
    transform: scale(1.04);
  }

  .era-film-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.1) 44%, rgba(0, 0, 0, 0.74) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 58%);
  }

  .era-slide-message {
    top: 58%;
    width: min(86vw, 680px);
  }

  .era-slide-message span {
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 0.22em;
  }

  .era-slide-message strong {
    font-size: clamp(24px, 5.2vw, 38px);
    line-height: 1.2;
  }

  .era-slide figcaption {
    right: 26px;
    bottom: 28px;
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .canvas-journey {
    min-height: auto;
    padding: 58px 24px;
  }

  .journey-copy h2 {
    font-size: clamp(28px, 5.6vw, 38px);
  }

  .journey-copy p:not(.section-kicker) {
    font-size: 16px;
  }

  #journeyCanvas {
    height: 52svh;
    min-height: 360px;
  }

  .future-stage {
    min-height: 100svh;
  }

  .future-copy {
    padding: 0 26px 14vh;
  }

  .future-copy p {
    font-size: clamp(38px, 9vw, 58px);
    letter-spacing: 6px;
  }

  .site-footer {
    flex-direction: column;
    gap: 8px;
    padding: 22px 24px;
  }

  .carousel {
    grid-template-columns: 48px 1fr 48px;
    gap: 12px;
    max-width: 100%;
  }

  .carousel-btn {
    width: 48px;
    height: 48px;
    font-size: 32px;
  }

  .slide-card {
    grid-template-columns: 0.36fr 1fr;
    min-height: 320px;
  }

  .slide-art {
    font-size: 64px;
  }

  .slide-copy {
    padding: 34px;
  }

  .slide-copy h3 {
    font-size: 30px;
  }

  .slide-copy p {
    font-size: 16px;
  }

  .fan-hero {
    min-height: 620px;
    padding: 104px 24px 58px;
  }

  .fan-hero-copy h1 {
    font-size: clamp(42px, 9vw, 64px);
  }

  .fan-hero-copy p:not(.section-kicker) {
    font-size: 16px;
  }

  .fan-board {
    padding: 76px 24px 84px;
  }

  .fan-board-heading p:not(.section-kicker) {
    font-size: 15px;
  }

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

@media (max-width: 700px) {
  .site-header {
    justify-content: space-between;
    height: 64px;
    padding: 0 14px;
  }

  .brand {
    position: static;
  }

  .brand-mark {
    width: 44px;
    height: 34px;
    font-size: 14px;
  }

  .main-nav {
    gap: 12px;
    padding-left: 0;
    font-size: 13px;
  }

  .main-nav a {
    padding: 22px 0;
  }

  .hero {
    min-height: auto;
    padding: 86px 18px 24px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.86) 0%, rgba(5, 5, 5, 0.55) 46%, rgba(5, 5, 5, 0.2) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.14) 0%, rgba(5, 5, 5, 0.82) 100%);
  }

  .hero h1 {
    font-size: clamp(34px, 13vw, 52px);
    line-height: 1;
  }

  .hero-lede {
    max-width: 24em;
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    margin-top: 26px;
    padding: 16px 18px;
  }

  .hero-panel div {
    padding: 14px 0;
  }

  .hero-panel strong {
    font-size: 34px;
  }

  .hero-panel span {
    font-size: 12px;
  }

  .era-slide-image {
    object-position: center center;
    transform: scale(1.01);
  }

  .era-slideshow,
  .era-film-shade {
    inset: 14px;
    border-radius: 8px;
  }

  .era-slide-message {
    top: auto;
    bottom: 76px;
    width: min(88vw, 360px);
    padding: 0 14px;
    transform: translateX(-50%);
  }

  .era-slide-message span {
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .era-slide-message strong {
    font-size: clamp(20px, 6.4vw, 27px);
    line-height: 1.22;
  }

  .era-slide figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
    overflow: hidden;
    opacity: 0.72;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .future-copy p {
    font-size: clamp(34px, 10vw, 46px);
    letter-spacing: 4px;
  }

  .carousel {
    grid-template-columns: 1fr;
    padding: 14px 12px 4px;
  }

  .carousel-btn {
    display: none;
  }

  .slide-card {
    grid-template-columns: 1fr;
    min-height: 390px;
  }

  .slide-art {
    min-height: 120px;
    font-size: 54px;
  }

  .slide-copy {
    padding: 34px 28px 38px;
  }

  .slide-copy h3 {
    font-size: 26px;
  }

  .slide-copy p {
    font-size: 14px;
    line-height: 1.7;
  }

  .fan-page .main-nav {
    gap: 11px;
  }

  .fan-hero {
    min-height: auto;
    padding: 92px 18px 44px;
  }

  .fan-hero-bg {
    background-position: 58% center;
  }

  .fan-hero-copy h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .fan-hero-copy p:not(.section-kicker) {
    max-width: 24em;
    font-size: 14px;
    line-height: 1.72;
  }

  .fan-boost {
    padding: 20px;
  }

  .fan-boost strong {
    margin-bottom: 18px;
    font-size: 48px;
  }

  .fan-board {
    padding: 60px 18px 70px;
  }

  .fan-board-heading {
    margin-bottom: 28px;
  }

  .fan-board-heading h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .message-form,
  .message-wall {
    padding: 16px;
  }

  .message-wall {
    height: 430px;
    min-height: 360px;
  }

  .message-form input {
    height: 44px;
  }

  .nickname-button {
    min-height: 42px;
    width: 42px;
  }

  .message-form textarea {
    min-height: 120px;
  }

  .message-card {
    padding: 15px;
  }

  .message-card header {
    flex-direction: column;
    gap: 4px;
  }

}

@media (max-width: 430px) {
  .main-nav {
    gap: 10px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(32px, 12vw, 46px);
  }

  .hero-lede {
    font-size: 13px;
  }

  .hero-panel {
    margin-top: 22px;
    padding: 14px 16px;
  }

  .hero-panel div {
    padding: 12px 0;
  }

  .hero-panel strong {
    font-size: 30px;
  }

  .hero-panel span {
    font-size: 11px;
  }

  .era-slide-message {
    bottom: 72px;
    width: min(86vw, 330px);
    padding: 0 12px;
  }

  .era-slide-message span {
    font-size: 9px;
  }

  .era-slide-message strong {
    font-size: clamp(18px, 5.8vw, 24px);
  }

  .journey-copy h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .future-copy p {
    font-size: clamp(30px, 9vw, 40px);
    letter-spacing: 3px;
  }

  .era-slideshow,
  .era-film-shade {
    inset: 12px;
  }

  .carousel {
    padding: 12px 8px 2px;
  }

  .slide-card {
    min-height: 380px;
  }

  .slide-copy {
    padding: 32px 24px 36px;
  }

  .fan-page .brand-mark {
    width: 42px;
  }

  .fan-page .main-nav {
    gap: 9px;
    font-size: 12px;
  }

  .fan-hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .fan-board {
    padding-right: 14px;
    padding-left: 14px;
  }

  .fan-boost,
  .message-form,
  .message-wall {
    border-radius: 8px;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .site-header {
    height: 56px;
  }

  .era-scroll {
    scroll-margin-top: 56px;
  }

  .era-slide-message {
    top: 56%;
    width: min(62vw, 620px);
  }

  .era-slide-message strong {
    font-size: clamp(24px, 5vw, 38px);
  }

  .era-slide figcaption {
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .era-slide,
  .era-slide-image {
    transition: none;
  }
}
