:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-alt: #eef2ff;
  --surface-dark: #111827;
  --text: #182033;
  --muted: #5f6b85;
  --border: rgba(110, 126, 164, 0.18);
  --primary: #3d5afe;
  --secondary: #8b5cf6;
  --accent: #00b8d9;
  --highlight: #ff5fa2;
  --success: #18b87a;
  --shadow: 0 18px 45px rgba(60, 72, 109, 0.12);
  --shadow-soft: 0 10px 28px rgba(84, 96, 140, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 2rem));
  --section-space: clamp(4rem, 7vw, 7rem);
  --hero-space: clamp(4.5rem, 9vw, 7.5rem);
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.13), transparent 24%),
    radial-gradient(circle at top left, rgba(61, 90, 254, 0.1), transparent 28%),
    var(--bg);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
}

.section-tight {
  padding-top: 0;
}

.section-header {
  max-width: 700px;
  margin-bottom: 2rem;
}

.about-disciplines-header {
  max-width: 800px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(61, 90, 254, 0.09);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.section-title,
.hero-title,
.page-hero h1 {
  margin: 1rem 0 0.8rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.section-copy,
.hero-copy,
.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: rgba(245, 247, 251, 0.84);
  border-bottom: 1px solid rgba(110, 126, 164, 0.12);
}

.header-inner {
  position: relative;
  min-height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  height: 3rem;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.brand-mark img {
  width: auto;
  height: 100%;
  display: block;
  object-fit: contain;
}

.brand-text {
  flex: 0 0 auto;
  min-width: max-content;
  overflow: visible;
  padding-right: 0.45rem;
}

.brand-title {
  display: inline-block;
  overflow: visible;
  padding: 0.08em 0.18em 0.08em 0;
  font-family: Impact, Haettenschweiler, "Arial Black", "Microsoft YaHei", sans-serif;
  font-size: 2.28rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-style: italic;
  background: linear-gradient(135deg, var(--primary), var(--secondary) 48%, var(--highlight));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 8px 20px rgba(61, 90, 254, 0.18);
  transform: skewX(-6deg);
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid var(--border);
  background: white;
  border-radius: 1rem;
  color: var(--text);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.25rem auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.nav-list a:focus-visible,
.nav-list a.is-active {
  background: rgba(61, 90, 254, 0.1);
  color: var(--primary);
}

@media (hover: hover) and (pointer: fine) {
  .nav-list a:hover {
    background: rgba(61, 90, 254, 0.1);
    color: var(--primary);
  }
}

.btn,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.btn:focus-visible,
.button-link:focus-visible {
  transform: translateY(-2px);
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover,
  .button-link:hover {
    transform: translateY(-2px);
  }
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 14px 35px rgba(79, 70, 229, 0.28);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(61, 90, 254, 0.16);
  background: rgba(255, 255, 255, 0.8);
}

.hero {
  padding: var(--hero-space) 0 var(--section-space);
}

.hero-grid,
.two-column {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.hero-copy {
  max-width: 680px;
  font-size: 1.08rem;
}

.hero-title {
  font-size: clamp(2.7rem, 7vw, 5.6rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-panel,
.card,
.media-placeholder,
.stat-card,
.info-panel,
.cta-panel,
.timeline-item,
.faq-item,
.contact-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61, 90, 254, 0.16), rgba(139, 92, 246, 0.1), rgba(0, 184, 217, 0.08));
  pointer-events: none;
}

.hero-stage {
  position: relative;
  min-height: 420px;
  padding: 1.4rem;
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(17, 24, 39, 0.28), rgba(49, 46, 129, 0.52)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 50%);
  color: white;
}

.hero-stage.has-image {
  background-size: cover;
  background-position: center;
}

.hero-stage.has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.72));
}

.hero-stage::after {
  content: "MUSE CREW HERO";
  position: absolute;
  inset: auto 1.25rem 1.25rem auto;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.78);
}

.hero-tag-list,
.inline-list,
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-tag,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stage-copy {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
}

.grid {
  display: grid;
  gap: 1.35rem;
}

.grid.stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.features,
.grid.members,
.grid.events,
.grid.gallery,
.grid.contact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.card,
.timeline-item,
.contact-card,
.faq-item {
  min-width: 0;
  padding: 1.5rem;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
}

.stat-label,
.small-label {
  margin-top: 0.7rem;
  color: var(--muted);
  font-weight: 600;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover,
  .stat-card:hover,
  .timeline-item:hover,
  .contact-card:hover,
  .media-placeholder:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
  }
}

.card,
.stat-card,
.timeline-item,
.contact-card,
.media-placeholder {
  transition: transform var(--transition), box-shadow var(--transition);
}

.card-title,
.timeline-title,
.contact-title {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.card-copy,
.timeline-copy,
.contact-copy,
.meta-list {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.contact-qr-line {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.contact-qr {
  width: 7rem;
  height: 7rem;
  flex: 0 0 auto;
  border-radius: 0.9rem;
  border: 1px solid rgba(110, 126, 164, 0.22);
  background: white;
  box-shadow: var(--shadow-soft);
}

.media-placeholder {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 1.2rem;
}

.media-placeholder.has-image {
  padding: 0;
}

.media-placeholder.has-image::before {
  z-index: 2;
}

.media-placeholder.has-image::after {
  display: none;
}

.media-placeholder.has-image img,
.media-cover {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.media-cover-link {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.event-stage-cover {
  min-height: 220px;
  margin-bottom: 1rem;
}

.event-stage-card .card-copy {
  margin-top: 0.85rem;
}

.featured-video-cover {
  overflow: hidden;
}

.featured-video-cover::before {
  top: 1.1rem;
  left: auto;
  right: 1.1rem;
  z-index: 4;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  font-size: 1.44rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: white;
  background: linear-gradient(135deg, rgba(61, 90, 254, 0.9), rgba(139, 92, 246, 0.9));
  box-shadow: 0 14px 30px rgba(61, 90, 254, 0.24);
}

.featured-video-cover .media-cover-link {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.featured-video-cover .media-cover {
  transition: transform 220ms ease, filter 220ms ease;
}

.featured-video-cover .media-cover-link::before,
.featured-video-cover .media-cover-link::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.featured-video-cover .media-cover-link::before {
  z-index: 3;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.24);
  backdrop-filter: blur(6px);
}

.featured-video-cover .media-cover-link::after {
  z-index: 4;
  width: 1.65rem;
  height: 1.9rem;
  background: white;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(-42%, -50%) scale(0.88);
}

@media (hover: hover) and (pointer: fine) {
  .featured-video-cover:hover .media-cover,
  .featured-video-cover .media-cover-link:hover .media-cover {
    transform: scale(1.03);
    filter: brightness(0.76);
  }

  .featured-video-cover:hover .media-cover-link::before,
  .featured-video-cover:hover .media-cover-link::after,
  .featured-video-cover .media-cover-link:hover::before,
  .featured-video-cover .media-cover-link:hover::after,
  .featured-video-cover .media-cover-link:focus-visible::before,
  .featured-video-cover .media-cover-link:focus-visible::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .featured-video-cover .media-cover-link:hover::after,
  .featured-video-cover .media-cover-link:focus-visible::after,
  .featured-video-cover:hover .media-cover-link::after {
    transform: translate(-42%, -50%) scale(1);
  }

}

@media (hover: none), (pointer: coarse) {
  .featured-video-cover .media-cover {
    filter: brightness(0.8);
  }

  .featured-video-cover .media-cover-link::before,
  .featured-video-cover .media-cover-link::after {
    opacity: 1;
  }

  .featured-video-cover .media-cover-link::before {
    transform: translate(-50%, -50%) scale(1);
  }

  .featured-video-cover .media-cover-link::after {
    transform: translate(-42%, -50%) scale(1);
  }
}

.media-placeholder::before {
  content: attr(data-label);
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--primary);
  background: rgba(61, 90, 254, 0.1);
}

.media-placeholder::after {
  content: "";
  position: absolute;
  inset: auto -3rem -4rem auto;
  width: 11rem;
  height: 11rem;
  background: radial-gradient(circle, rgba(61, 90, 254, 0.2), transparent 70%);
}

.placeholder-fill {
  width: 100%;
  min-height: inherit;
  border-radius: calc(var(--radius-md) - 6px);
  border: 1px dashed rgba(61, 90, 254, 0.3);
  background:
    linear-gradient(135deg, rgba(61, 90, 254, 0.08), rgba(139, 92, 246, 0.06)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4) 14px, rgba(238, 242, 255, 0.6) 14px, rgba(238, 242, 255, 0.6) 28px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--muted);
  font-weight: 700;
}

.info-panel {
  padding: 1.7rem;
}

.meta-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.meta-list strong {
  color: var(--text);
}

.split-accent {
  position: relative;
}

.split-accent::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(var(--primary), var(--secondary));
}

.split-accent > * {
  padding-left: 1.4rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-meta {
  display: inline-flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
}

.timeline-proof-media {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  border-radius: 22px;
  margin-top: 0.35rem;
  overflow: hidden;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.96), rgba(61, 90, 254, 0.92));
  color: white;
}

.cta-panel::after {
  content: "";
  position: absolute;
  inset: auto -4rem -4rem auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.cta-panel .section-copy,
.cta-panel p,
.cta-panel li,
.site-footer,
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.page-hero {
  padding: 4.5rem 0 2rem;
}

.page-hero-panel {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(61, 90, 254, 0.12), rgba(139, 92, 246, 0.12));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(61, 90, 254, 0.12);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.3rem);
}

.page-hero p {
  max-width: 1000px;
}

.events-hero-copy {
  max-width: 1000px;
}

.info-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field label {
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(110, 126, 164, 0.25);
  background: rgba(255, 255, 255, 0.88);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  margin-top: var(--section-space);
  padding: 2rem 0 2.5rem;
  background: linear-gradient(145deg, #0f172a, #1d2a4d);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.site-footer .footer-grid > div:nth-child(2) {
  transform: translateX(-70px);
}

.footer-title {
  color: white;
  margin: 0 0 0.8rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.25rem;
  gap: 0.7rem;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
}

.contact-footer-card .footer-title {
  font-size: 1.17rem;
  margin-bottom: 1.25rem;
}

.footer-address {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

.contact-lines {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: grid;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

.contact-lines strong {
  color: inherit;
  font-weight: inherit;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.82rem;
  overflow: hidden;
  background: rgba(10, 14, 27, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.social-links a img {
  width: 1.42rem;
  height: 1.42rem;
  display: block;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.social-links a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .social-links a.is-hovered {
    transform: translateY(-3px);
    background: rgba(20, 28, 52, 0.98);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  }
}

@media (hover: none), (pointer: coarse) {
  .social-links a:hover,
  .social-links a:active {
    transform: none;
    background: rgba(10, 14, 27, 0.86);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .hero-grid,
  .two-column,
  .grid.features,
  .grid.members,
  .grid.events,
  .grid.gallery,
  .grid.contact,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid.stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .site-header {
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    display: grid;
    gap: 1rem;
    padding: 1rem;
    background: rgba(245, 247, 251, 0.98);
    border-bottom: 1px solid rgba(110, 126, 164, 0.12);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero-grid,
  .two-column,
  .grid.stats,
  .grid.features,
  .grid.members,
  .grid.events,
  .grid.gallery,
  .grid.contact,
  .info-grid,
  .footer-grid,
  .form-grid.two-up {
    grid-template-columns: 1fr;
  }

  .nav-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer .footer-grid > div:nth-child(2) {
    transform: none;
  }

  .footer-list {
    grid-template-columns: 1fr;
  }

  .nav-list a,
  .site-nav .btn {
    width: 100%;
  }

  .header-inner {
    min-height: 4.4rem;
  }

  .brand {
    gap: 0.72rem;
  }

  .brand-mark {
    height: 2.7rem;
  }

  .brand-title {
    font-size: 1.92rem;
  }

  .hero-stage {
    min-height: 320px;
  }

  .section,
  .hero,
  .page-hero {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 520px) {
  :root {
    --container: min(100% - 1.1rem, 1180px);
  }

  .header-inner {
    gap: 0.8rem;
  }

  .brand {
    gap: 0.58rem;
  }

  .brand-mark {
    height: 2.45rem;
  }

  .brand-text {
    padding-right: 0.15rem;
  }

  .brand-title {
    font-size: 1.58rem;
    letter-spacing: 0.03em;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn,
  .button-link {
    width: 100%;
  }

  .hero-title {
    font-size: 2.45rem;
  }

  .hero-stage-copy {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .stat-card,
  .card,
  .timeline-item,
  .contact-card,
  .faq-item,
  .info-panel,
  .cta-panel {
    padding: 1.2rem;
  }
}

/* Home page studio redesign */
.home-page {
  --studio-bg: #050712;
  --studio-surface: rgba(255, 255, 255, 0.07);
  --studio-surface-strong: rgba(255, 255, 255, 0.12);
  --studio-line: rgba(255, 255, 255, 0.14);
  --studio-text: #f8fbff;
  --studio-muted: rgba(232, 239, 255, 0.72);
  --neon-blue: #00d4ff;
  --neon-purple: #8b5cf6;
  --neon-pink: #ff4fa3;
  --neon-lime: #c8ff3d;
  color: var(--studio-text);
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 212, 255, 0.18), transparent 27rem),
    radial-gradient(circle at 88% 14%, rgba(255, 79, 163, 0.14), transparent 25rem),
    linear-gradient(180deg, #050712 0%, #090b18 48%, #050712 100%);
}

.home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
}

.home-page .site-header {
  background: rgba(5, 7, 18, 0.62);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.home-page .site-header.is-scrolled {
  background: rgba(5, 7, 18, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.home-page .nav-list a,
.home-page .site-header .btn {
  color: var(--studio-text);
}

.home-page .brand-subtitle {
  color: var(--studio-muted);
}

.home-page .nav-list a:focus-visible,
.home-page .nav-list a.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

@media (hover: hover) and (pointer: fine) {
  .home-page .nav-list a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
  }
}

.home-page .btn-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.studio-hero {
  position: relative;
  overflow: hidden;
  min-height: min(780px, calc(100vh - 4.8rem));
  padding: clamp(5rem, 9vw, 8.5rem) 0 3rem;
}

.studio-orbit {
  position: absolute;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.6;
  pointer-events: none;
}

.studio-orbit-one {
  left: -7rem;
  top: 18%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.22), transparent 62%);
}

.studio-orbit-two {
  right: -8rem;
  bottom: 2rem;
  background: radial-gradient(circle, rgba(255, 79, 163, 0.2), transparent 64%);
}

.studio-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.studio-kicker {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 0.55rem;
  color: var(--neon-blue);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.studio-kicker::before {
  content: "";
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-pink));
  box-shadow: 0 0 22px rgba(0, 212, 255, 0.8);
}

.studio-title {
  margin: 1.1rem 0 1.2rem;
  max-width: 850px;
  font-size: clamp(4rem, 13vw, 10.5rem);
  line-height: 0.82;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}

.studio-title-main {
  display: block;
  background: linear-gradient(100deg, #fff, var(--neon-blue), var(--neon-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.studio-title span {
  display: block;
  margin-top: 1.1rem;
  font-size: clamp(1.8rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  background: linear-gradient(100deg, #fff, var(--neon-blue), var(--neon-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.studio-lead,
.studio-copy {
  max-width: 760px;
  margin: 0;
  color: var(--studio-muted);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.studio-hero-copy {
  min-width: 0;
  display: grid;
  align-content: center;
}

.hero-discipline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.hero-discipline-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(110, 126, 164, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-soft);
}

.hero-side-note {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: var(--studio-muted);
  font-size: 0.96rem;
}

.studio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.7rem;
}

.studio-hero-media,
.manifesto-card,
.work-card,
.capability-card,
.video-placeholder-card,
.join-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--studio-line);
  background:
    radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(0, 212, 255, 0.16), transparent 28%),
    var(--studio-surface);
  box-shadow: 0 25px 90px rgba(0, 0, 0, 0.35);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .studio-hero-media:hover,
  .manifesto-card:hover,
  .work-card:hover,
  .capability-card:hover,
  .video-placeholder-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.42);
    box-shadow: 0 32px 110px rgba(0, 0, 0, 0.45);
  }
}

.studio-hero-media {
  min-height: clamp(430px, 58vw, 660px);
  border-radius: 36px;
}

.hero-logo-card {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 1rem;
  border-radius: 40px;
}

.studio-hero-media img,
.manifesto-card img,
.work-card img,
.crew-mosaic img,
.media-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-hero-media img {
  position: absolute;
  inset: 0;
  filter: saturate(1.12) contrast(1.05);
}

.hero-logo-card img {
  inset: 1rem;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  border-radius: 28px;
  object-fit: contain;
  object-position: center;
}

.studio-hero-media::after,
.work-card::after,
.join-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 26%, rgba(5, 7, 18, 0.86));
  pointer-events: none;
}

.hero-logo-card::after {
  inset: 1rem;
  border-radius: 28px;
  background: linear-gradient(180deg, transparent 34%, rgba(5, 7, 18, 0.74));
}

.hero-logo-sticker {
  position: absolute;
  top: 1.45rem;
  left: 1.45rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.hero-media-caption,
.work-overlay {
  position: absolute;
  z-index: 2;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
}

.hero-media-caption span,
.work-overlay span,
.manifesto-card span,
.media-wall figcaption {
  color: var(--neon-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-media-caption strong,
.work-overlay h3 {
  display: block;
  color: white;
  font-size: clamp(1.5rem, 3.6vw, 2.9rem);
  line-height: 1;
}

.hero-logo-card .hero-media-caption {
  left: 2rem;
  right: 2rem;
  bottom: 1.75rem;
}

.hero-logo-card .hero-media-caption strong {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
}

.hero-float-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero-float-stats article,
.studio-metrics article {
  padding: 1.25rem;
  border: 1px solid var(--studio-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.hero-float-stats strong {
  display: block;
  color: white;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.hero-float-stats span,
.studio-metrics p {
  color: var(--studio-muted);
}

.crew-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  padding: 1.1rem 1.4rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.76);
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.studio-section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.manifesto-grid,
.crew-life-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.crew-life-layout {
  display: grid;
  grid-template-columns: 0.7fr 2.1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.studio-section-title {
  margin: 1rem 0 1rem;
  max-width: 1200px;
  color: white;
  font-size: clamp(2.25rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.manifesto-card {
  min-height: 440px;
  border-radius: 34px;
}

.manifesto-card img {
  position: absolute;
  inset: 0;
}

.manifesto-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5, 7, 18, 0.88));
}

.manifesto-card div {
  position: absolute;
  z-index: 2;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
}

.manifesto-card strong {
  display: block;
  margin-top: 0.45rem;
  color: white;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.12;
}

.studio-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.studio-metrics article span,
.capability-card span {
  color: var(--neon-pink);
  font-weight: 900;
}

.studio-metrics article strong {
  display: block;
  margin: 0.7rem 0 0.4rem;
  color: white;
  font-size: 1.25rem;
}

.studio-section-head {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.capability-card {
  min-height: 230px;
  padding: 1.4rem;
  border-radius: 26px;
}

.capability-card h3 {
  margin: 2.2rem 0 0.75rem;
  color: white;
  font-size: 1.65rem;
}

.capability-card p,
.work-overlay p,
.video-placeholder-card p {
  color: var(--studio-muted);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(320px, 1fr);
  gap: 1rem;
}

.work-card {
  min-height: 320px;
  border-radius: 34px;
}

.work-card-large {
  grid-row: auto;
  min-height: 320px;
}

.work-card img {
  position: absolute;
  inset: 0;
  transition: transform 600ms ease;
}

.work-card-long-title .work-overlay h3 {
  font-size: clamp(1.28rem, 2.3vw, 1.95rem);
}

@media (hover: hover) and (pointer: fine) {
  .work-card:hover img {
    transform: scale(1.06);
  }
}

.crew-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 210px;
  gap: 1rem;
}

.crew-mosaic img,
.media-wall figure,
.video-placeholder-card {
  overflow: hidden;
  border: 1px solid var(--studio-line);
  border-radius: 28px;
  background: var(--studio-surface);
}

.crew-mosaic .mosaic-tall {
  grid-row: span 2;
}

.media-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.media-wall figure {
  position: relative;
  min-height: 320px;
  margin: 0;
}

.media-wall figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 7, 18, 0.86));
}

.media-wall figcaption {
  position: absolute;
  z-index: 2;
  left: 1rem;
  bottom: 1rem;
}

.video-placeholder-card {
  display: grid;
  align-content: center;
  min-height: 320px;
  padding: 1.4rem;
}

.play-mark {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: #050712;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-lime));
}

.video-placeholder-card h3 {
  margin: 0 0 0.5rem;
  color: white;
}

.join-showcase {
  padding-bottom: 3rem;
}

.join-panel {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(5, 7, 18, 0.72), rgba(91, 33, 182, 0.72)),
    url('../../image/logo.jpg') center/cover;
}

.join-panel > * {
  position: relative;
  z-index: 2;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(22px);
  transition: transform 700ms ease;
}

[data-reveal].is-visible {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .studio-hero-grid,
  .manifesto-grid,
  .crew-life-grid,
  .crew-life-layout,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card-large {
    grid-row: auto;
    min-height: 430px;
  }

  .capability-grid,
  .media-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .home-page .site-nav {
    background: rgba(5, 7, 18, 0.98);
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .home-page .nav-toggle {
    color: white;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .studio-hero {
    min-height: auto;
    padding-top: 3.5rem;
  }

  .studio-hero-media {
    min-height: 360px;
  }

  .hero-logo-card {
    min-height: clamp(250px, 78vw, 300px);
    padding: 0.8rem;
    border-radius: 30px;
  }

  .hero-logo-card img,
  .hero-logo-card::after {
    inset: 0.8rem;
    width: calc(100% - 1.6rem);
    height: calc(100% - 1.6rem);
    border-radius: 22px;
  }

  .hero-logo-card img {
    object-position: center top;
  }

  .hero-discipline-list {
    gap: 0.65rem;
  }

  .hero-float-stats,
  .studio-metrics,
  .capability-grid,
  .media-wall,
  .crew-mosaic {
    grid-template-columns: 1fr;
  }

  .crew-mosaic .mosaic-tall {
    grid-row: auto;
  }

  .join-panel {
    display: grid;
  }
}

@media (max-width: 520px) {
  .studio-title {
    font-size: 3.3rem;
  }

  .studio-title span,
  .studio-section-title {
    letter-spacing: -0.05em;
  }

  .studio-actions {
    flex-direction: column;
  }

  .hero-discipline-list span {
    width: calc(50% - 0.35rem);
  }

  .hero-logo-sticker {
    top: 1rem;
    left: 1rem;
    min-height: 2rem;
    padding-inline: 0.72rem;
    font-size: 0.68rem;
  }

  .hero-logo-card .hero-media-caption {
    left: 1.35rem;
    right: 1.35rem;
    bottom: 1.2rem;
  }

  .hero-logo-card .hero-media-caption strong {
    font-size: 1.45rem;
  }

  .studio-hero-media,
  .manifesto-card,
  .work-card,
  .media-wall figure,
  .video-placeholder-card {
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track,
  [data-reveal],
  .work-card img,
  .studio-hero-media,
  .manifesto-card,
  .work-card,
  .capability-card,
  .video-placeholder-card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* Home page light palette restore: keep studio layout/effects, return to the original academy color system. */
.home-page {
  --studio-bg: var(--bg);
  --studio-surface: rgba(255, 255, 255, 0.88);
  --studio-surface-strong: #ffffff;
  --studio-line: rgba(110, 126, 164, 0.18);
  --studio-text: var(--text);
  --studio-muted: var(--muted);
  --neon-blue: var(--primary);
  --neon-purple: var(--secondary);
  --neon-pink: var(--highlight);
  --neon-lime: var(--accent);
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.13), transparent 24%),
    radial-gradient(circle at top left, rgba(61, 90, 254, 0.1), transparent 28%),
    var(--bg);
}

.home-page::before {
  background-image:
    linear-gradient(rgba(61, 90, 254, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 90, 254, 0.055) 1px, transparent 1px);
  mask-image: linear-gradient(180deg, black, transparent 78%);
}

.home-page .studio-hero {
  overflow-x: hidden;
}

.home-page main {
  overflow-x: hidden;
}

/* Disable the homepage grid texture without affecting layout. */
.home-page::before {
  content: none;
}

.home-page .site-header {
  background: rgba(245, 247, 251, 0.84);
  border-bottom-color: rgba(110, 126, 164, 0.12);
}

.home-page .site-header.is-scrolled {
  background: rgba(245, 247, 251, 0.94);
  border-bottom-color: rgba(110, 126, 164, 0.18);
  box-shadow: var(--shadow-soft);
}

.home-page .nav-list a,
.home-page .site-header .btn {
  color: var(--text);
}

.home-page .brand-subtitle,
.home-page .studio-lead,
.home-page .studio-copy,
.home-page .capability-card p,
.home-page .video-placeholder-card p,
.home-page .hero-float-stats span,
.home-page .studio-metrics p {
  color: var(--muted);
}

.home-page .nav-list a:focus-visible,
.home-page .nav-list a.is-active {
  background: rgba(61, 90, 254, 0.09);
  color: var(--primary);
}

@media (hover: hover) and (pointer: fine) {
  .home-page .nav-list a:hover {
    background: rgba(61, 90, 254, 0.09);
    color: var(--primary);
  }
}

.home-page .btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(110, 126, 164, 0.18);
}

.home-page .nav-toggle {
  color: var(--text);
  background: white;
  border-color: var(--border);
}

.home-page .studio-orbit-one {
  background: radial-gradient(circle, rgba(61, 90, 254, 0.16), transparent 62%);
}

.home-page .studio-orbit-two {
  background: radial-gradient(circle, rgba(255, 95, 162, 0.13), transparent 64%);
}

.home-page .studio-title,
.home-page .studio-section-title,
.home-page .capability-card h3,
.home-page .studio-metrics article strong,
.home-page .video-placeholder-card h3,
.home-page .hero-float-stats strong {
  color: var(--text);
}

.home-page .studio-title span {
  background: linear-gradient(100deg, var(--text), var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-page .studio-title-main {
  background: linear-gradient(100deg, var(--text), var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-page .studio-hero .studio-hero-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  align-items: start;
}

.home-page .studio-hero .studio-title {
  max-width: 700px;
  font-size: clamp(3.6rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  text-transform: none;
}

.home-page .studio-hero .studio-title span {
  margin-top: 0.82rem;
  font-size: clamp(1.5rem, 3.1vw, 2.85rem);
  line-height: 1.06;
}

.home-page .studio-hero-media,
.home-page .manifesto-card,
.home-page .work-card,
.home-page .capability-card,
.home-page .video-placeholder-card,
.home-page .join-panel {
  background:
    radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(61, 90, 254, 0.14), transparent 30%),
    var(--studio-surface);
  border-color: var(--studio-line);
  box-shadow: var(--shadow);
}

.home-page .hero-logo-card {
  background: linear-gradient(145deg, rgba(13, 20, 45, 0.98), rgba(32, 44, 88, 0.96));
  border-color: rgba(61, 90, 254, 0.18);
  box-shadow: 0 30px 72px rgba(60, 72, 109, 0.2);
}

@media (hover: hover) and (pointer: fine) {
  .home-page .studio-hero-media:hover,
  .home-page .manifesto-card:hover,
  .home-page .work-card:hover,
  .home-page .capability-card:hover,
  .home-page .video-placeholder-card:hover {
    border-color: rgba(61, 90, 254, 0.36);
    box-shadow: 0 24px 64px rgba(60, 72, 109, 0.18);
  }

  .home-page .hero-logo-card:hover {
    border-color: rgba(61, 90, 254, 0.38);
    box-shadow: 0 28px 72px rgba(60, 72, 109, 0.22);
  }
}

.home-page .hero-float-stats article,
.home-page .studio-metrics article {
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--border);
  box-shadow: var(--shadow-soft);
}

.home-page .hero-float-stats article {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.3rem 1.25rem 1.15rem;
  border-radius: 24px;
}

.home-page .hero-float-stats article::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 52%;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--stat-glow), transparent 68%);
  opacity: 0.78;
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.home-page .hero-float-stats article::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 1rem;
  width: 3.15rem;
  height: 0.24rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--stat-accent), transparent);
  pointer-events: none;
  z-index: 1;
}

.home-page .hero-float-stats article:nth-child(1) {
  --stat-accent: #3d5afe;
  --stat-accent-soft: #89a0ff;
  --stat-glow: rgba(61, 90, 254, 0.22);
}

.home-page .hero-float-stats article:nth-child(2) {
  --stat-accent: #00b8d9;
  --stat-accent-soft: #83ecff;
  --stat-glow: rgba(0, 184, 217, 0.2);
}

.home-page .hero-float-stats article:nth-child(3) {
  --stat-accent: #ff5fa2;
  --stat-accent-soft: #ffc0d8;
  --stat-glow: rgba(255, 95, 162, 0.18);
}

.home-page .hero-float-stats article:nth-child(4) {
  --stat-accent: #8b5cf6;
  --stat-accent-soft: #cab2ff;
  --stat-glow: rgba(139, 92, 246, 0.2);
}

.home-page .hero-float-stats strong {
  position: relative;
  z-index: 1;
  display: block;
  width: max-content;
  margin-top: 0.55rem;
  padding-right: 0.2em;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--stat-accent), var(--stat-accent-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  overflow: visible;
  filter: drop-shadow(0 10px 18px rgba(61, 90, 254, 0.12));
}

.home-page .hero-float-stats article:nth-child(2) strong {
  padding-right: 0.28em;
}

.home-page .hero-float-stats span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 2rem;
  margin-top: 0.85rem;
  padding: 0.32rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(110, 126, 164, 0.18);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-page .manifesto-section,
.home-page .dance-capabilities-section,
.home-page .selected-works,
.home-page .crew-life-section,
.home-page .join-showcase {
  --headline-ink: var(--text);
  --headline-accent: var(--primary);
  --headline-glow: rgba(61, 90, 254, 0.18);
  --headline-highlight: rgba(61, 90, 254, 0.14);
}

.home-page .manifesto-section {
  --headline-accent: #3d5afe;
  --headline-glow: rgba(61, 90, 254, 0.2);
  --headline-highlight: rgba(61, 90, 254, 0.14);
}

.home-page .dance-capabilities-section {
  --headline-accent: #8b5cf6;
  --headline-glow: rgba(139, 92, 246, 0.18);
  --headline-highlight: rgba(139, 92, 246, 0.14);
}

.home-page .selected-works {
  --headline-accent: #6f74ff;
  --headline-glow: rgba(111, 116, 255, 0.18);
  --headline-highlight: rgba(111, 116, 255, 0.13);
}

.home-page .crew-life-section {
  --headline-accent: #00b8d9;
  --headline-glow: rgba(0, 184, 217, 0.18);
  --headline-highlight: rgba(0, 184, 217, 0.12);
}

.home-page .crew-life-section .studio-section-title {
  width: auto;
  max-width: 100%;
  padding-right: 10px;
}

.home-page .crew-life-section .crew-life-title {
  display: inline-block;
}

.home-page .crew-life-section .crew-life-title span {
  display: block;
  white-space: nowrap;
}

.home-page .crew-life-section .crew-life-title span + span {
  margin-top: 0.14em;
}

.home-page .join-showcase {
  --headline-ink: #ffffff;
  --headline-accent: #ffe27a;
  --headline-glow: rgba(255, 226, 122, 0.2);
  --headline-highlight: rgba(255, 255, 255, 0.12);
}

.home-page .manifesto-section .studio-section-title,
.home-page .dance-capabilities-section .studio-section-title,
.home-page .selected-works .studio-section-title,
.home-page .crew-life-section .studio-section-title,
.home-page .join-showcase .join-panel .studio-section-title {
  position: relative;
  display: inline-block;
  max-width: calc(100% + 0.32em);
  padding-bottom: 0.45rem;
  padding-right: 0.32em;
  background: linear-gradient(102deg, var(--headline-ink) 0%, var(--headline-accent) 52%, var(--headline-ink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
  overflow: visible;
  text-shadow: 0 12px 24px rgba(24, 32, 51, 0.08);
}

.home-page .manifesto-section .studio-section-title::before,
.home-page .dance-capabilities-section .studio-section-title::before,
.home-page .selected-works .studio-section-title::before,
.home-page .crew-life-section .studio-section-title::before,
.home-page .join-showcase .join-panel .studio-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: min(11rem, 42%);
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--headline-accent), transparent 92%);
  box-shadow: 0 10px 22px var(--headline-glow);
}

.home-page .manifesto-section .studio-section-title::after,
.home-page .dance-capabilities-section .studio-section-title::after,
.home-page .selected-works .studio-section-title::after,
.home-page .crew-life-section .studio-section-title::after,
.home-page .join-showcase .join-panel .studio-section-title::after {
  content: "";
  position: absolute;
  inset: auto auto 0.65rem -0.45rem;
  width: clamp(2.4rem, 7vw, 4.8rem);
  height: clamp(2.4rem, 7vw, 4.8rem);
  border-radius: 50%;
  background: radial-gradient(circle, var(--headline-highlight), transparent 72%);
  filter: blur(4px);
  z-index: -1;
  pointer-events: none;
}

.home-page .studio-metrics article {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 1.45rem 1.35rem 1.35rem;
}

.home-page .studio-metrics article::before {
  content: "";
  position: absolute;
  inset: auto -1.8rem -2rem auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--metric-glow), transparent 70%);
  filter: blur(10px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.home-page .studio-metrics article::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 1.1rem;
  width: 3rem;
  height: 0.22rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--metric-accent), transparent);
  pointer-events: none;
  z-index: 1;
}

.home-page .studio-metrics article:nth-child(1) {
  --metric-accent: #3d5afe;
  --metric-soft: #87a0ff;
  --metric-glow: rgba(61, 90, 254, 0.2);
}

.home-page .studio-metrics article:nth-child(2) {
  --metric-accent: #ff5fa2;
  --metric-soft: #ffc0d8;
  --metric-glow: rgba(255, 95, 162, 0.18);
}

.home-page .studio-metrics article:nth-child(3) {
  --metric-accent: #00b8d9;
  --metric-soft: #8bebfb;
  --metric-glow: rgba(0, 184, 217, 0.18);
}

.home-page .studio-metrics article span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 0.35rem;
  padding-right: 0.18em;
  font-size: clamp(2.1rem, 4.6vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--metric-accent), var(--metric-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  overflow: visible;
  filter: drop-shadow(0 10px 18px rgba(24, 32, 51, 0.08));
}

.home-page .studio-metrics article strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0.82rem 0 0.6rem;
  padding-right: 0.16em;
  font-size: clamp(1.28rem, 2vw, 1.55rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
  overflow: visible;
}

.home-page .studio-metrics p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 29ch;
  color: var(--muted);
  line-height: 1.62;
}

.home-page .crew-marquee {
  background: rgba(255, 255, 255, 0.58);
  border-block-color: rgba(110, 126, 164, 0.14);
}

.home-page .marquee-track span {
  -webkit-text-stroke-color: rgba(24, 32, 51, 0.28);
}

.home-page .hero-logo-card .hero-logo-sticker {
  background: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1024px) {
  .home-page .studio-hero .studio-hero-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .home-page .studio-hero .studio-title {
    font-size: clamp(3rem, 10vw, 4.9rem);
  }

  .home-page .studio-hero .studio-title span {
    font-size: clamp(1.35rem, 4.8vw, 2.2rem);
  }

  .home-page .hero-float-stats strong {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .home-page .hero-float-stats span {
    font-size: 0.82rem;
  }

  .home-page .manifesto-section .studio-section-title,
  .home-page .dance-capabilities-section .studio-section-title,
  .home-page .selected-works .studio-section-title,
  .home-page .crew-life-section .studio-section-title,
  .home-page .join-showcase .join-panel .studio-section-title {
    display: block;
  }

  .home-page .studio-metrics article span {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
}

@media (max-width: 520px) {
  .home-page .studio-hero .studio-title {
    font-size: 3.05rem;
  }

  .home-page .studio-hero .studio-title span {
    font-size: 1.48rem;
  }
}

.home-page .crew-mosaic img,
.home-page .media-wall figure,
.home-page .video-placeholder-card {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.9);
}

.home-page .play-mark {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.home-page .join-panel {
  background:
    linear-gradient(135deg, rgba(61, 90, 254, 0.82), rgba(139, 92, 246, 0.72)),
    url('../../image/logo.jpg') center/cover;
}

.home-page .join-panel .studio-section-title,
.home-page .join-panel .studio-copy,
.home-page .join-panel .studio-kicker,
.home-page .join-panel .btn-secondary {
  color: white;
}

.home-page .join-panel .studio-copy {
  max-width: 850px;
}

.home-page .join-panel .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

@media (max-width: 768px) {
  .home-page .site-nav {
    background: rgba(245, 247, 251, 0.98);
    border-bottom-color: rgba(110, 126, 164, 0.12);
  }

  .home-page .nav-toggle {
    color: var(--text);
    background: white;
    border-color: var(--border);
  }
}

/* Keep the homepage title bar identical to the other pages. */
.home-page .site-header,
.home-page .site-header.is-scrolled {
  background: rgba(245, 247, 251, 0.84);
  border-bottom-color: rgba(110, 126, 164, 0.12);
  box-shadow: none;
}

.home-page .nav-list a {
  color: var(--muted);
}

.home-page .nav-list a:focus-visible,
.home-page .nav-list a.is-active {
  background: rgba(61, 90, 254, 0.1);
  color: var(--primary);
}

@media (hover: hover) and (pointer: fine) {
  .home-page .nav-list a:hover {
    background: rgba(61, 90, 254, 0.1);
    color: var(--primary);
  }
}

.home-page .site-header .btn-primary {
  color: white;
}
