﻿:root {
  
  --bg: #211b1b;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
  --frame-bg: #050505;
  --noise-image: url("assets/common/textures/tvnoise_white_soft.png?v=20260427-04");
  --noise-opacity: 1;
  --noise-blend-mode: soft-light;

  
  --site-width: min(1200px, calc(100vw - 80px));
  --page-pad-x: 24px;
  --layout-pad-top: 20px;
  --layout-pad-bottom: 20px;

  
  --header-grid-gap: 16px;
  --header-min-height: 28px;
  --brand-logo-width: 140px;
  --brand-nav-gap: 18px;
  --nav-font-size: 12px;
  --nav-font-weight: 700;
  --nav-letter-spacing: -0.02em;
  --social-gap: 14px;
  --social-font-size: 15px;

  
  --header-to-hero-gap: 12px;
  --hero-size: clamp(300px, 55vh, 650px);
  --hero-side-gap: clamp(30px, 4vw, 48px);
  --hero-side-width: 130px;
  --hero-side-inner-gap: clamp(12px, 1.5vw, 18px);
  --hero-left-group-width: calc(var(--hero-title-size) + var(--hero-intro-size) + var(--hero-side-inner-gap));
  --hero-left-group-offset: calc((var(--hero-side-width) - var(--hero-left-group-width)) / 2);
  --hero-group-width: clamp(560px, 68vw, 760px);

  --hero-title-size: 20px;
  --hero-title-weight: 700;
  --hero-title-letter-spacing: 0.02em;
  --hero-title-line-height: 1.1;
  --hero-intro-size: 14px;
  --hero-intro-weight: 300;
  --hero-intro-letter-spacing: 0.04em;

  --hero-panel-gap: 300px;
  --hero-frame-padding: 8px;

  --hero-meta-gap: 5px;
  --hero-meta-pad-top: 2px;
  --hero-meta-height: 40px;

  --hero-index-size: 9px;
  --hero-index-weight: 300;
  --hero-index-letter-spacing: 0.14em;

  --hero-card-title-size: 16px;
  --hero-card-title-weight: 700;
  --hero-card-title-letter-spacing: -0.02em;
  --hero-card-title-line-height: 1.1;

  
  --footer-gap-top: 6px;
  --footer-mark-size: 32px;
  --footer-copy-size: 12px;

}

body[data-theme="light"] {
  --bg: #faf8f3;
  --text: #111111;
  --muted: rgba(17, 17, 17, 0.55);
  --frame-bg: #ffffff;
  --noise-image: url("assets/common/textures/tvnoise_black.png?v=20260427-04");
  --noise-opacity: 0.48;
  --noise-blend-mode: normal;
  --page-hero-bg-opacity: 0.09;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #000000;
  background-image: url("assets/common/textures/tvnoise_white_soft.png?v=20260427-04");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 1;
  visibility: visible;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1), visibility 900ms ease;
}

.loading-screen.is-leaving {
  transform: translateY(-100%);
}

.loading-screen__marquee {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.25;
}

.loading-screen__marquee-row {
  overflow: hidden;
  white-space: nowrap;
  padding-inline: 18px;
}

.loading-screen__marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  min-width: max-content;
  padding-right: 28px;
  animation: loading-marquee-left 18s steps(144, end) infinite;
}

.loading-screen__marquee-row.is-reverse .loading-screen__marquee-track {
  animation-name: loading-marquee-right;
  animation-duration: 20s;
  animation-timing-function: steps(160, end);
}

.loading-screen__marquee-track span {
  --loading-text-color: #ffffff;
  font-size: clamp(24px, 3.2vw, 42px);
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  background-image: repeating-linear-gradient(
    180deg,
    var(--loading-text-color) 0 2.6px,
    rgba(0, 0, 0, 0.22) 2.6px 3px
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.loading-screen__marquee-track .is-yellow {
  --loading-text-color: #f5c63a;
}

.loading-screen__marquee-track .is-cyan {
  --loading-text-color: #12b9de;
}

.loading-screen__marquee-track .is-pink,
.loading-screen__marquee-track .is-logo {
  --loading-text-color: #eb2b8d;
}

.loading-screen__inner {
  position: relative;
  z-index: 2;
  width: min(34vw, 220px);
  min-width: 136px;
  min-height: min(34vh, 280px);
  display: grid;
  grid-template-rows: auto auto auto;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 260ms ease;
}

.loading-screen.is-leaving .loading-screen__inner {
  animation: loading-content-wipe 900ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

.loading-screen__metric-spacer {
  height: 12px;
  min-height: 12px;
}

.loading-screen__svg-wrap {
  position: relative;
  justify-self: center;
  width: min(100%, 190px);
  aspect-ratio: 595.28 / 841.89;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.loading-screen__logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.95;
}

.loading-screen__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(4.5);
  transform-origin: center;
}

.loading-screen__svg path {
  fill: none !important;
  stroke: #ffffff !important;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--path-length);
  stroke-dashoffset: var(--path-length);
  animation-name: loading-draw-path;
  animation-duration: var(--path-duration);
  animation-delay: var(--path-start);
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.loading-screen__svg--ghost path {
  stroke: rgba(255, 255, 255, 0.3) !important;
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  animation: none;
  opacity: 1;
}

.loading-screen__count {
  justify-self: center;
  min-width: 48px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-align: center;
  margin-top: 4px;
}

.page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  isolation: isolate;
}

.page-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  min-height: 100%;
  pointer-events: none;
  background: var(--bg);
}

.page-bg__hero-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: hue-rotate(180deg) invert(1);
  opacity: 0;
  transition: opacity 0.1s ease;
  will-change: clip-path, filter, opacity, transform;
}

body[data-theme="light"] .page-bg__hero-layer {
  filter: hue-rotate(180deg) invert(1) contrast(1.42) saturate(1.32);
}

.page-bg__hero-layer.is-active {
  opacity: var(--page-hero-bg-opacity, 0.05);
}

.page-bg__hero-layer::before,
.page-bg__hero-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
}

.page-bg__hero-layer.is-bg-glitching {
  animation: page-bg-glitch-base 620ms steps(2, end);
}

.page-bg__hero-layer.is-bg-glitching::before {
  opacity: 0.5;
  mix-blend-mode: screen;
  filter: hue-rotate(150deg) saturate(2.2) contrast(1.35);
  animation: page-bg-glitch-slice-a 620ms steps(2, end);
}

.page-bg__hero-layer.is-bg-glitching::after {
  opacity: 0.42;
  mix-blend-mode: difference;
  filter: hue-rotate(-140deg) saturate(2) contrast(1.25);
  animation: page-bg-glitch-slice-b 620ms steps(2, end);
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--noise-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: var(--noise-opacity);
  mix-blend-mode: var(--noise-blend-mode);
  filter: none;
  pointer-events: none;
}

.layout {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--layout-pad-top) var(--page-pad-x) var(--layout-pad-bottom);
}

.header-bar {
  position: relative;
  z-index: 50;
  width: 100%;
  max-width: var(--site-width);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: var(--header-grid-gap);
  padding-bottom: 0; 
}

.theme-switcher,
.socials {
  min-height: var(--header-min-height);
}

.theme-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  color: var(--text);
  font-size: var(--nav-font-size);
  font-weight: var(--nav-font-weight);
  letter-spacing: var(--nav-letter-spacing);
  line-height: 1;
}

.theme-option {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  cursor: pointer;
  opacity: 0.42;
}

.theme-option.is-active,
.theme-option:hover,
.theme-option:focus-visible {
  opacity: 1;
}

.theme-separator {
  opacity: 0.35;
}

.header-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--brand-nav-gap);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: var(--brand-logo-width);
  max-width: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  width: min(var(--hero-group-width), var(--site-width));
  justify-content: space-between;
  gap: 0;
  flex-wrap: nowrap;
  min-height: 26px;
  padding: 6px 0 4px;
  font-size: var(--nav-font-size);
  letter-spacing: var(--nav-letter-spacing);
  color: var(--text);
  font-weight: var(--nav-font-weight);
  background: transparent;
}

.main-nav a {
  position: relative;
  padding-bottom: 2px;
  transition: filter 120ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #ff7a1a;
  animation: nav-glitch 420ms steps(2, end);
}

.socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--social-gap);
  font-size: var(--social-font-size);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.social-link--text,
.mobile-nav__shop {
  font-size: var(--nav-font-size);
  font-weight: 500;
  letter-spacing: var(--nav-letter-spacing);
  line-height: 1;
  white-space: nowrap;
}

.social-link--text {
  margin-right: 2px;
}

.social-icon-svg {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  vertical-align: middle;
}

.icon-youtube {
  -webkit-mask-image: url("assets/common/social/icon_youtube.svg");
  mask-image: url("assets/common/social/icon_youtube.svg");
}

.icon-instagram {
  -webkit-mask-image: url("assets/common/social/icon_instagram.svg");
  mask-image: url("assets/common/social/icon_instagram.svg");
}

.hero-shell {
  width: 100%;
  max-width: var(--site-width);
  flex: 0 0 auto;
  margin-block: auto; 
  padding-block: 30px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: margin 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-stage {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-figure {
  position: relative;
  width: var(--hero-size);
  transition: width 0.4s ease-out;
  will-change: width;
}

.hero-copy-band {
  display: contents;
}

.hero-copy {
  position: absolute;
  top: calc(var(--hero-size) / 2);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: var(--hero-left-group-width);
  right: calc(100% + var(--hero-side-gap) + var(--hero-left-group-offset));
  gap: var(--hero-side-inner-gap);
  white-space: nowrap;
  transition: top 0.6s cubic-bezier(0.22, 1, 0.36, 1), right 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-copy__title,
.hero-copy__intro {
  width: auto;
}

.hero-copy__eyebrow {
  margin: 0;
  font-size: var(--hero-intro-size);
  font-weight: var(--hero-intro-weight);
  line-height: var(--hero-title-line-height);
  letter-spacing: var(--hero-intro-letter-spacing);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
}

.hero-copy__headline {
  margin: 0;
  font-size: var(--hero-title-size);
  font-weight: var(--hero-title-weight);
  line-height: var(--hero-title-line-height);
  letter-spacing: var(--hero-title-letter-spacing);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
}

.hero-media-region {
  position: static;
  width: auto;
}

.hero-media {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-indicator-wrap {
  position: absolute;
  top: calc(var(--hero-size) / 2);
  left: calc(100% + var(--hero-side-gap));
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: top 0.6s cubic-bezier(0.22, 1, 0.36, 1), left 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-media__window {
  width: var(--hero-size);
  height: calc(var(--hero-size) + var(--hero-meta-height));
  overflow: hidden;
  display: block;
  transition: width 0.4s ease-out, height 0.4s ease-out;
  will-change: width, height;
}

.hero-media__viewport {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  scroll-snap-type: y mandatory;
  overscroll-behavior: contain;
  padding: 0;
}

.hero-media__viewport::-webkit-scrollbar {
  display: none;
}

.hero-media__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--hero-panel-gap);
}

.hero-panel {
  display: block;
  position: relative;
  width: var(--hero-size);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition: width 0.4s ease-out;
  will-change: width;
}

.hero-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  padding: var(--hero-frame-padding);
  background: var(--frame-bg);
  overflow: hidden;
}

.hero-panel--transparent-frame .hero-frame {
  background: transparent;
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  inset: var(--hero-frame-padding);
  z-index: 2;
  background-image: var(--glitch-image);
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  will-change: clip-path, opacity, transform, filter;
}

.hero-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 400ms ease;
}

.hero-panel:hover .hero-card__image,
.hero-panel:focus-visible .hero-card__image {
  transform: scale(1.02);
}

.hero-panel.is-glitching .hero-card__image {
  animation: hero-glitch-base 640ms steps(2, end) both;
}

.hero-panel.is-glitching .hero-frame::before {
  opacity: 0.82;
  mix-blend-mode: screen;
  filter: hue-rotate(150deg) saturate(2.4) contrast(1.35);
  animation: hero-glitch-slice-a 640ms steps(2, end) both;
}

.hero-panel.is-glitching .hero-frame::after {
  opacity: 0.72;
  mix-blend-mode: difference;
  filter: hue-rotate(-140deg) saturate(2.2) contrast(1.25);
  animation: hero-glitch-slice-b 640ms steps(2, end) both;
}

.hero-card__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--hero-meta-gap);
  min-height: var(--hero-meta-height);
  padding-block: var(--hero-meta-pad-top);
  text-align: center;
  color: var(--text);
  pointer-events: none;
}

.hero-card__meta--hidden {
  visibility: hidden;
  opacity: 0;
}

.hero-card__index {
  position: absolute;
  right: calc(var(--hero-frame-padding) + 8px);
  bottom: calc(var(--hero-meta-height) + var(--hero-frame-padding) + 8px);
  z-index: 3;
  font-size: var(--hero-index-size);
  font-weight: var(--hero-index-weight);
  letter-spacing: var(--hero-index-letter-spacing);
  color: var(--muted);
  text-transform: uppercase;
  line-height: 1;
}

.hero-card__title {
  font-size: var(--hero-card-title-size);
  font-weight: var(--hero-card-title-weight);
  letter-spacing: var(--hero-card-title-letter-spacing);
  line-height: var(--hero-card-title-line-height);
  color: var(--text);
}

.scroll-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  user-select: none;
  pointer-events: none;
}

.scroll-dots {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.scroll-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.3;
  animation: pulse 1.6s infinite;
}

.scroll-dots span:nth-child(2) { animation-delay: 0.2s; }
.scroll-dots span:nth-child(3) { animation-delay: 0.4s; }
.scroll-dots span:nth-child(4) { animation-delay: 0.6s; }

.scroll-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 14px;
  letter-spacing: 0.12em;
  line-height: 1;
}

.site-footer {
  width: 100%;
  max-width: var(--site-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0; 
  gap: 10px;
  padding-top: 0; 
}

.footer-mark-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-mark-image {
  width: var(--footer-mark-size);
  height: var(--footer-mark-size);
  object-fit: contain;
  opacity: 0.9;
}

.footer-copy {
  font-size: var(--footer-copy-size);
  color: var(--muted);
  text-align: center;
}

.menu-toggle {
  display: none;
  width: 28px;
  height: 24px;
  position: relative;
  z-index: 60;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: var(--text);
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: top 240ms ease, transform 240ms ease, opacity 200ms ease;
}

.menu-toggle span:nth-child(1) { top: 3px; }
.menu-toggle span:nth-child(2) { top: 11px; }
.menu-toggle span:nth-child(3) { top: 19px; }

body.menu-open .menu-toggle {
  color: #ffffff;
}

.menu-toggle.is-open span:nth-child(1),
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2),
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3),
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  color: #ffffff;
  background: rgba(255, 102, 0, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: flex; 
  transition: opacity 280ms ease, visibility 280ms ease;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mobile-nav__panel {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 32px 40px;
  transform: translateX(100%);
  transition: transform 340ms ease;
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__center {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
}

.mobile-nav__center > a {
  display: inline-block;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #ffffff;
  transition: filter 120ms ease;
}

.mobile-nav__center > a:hover,
.mobile-nav__center > a:focus-visible {
  color: #ff7a1a;
  animation: nav-glitch 420ms steps(2, end);
}

.mobile-nav__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 8px;
}

.mobile-nav__sns a {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav__sns img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  50% {
    opacity: 0.95;
    transform: translateY(4px);
  }
}

@keyframes loading-content-wipe {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  42% {
    opacity: 1;
    transform: translateY(-6px);
  }
  100% {
    opacity: 0;
    transform: translateY(-18px);
  }
}

@keyframes loading-marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}

@keyframes loading-marquee-right {
  from {
    transform: translateX(-25%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes loading-draw-path {
  from {
    stroke-dashoffset: var(--path-length);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes nav-glitch {
  0%, 100% {
    filter: none;
    text-shadow: none;
    transform: translateX(0);
  }
  18% {
    filter: contrast(1.8) saturate(1.6);
    text-shadow: 2px 0 rgba(0, 255, 255, 0.75), -2px 0 rgba(255, 0, 80, 0.75);
    transform: translateX(-1px);
  }
  34% {
    filter: contrast(1.4) saturate(0.7);
    text-shadow: -3px 0 rgba(0, 255, 255, 0.65), 2px 0 rgba(255, 0, 80, 0.65);
    transform: translateX(2px);
  }
  58% {
    filter: contrast(2) saturate(1.3);
    text-shadow: 1px 0 rgba(255, 255, 255, 0.5), -1px 0 rgba(255, 0, 80, 0.55);
    transform: translateX(-2px);
  }
  78% {
    filter: contrast(1.2);
    text-shadow: 2px 0 rgba(0, 255, 255, 0.35);
    transform: translateX(1px);
  }
}

@keyframes hero-glitch-base {
  0%, 100% {
    filter: none;
    transform: translate(0, 0);
  }
  18% {
    filter: contrast(1.45) saturate(1.7) brightness(1.1);
    transform: translate(-7px, 3px) skewX(-1deg);
  }
  36% {
    filter: contrast(1.7) saturate(0.55) brightness(1.18);
    transform: translate(8px, -3px) skewX(1.2deg);
  }
  58% {
    filter: contrast(1.35) saturate(2.2);
    transform: translate(-5px, 0) scaleX(1.015);
  }
  78% {
    filter: contrast(1.85) saturate(0.7);
    transform: translate(4px, 2px) scaleY(0.985);
  }
}

@keyframes hero-glitch-slice-a {
  0%, 100% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    transform: translate(0, 0);
  }
  14% {
    clip-path: inset(5% 0 76% 0);
    opacity: 0.82;
    transform: translate(-18px, 0);
  }
  34% {
    clip-path: inset(34% 0 44% 0);
    opacity: 0.78;
    transform: translate(16px, 0);
  }
  62% {
    clip-path: inset(66% 0 10% 0);
    opacity: 0.62;
    transform: translate(-14px, 0);
  }
  80% {
    clip-path: inset(18% 0 62% 0);
    opacity: 0.42;
    transform: translate(12px, 0);
  }
  88% {
    clip-path: inset(48% 0 50.5% 0);
    opacity: 0.36;
    transform: translate(-8px, 0);
  }
  94% {
    clip-path: inset(67% 0 31.8% 0);
    opacity: 0.18;
    transform: translate(4px, 0);
  }
}

@keyframes hero-glitch-slice-b {
  0%, 100% {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
    transform: translate(0, 0);
  }
  20% {
    clip-path: inset(22% 0 54% 0);
    opacity: 0.72;
    transform: translate(14px, 0);
  }
  46% {
    clip-path: inset(52% 0 20% 0);
    opacity: 0.68;
    transform: translate(-18px, 0);
  }
  72% {
    clip-path: inset(10% 0 72% 0);
    opacity: 0.44;
    transform: translate(11px, 0);
  }
  86% {
    clip-path: inset(76% 0 22.8% 0);
    opacity: 0.3;
    transform: translate(-12px, 0);
  }
  94% {
    clip-path: inset(28% 0 70.8% 0);
    opacity: 0.16;
    transform: translate(-5px, 0);
  }
}

@keyframes page-bg-glitch-base {
  0%, 100% {
    clip-path: inset(0);
    filter: hue-rotate(180deg) invert(1);
    transform: translateX(0);
  }
  16% {
    clip-path: inset(0 0 4% 0);
    filter: hue-rotate(210deg) invert(1) contrast(1.35) saturate(1.4);
    transform: translateX(-16px);
  }
  34% {
    clip-path: inset(5% 0 0 0);
    filter: hue-rotate(140deg) invert(1) contrast(1.55) saturate(0.75);
    transform: translateX(18px);
  }
  58% {
    clip-path: inset(0 0 2% 0);
    filter: hue-rotate(230deg) invert(1) contrast(1.25) saturate(1.6);
    transform: translateX(-10px);
  }
  82% {
    clip-path: inset(0);
    filter: hue-rotate(180deg) invert(1) contrast(1.08);
    transform: translateX(5px);
  }
}

body[data-theme="light"] .page-bg__hero-layer.is-bg-glitching {
  animation-name: page-bg-glitch-base-light;
}

@keyframes page-bg-glitch-base-light {
  0%, 100% {
    clip-path: inset(0);
    filter: hue-rotate(180deg) invert(1) contrast(1.42) saturate(1.32);
    transform: translateX(0);
  }
  16% {
    clip-path: inset(0 0 4% 0);
    filter: hue-rotate(210deg) invert(1) contrast(1.75) saturate(1.7);
    transform: translateX(-16px);
  }
  34% {
    clip-path: inset(5% 0 0 0);
    filter: hue-rotate(140deg) invert(1) contrast(1.9) saturate(0.9);
    transform: translateX(18px);
  }
  58% {
    clip-path: inset(0 0 2% 0);
    filter: hue-rotate(230deg) invert(1) contrast(1.6) saturate(1.9);
    transform: translateX(-10px);
  }
  82% {
    clip-path: inset(0);
    filter: hue-rotate(180deg) invert(1) contrast(1.5) saturate(1.38);
    transform: translateX(5px);
  }
}

@keyframes page-bg-glitch-slice-a {
  0%, 100% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    transform: translateX(0);
  }
  14% {
    clip-path: inset(8% 0 78% 0);
    opacity: 0.5;
    transform: translateX(-42px);
  }
  42% {
    clip-path: inset(42% 0 46% 0);
    opacity: 0.34;
    transform: translateX(36px);
  }
  74% {
    clip-path: inset(72% 0 16% 0);
    opacity: 0.18;
    transform: translateX(-22px);
  }
}

@keyframes page-bg-glitch-slice-b {
  0%, 100% {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
    transform: translateX(0);
  }
  22% {
    clip-path: inset(24% 0 58% 0);
    opacity: 0.42;
    transform: translateX(36px);
  }
  52% {
    clip-path: inset(58% 0 28% 0);
    opacity: 0.28;
    transform: translateX(-44px);
  }
  88% {
    clip-path: inset(38% 0 60% 0);
    opacity: 0.12;
    transform: translateX(18px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-panel.is-glitching .hero-card__image,
  .hero-panel.is-glitching .hero-frame::before,
  .hero-panel.is-glitching .hero-frame::after {
    animation: none;
    opacity: 0;
  }

  .page-bg__hero-layer.is-bg-glitching,
  .page-bg__hero-layer.is-bg-glitching::before,
  .page-bg__hero-layer.is-bg-glitching::after {
    animation: none;
  }
}

@media (max-width: 820px) {
  :root {
    --page-pad-x: 12px;
    --layout-pad-top: max(12px, env(safe-area-inset-top));
    --layout-pad-bottom: max(22px, calc(env(safe-area-inset-bottom) + 18px));

    --brand-logo-width: 124px;
    --header-to-hero-gap: 6px;
    --hero-size: min(340px, calc(100vw - 30px));
    --hero-stage-gap: 22px;
    --hero-panel-gap: 64px;
    --hero-visible-height: calc(var(--hero-size) + var(--hero-meta-height));
    --hero-frame-padding: 6px;

    --hero-meta-pad-top: 2px;
    --hero-meta-height: 36px;
    --hero-card-title-size: 18px;
    --hero-title-size: 18px;
    --hero-intro-size: 12px;

  }

  .hero-shell {
    max-width: none;
    padding-block: 5px; 
  }

  .header-bar {
    width: 100%;
    max-width: var(--site-width);
    margin-inline: 0;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-bottom: 0; 
  }

  .socials,
  .main-nav {
    display: none;
  }

  .theme-switcher {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: start;
    align-self: center;
    gap: 6px;
    width: 44px;
    min-height: 36px;
    font-size: 11px;
    line-height: 1.1;
    letter-spacing: 0.01em;
  }

  .theme-separator {
    display: block;
    width: 1px;
    height: 10px;
    opacity: 0.35;
  }

  .theme-option {
    width: 100%;
    text-align: center;
  }

  .header-brand {
    grid-column: 2;
    grid-row: 1;
    align-items: center;
    justify-content: center;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }

  .hero-stage {
    width: calc(100vw - (var(--page-pad-x) * 2));
    max-width: calc(100vw - (var(--page-pad-x) * 2));
  }

  .hero-figure {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--hero-stage-gap);
  }

  .hero-copy-band {
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .hero-media-region {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    row-gap: var(--hero-stage-gap);
  }

  .hero-media {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-copy {
    position: static;
    inset: auto;
    transform: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    gap: 4px;
    text-align: center;
    white-space: normal;
  }

  .scroll-indicator-wrap {
    position: static;
    transform: none;
    grid-column: auto;
    width: 100%;
  }

  .hero-copy__eyebrow {
    display: block;
    width: 100%;
    font-size: var(--hero-intro-size);
    line-height: 1;
    text-align: center;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .hero-copy__headline {
    display: block;
    width: 100%;
    font-size: var(--hero-title-size);
    line-height: 1;
    text-align: center;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .hero-media__window {
    width: var(--hero-size);
    height: var(--hero-visible-height);
    margin-inline: auto;
  }

  .hero-media__viewport {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    scroll-padding-block: 0;
  }

  .hero-media__stack {
    gap: var(--hero-panel-gap);
  }

  .hero-panel {
    flex: 0 0 var(--hero-visible-height);
    height: var(--hero-visible-height);
    overflow: hidden;
  }

  .hero-card__meta {
    flex: 0 0 var(--hero-meta-height);
    height: var(--hero-meta-height);
    min-height: 0;
  }

  .scroll-indicator {
    flex-direction: column;
    gap: 6px;
  }

  .scroll-dots {
    flex-direction: row;
    gap: 10px;
  }

  .scroll-dots span {
    width: 6px;
    height: 6px;
  }

  .scroll-text {
    writing-mode: horizontal-tb;
    font-size: 14px;
    letter-spacing: 0.14em;
  }

  .site-footer {
    padding-top: 0; 
  }

}


@media (min-width: 821px) and (min-height: 620px) {
  body.top-page {
    overflow: hidden;
  }

  body.top-page .hero-shell {
    padding-block: 15px; 
  }
}

body.top-page {
  overflow-x: hidden;
}

body.top-page .layout {
  min-height: 100svh;
  padding: clamp(18px, 3vw, 26px) var(--page-pad-x) clamp(16px, 2.4vw, 24px);
}

body.top-page .page-bg__hero-layer {
  display: none !important;
}

body.top-page .header-bar {
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: var(--site-width);
  padding-bottom: 0;
}

body.top-page .header-brand {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

body.top-page .brand-logo {
  width: clamp(86px, 10vw, 96px);
}

body.top-page .theme-switcher {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: var(--header-min-height);
  gap: 7px;
  font-size: var(--nav-font-size);
  line-height: 1;
  letter-spacing: var(--nav-letter-spacing);
}

body.top-page .theme-separator {
  display: inline;
  width: auto;
  height: auto;
}

body.top-page .theme-option {
  width: auto;
  text-align: center;
}

body.top-page .main-nav,
body.top-page .socials {
  display: none !important;
}

body.top-page .menu-toggle {
  display: block;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: center;
}

body.top-page .hero-shell {
  --top-visual-width: clamp(520px, 68vw, 650px);
  width: 100%;
  max-width: var(--site-width);
  flex: 0 1 auto;
  margin-block: clamp(38px, 7vh, 56px) clamp(20px, 4vh, 34px);
  padding-block: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.top-page .top-intro-copy {
  width: var(--top-visual-width);
  max-width: 100%;
  margin: 0 0 14px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
}

body.top-page .hero-stage,
body.top-page .hero-figure,
body.top-page .hero-media-region,
body.top-page .hero-media,
body.top-page .hero-media__window,
body.top-page .hero-media__viewport,
body.top-page .hero-media__stack,
body.top-page .hero-panel {
  width: var(--top-visual-width);
  max-width: 100%;
  height: auto;
  overflow: visible;
}

body.top-page .hero-figure {
  will-change: auto;
}

body.top-page .hero-copy-band,
body.top-page .hero-copy,
body.top-page .scroll-indicator-wrap,
body.top-page .hero-card__meta {
  display: none !important;
}

body.top-page .hero-media__viewport {
  scroll-snap-type: none;
}

body.top-page .hero-media__stack {
  display: block;
}

body.top-page .hero-panel {
  scroll-snap-align: none;
}

body.top-page .hero-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  padding: 0;
  border: 10px solid #000;
  background: transparent;
  overflow: visible;
}

body.top-page .hero-frame::before,
body.top-page .hero-frame::after {
  inset: 0;
}

body.top-page .hero-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

body.top-page .hero-feature-label {
  position: absolute;
  right: 0;
  bottom: -24px;
  z-index: 4;
  color: var(--text);
  font-size: 11px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: none;
  pointer-events: none;
}

body.top-page .site-footer {
  padding-top: 0;
}

@media (max-width: 820px) {
  body.top-page .layout {
    padding: max(12px, env(safe-area-inset-top)) var(--page-pad-x) max(18px, calc(env(safe-area-inset-bottom) + 14px));
  }

  body.top-page .brand-logo {
    width: 86px;
  }

  body.top-page .hero-shell {
    --top-visual-width: min(70vw, 340px);
    margin-block: clamp(28px, 5vh, 42px) clamp(18px, 4vh, 28px);
  }

  body.top-page .top-intro-copy {
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 1.2;
  }

  body.top-page .hero-frame {
    aspect-ratio: 3 / 4;
    border-width: 5px;
  }

  body.top-page .hero-feature-label {
    bottom: -20px;
    font-size: 9px;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 820px) and (orientation: landscape) {
  body.top-page .hero-shell {
    --top-visual-width: min(62vw, 52vh);
    margin-block: clamp(16px, 4vh, 28px) clamp(14px, 3vh, 22px);
  }

  body.top-page .hero-frame {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  body.top-page .hero-shell {
    --top-visual-width: min(74vw, 300px);
  }
}

body.top-page .layout {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

body.top-page .header-bar,
body.top-page .site-footer {
  flex: 0 0 auto;
}

body.top-page .hero-shell {
  margin-top: auto;
  margin-bottom: auto;
  padding-block: 0;
}

body.top-page .site-footer {
  margin-top: 0;
}

@media (max-width: 820px) {
  body.top-page .hero-shell {
    margin-top: auto;
    margin-bottom: auto;
  }
}

@media (max-width: 820px) and (orientation: landscape) {
  body.top-page .hero-shell {
    margin-top: auto;
    margin-bottom: auto;
  }
}

body.top-page .page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/about/about_background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: hue-rotate(180deg) invert(1);
  opacity: 0.1;
  pointer-events: none;
}


@media (max-width: 820px) and (orientation: landscape) {
  body.top-page .hero-shell {
    --top-visual-width: min(72vw, 520px);
  }
}


body.top-page .hero-feature-label {
  left: 50%;
  right: auto;
  bottom: -34px;
  transform: translateX(-50%);
  width: max-content;
  max-width: 100%;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

@media (max-width: 820px) {
  body.top-page .hero-feature-label {
    bottom: -30px;
    font-size: 10px;
    font-weight: 700;
  }
}


body.top-page .top-intro-copy.top-intro-marquee {
  overflow: hidden;
  white-space: nowrap;
  color: #ff3b30;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: left;
}

body.top-page .top-intro-marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  min-width: max-content;
  will-change: transform;
  animation: top-intro-marquee-loop 14s linear infinite;
}

body.top-page .top-intro-marquee__track span {
  flex: 0 0 auto;
}

@keyframes top-intro-marquee-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 820px) {
  body.top-page .top-intro-copy.top-intro-marquee {
    font-size: 12px;
  }

  body.top-page .top-intro-marquee__track {
    gap: 22px;
    animation-duration: 13s;
  }
}


body.top-page .top-intro-copy.top-intro-marquee {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

body.top-page .top-intro-marquee__track {
  gap: 34px;
  opacity: 0.5;
  animation: top-intro-marquee-loop 24s steps(192, end) infinite;
}

body.top-page .top-intro-marquee__track span {
  background: repeating-linear-gradient(
    45deg,
    #ff3b30 0px 2px,
    rgba(0, 0, 0, 0.5) 2px 4px
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 820px) {
  body.top-page .top-intro-copy.top-intro-marquee {
    font-size: 15px;
  }

  body.top-page .top-intro-marquee__track {
    gap: 26px;
    animation-duration: 22s;
  }
}


body.top-page .top-intro-marquee__track span {
  background: repeating-linear-gradient(
    45deg,
    #ff3b30 0px 1px,
    rgba(0, 0, 0, 0.5) 1px 2px
  );
  -webkit-background-clip: text;
  background-clip: text;
}


body.top-page .hero-feature-label {
  font-family: "Yu Gothic", "Yu Gothic UI", "Hiragino Maru Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 800;
}


body.top-page .top-intro-marquee__track span {
  background: repeating-linear-gradient(
    45deg,
    #ff3b30 0px 1px,
    rgba(255, 59, 48, 0) 1px 2px
  );
  -webkit-background-clip: text;
  background-clip: text;
}


body.top-page .top-intro-copy.top-intro-marquee {
  font-size: clamp(22px, 3vw, 30px);
}

@media (max-width: 820px) {
  body.top-page .top-intro-copy.top-intro-marquee {
    font-size: 17px;
  }
}


body.top-page {
  overflow-x: hidden;
  overflow-y: auto;
}

body.top-page .layout {
  min-height: 100svh;
}

body.top-page .hero-shell {
  margin-top: auto;
  margin-bottom: auto;
  padding-bottom: 46px;
}

body.top-page .hero-feature-label {
  bottom: -38px;
}

@media (min-width: 821px) and (min-height: 620px) {
  body.top-page {
    overflow-x: hidden;
    overflow-y: auto;
  }
}

@media (max-width: 820px) {
  body.top-page .hero-shell {
    padding-bottom: 20px;
  }

  body.top-page .hero-feature-label {
    bottom: -32px;
  }
}


body.top-page .hero-media__viewport {
  width: var(--top-visual-width);
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

body.top-page .hero-media__stack {
  width: max-content;
  max-width: none;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
}

body.top-page .hero-panel {
  flex: 0 0 var(--top-visual-width);
  width: var(--top-visual-width);
  max-width: none;
  height: auto;
  overflow: visible;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

body.top-page .hero-frame {
  width: 100%;
}

@media (max-width: 820px) {
  body.top-page .hero-media__stack {
    gap: 14px;
  }
}


body.top-page .hero-media__window {
  width: var(--top-visual-width);
  max-width: 100%;
  height: auto;
  overflow: visible;
}

body.top-page .hero-media__viewport {
  cursor: grab;
  touch-action: pan-x;
  padding-bottom: 44px;
  overflow-x: auto;
  overflow-y: hidden;
}

body.top-page .hero-panel {
  padding-bottom: 44px;
}

body.top-page .top-scroll-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: var(--top-visual-width);
  max-width: 100%;
  margin: -34px auto 0;
  position: relative;
  z-index: 5;
}

body.top-page .top-scroll-dot {
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: currentColor;
  color: var(--text);
  opacity: 0.32;
  cursor: pointer;
}

body.top-page .top-scroll-dot.is-active {
  opacity: 0.9;
}

@media (max-width: 820px) {
  body.top-page .hero-media__viewport,
  body.top-page .hero-panel {
    padding-bottom: 20px;
  }

  body.top-page .top-scroll-dots {
    margin-top: -30px;
  }
}


body.top-page {
  overflow-x: hidden;
  overflow-y: auto;
}

body.top-page .hero-shell {
  margin-top: auto;
  margin-bottom: auto;
  padding-bottom: 0;
}

body.top-page .hero-stage {
  width: var(--top-visual-width);
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.top-page .hero-media,
body.top-page .hero-media-region,
body.top-page .hero-media__window,
body.top-page .hero-media__viewport {
  width: 100%;
  max-width: 100%;
}

body.top-page .hero-media__viewport {
  padding-bottom: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x pan-y;
}

body.top-page .hero-media__viewport::-webkit-scrollbar {
  display: none;
}

body.top-page .hero-media__stack {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  width: max-content;
  max-width: none;
}

body.top-page .hero-panel {
  flex: 0 0 var(--top-visual-width);
  width: var(--top-visual-width);
  max-width: none;
  padding-bottom: 0;
  overflow: visible;
  scroll-snap-align: center;
}

body.top-page .hero-frame {
  width: 100%;
  border: 0 !important;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

body.top-page .hero-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

body.top-page .top-scroll-dots {
  width: 100%;
  margin: 10px auto 0;
  justify-content: center;
  align-self: center;
}

body.top-page .top-feature-labels {
  width: 100%;
  min-height: 1.25em;
  margin-top: 10px;
  text-align: center;
  position: relative;
}

body.top-page .top-feature-label {
  position: static;
  display: none;
  transform: none;
  width: 100%;
  max-width: 100%;
  margin: 0;
  text-align: center;
}

body.top-page .top-feature-label.is-active {
  display: block;
}

@media (max-width: 820px) {
  body.top-page .hero-stage {
    width: var(--top-visual-width);
  }

  body.top-page .hero-media__stack {
    gap: 14px;
  }

  body.top-page .top-scroll-dots {
    margin-top: 8px;
  }

  body.top-page .top-feature-labels {
    margin-top: 8px;
  }
}


body.top-page .hero-panel--apparel .hero-frame {
  border: 10px solid #000 !important;
}

body.top-page .hero-panel--apparel .hero-card__image {
  object-fit: cover;
}

body.top-page .hero-media__viewport {
  scroll-snap-type: x mandatory;
}

body.top-page .top-scroll-dots {
  margin-top: 4px;
}

body.top-page .top-feature-labels {
  margin-top: 8px;
}

@media (max-width: 820px) {
  body.top-page .hero-panel--apparel .hero-frame {
    border-width: 5px !important;
  }

  body.top-page .top-scroll-dots {
    margin-top: 3px;
  }

  body.top-page .top-feature-labels {
    margin-top: 7px;
  }
}


body.top-page .hero-shell {
  margin-top: auto;
  margin-bottom: auto;
  padding-bottom: 0;
}

body.top-page .hero-stage {
  width: var(--top-visual-width);
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.top-page .hero-media,
body.top-page .hero-media-region,
body.top-page .hero-media__window,
body.top-page .hero-media__viewport {
  width: 100%;
  max-width: 100%;
}

body.top-page .hero-media__window {
  overflow: visible;
}

body.top-page .hero-media__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x pan-y;
  padding-bottom: 0;
}

body.top-page .hero-media__viewport::-webkit-scrollbar {
  display: none;
}

body.top-page .hero-media__stack {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  width: max-content;
  max-width: none;
}

body.top-page .hero-panel {
  flex: 0 0 var(--top-visual-width);
  width: var(--top-visual-width);
  max-width: none;
  padding-bottom: 0;
  overflow: visible;
  scroll-snap-align: center;
}

body.top-page .hero-frame {
  width: 100%;
  border: 0 !important;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

body.top-page .hero-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

body.top-page .hero-panel--apparel .hero-frame {
  border: 10px solid #000 !important;
}

body.top-page .hero-panel--apparel .hero-card__image {
  object-fit: cover;
}

body.top-page .top-scroll-dots {
  width: 100%;
  margin: 3px auto 0;
  justify-content: center;
  align-self: center;
}

body.top-page .top-feature-labels {
  width: 100%;
  min-height: 1.25em;
  margin-top: 8px;
  text-align: center;
  position: relative;
}

body.top-page .top-feature-label {
  position: static;
  display: none;
  transform: none;
  width: 100%;
  max-width: 100%;
  margin: 0;
  text-align: center;
}

body.top-page .top-feature-label.is-active {
  display: block;
}

@media (max-width: 820px) {
  body.top-page .hero-media__stack {
    gap: 14px;
  }

  body.top-page .hero-panel--apparel .hero-frame {
    border-width: 5px !important;
  }

  body.top-page .top-scroll-dots {
    margin-top: 2px;
  }

  body.top-page .top-feature-labels {
    margin-top: 7px;
  }
}


body.top-page .top-feature-labels {
  margin-top: 14px;
  margin-bottom: 0;
}

body.top-page .top-scroll-dots {
  margin-top: 12px;
}

body.top-page .hero-media__viewport {
  scroll-snap-type: x proximity;
}

@media (max-width: 820px) {
  body.top-page .top-feature-labels {
    margin-top: 12px;
  }

  body.top-page .top-scroll-dots {
    margin-top: 10px;
  }
}


body.top-page .hero-media__viewport {
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
}

body.top-page .hero-panel {
  scroll-snap-align: center;
  scroll-snap-stop: normal;
}


body.top-page .hero-panel--apparel .hero-frame {
  --top-apparel-mat: 10px;
  border: 0 !important;
  padding: var(--top-apparel-mat);
  background: #000;
}

body.top-page .hero-panel--apparel .hero-frame::before,
body.top-page .hero-panel--apparel .hero-frame::after {
  inset: var(--top-apparel-mat);
}

body.top-page .hero-panel--apparel .hero-card__image {
  object-fit: cover;
}

@media (max-width: 820px) {
  body.top-page .hero-panel--apparel .hero-frame {
    --top-apparel-mat: 5px;
  }
}


body.top-page .hero-panel--apparel .hero-frame {
  display: block;
}

body.top-page .hero-panel--apparel .hero-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.top-page .hero-panel--apparel.is-glitching .hero-card__image {
  animation: hero-glitch-base 640ms steps(2, end) both;
}

body.top-page .hero-panel--apparel .hero-frame::before,
body.top-page .hero-panel--apparel .hero-frame::after {
  width: auto;
  height: auto;
  transform-origin: center center;
}


body.top-page .hero-panel .top-feature-labels {
  width: 100%;
  min-height: auto;
  margin-top: 14px;
  margin-bottom: 0;
  text-align: center;
  pointer-events: none;
}

body.top-page .hero-panel .top-feature-label {
  position: static;
  display: block;
  width: 100%;
  transform: none;
  white-space: normal;
}

@media (max-width: 820px) {
  body.top-page .hero-panel .top-feature-labels {
    margin-top: 12px;
  }
}

body.top-page .hero-panel--apparel.is-glitching .hero-frame {
  animation: hero-glitch-base 640ms steps(2, end) both;
  transform-origin: center center;
}

body.top-page .hero-panel--apparel.is-glitching .hero-card__image {
  animation: none;
}

body.top-page .hero-card__picture {
  display: block;
  width: 100%;
  height: 100%;
}

body.top-page .hero-panel--apparel .hero-frame {
  border: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

body.top-page .hero-panel--apparel .hero-frame::before,
body.top-page .hero-panel--apparel .hero-frame::after {
  inset: 0 !important;
}

body.top-page .hero-panel--apparel .hero-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.top-page .hero-media__viewport {
  width: var(--top-visual-width);
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
}

body.top-page .hero-media__stack {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  width: max-content;
  max-width: none;
}

body.top-page .hero-panel {
  flex: 0 0 var(--top-visual-width);
  width: var(--top-visual-width);
  max-width: none;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (max-width: 820px) {
  body.top-page .hero-stage {
    --top-visual-width: var(--site-width);
  }

  body.top-page .hero-frame {
    aspect-ratio: 3 / 4;
  }
}

body.top-page {
  overflow-x: hidden;
  overflow-y: auto;
}

body.top-page .layout {
  height: auto;
  min-height: 100svh;
}

body.top-page .hero-shell {
  flex-shrink: 0;
}

body.top-page .hero-media__window {
  width: var(--top-visual-width);
  max-width: 100%;
  height: auto;
  overflow: hidden !important;
}

body.top-page .hero-media__viewport {
  width: var(--top-visual-width);
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

body.top-page .hero-media__stack {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0 !important;
  width: max-content;
  max-width: none;
}

body.top-page .hero-panel {
  flex: 0 0 var(--top-visual-width);
  width: var(--top-visual-width);
  max-width: none;
  scroll-snap-align: start;
}

body.top-page .hero-frame {
  overflow: hidden;
}

body.top-page .hero-panel--apparel .hero-card__image {
  object-fit: contain !important;
}

body.top-page .hero-panel:hover .hero-card__image,
body.top-page .hero-panel:focus-visible .hero-card__image {
  transform: none !important;
}

@media (max-width: 820px) {
  body.top-page .hero-stage {
    --top-visual-width: var(--site-width);
  }

  body.top-page .hero-frame {
    aspect-ratio: 3 / 4;
  }
}

body.top-page .top-intro-copy.top-intro-marquee {
  width: var(--top-visual-width);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 820px) {
  body.top-page .top-intro-copy.top-intro-marquee {
    width: var(--top-visual-width);
    max-width: var(--top-visual-width);
  }
}

body.top-page .hero-shell {
  --top-visual-width: clamp(520px, 68vw, 650px);
}

body.top-page .top-intro-copy.top-intro-marquee,
body.top-page .hero-stage {
  width: var(--top-visual-width);
  max-width: 100%;
}

@media (max-width: 820px) {
  body.top-page .hero-shell {
    --top-visual-width: var(--site-width);
  }

  body.top-page .top-intro-copy.top-intro-marquee,
  body.top-page .hero-stage {
    width: var(--top-visual-width);
    max-width: var(--top-visual-width);
  }
}

@media (max-width: 820px) {
  body.top-page .top-intro-copy.top-intro-marquee {
    font-size: 20px;
  }
}

@media (min-width: 821px) {
  body.top-page .layout {
    padding-left: 40px;
    padding-right: 40px;
  }

  body.top-page .header-bar {
    width: 100%;
    max-width: none;
  }

  body.top-page .hero-shell {
    --top-visual-width: clamp(560px, 72vw, 710px);
    max-width: none;
  }
}

@media (min-width: 821px) and (max-height: 820px) {
  body.top-page {
    overflow-x: hidden;
    overflow-y: auto;
  }

  body.top-page .layout {
    min-height: auto;
  }

  body.top-page .hero-shell {
    margin-top: 34px;
    margin-bottom: 42px;
    padding-bottom: 0;
  }

  body.top-page .site-footer {
    margin-top: 0;
    padding-top: 0;
  }
}

@media (min-width: 821px) and (max-height: 820px) {
  body.top-page .site-footer {
    width: 100%;
    max-width: none;
    flex: 0 0 auto;
    align-self: center;
  }

  body.top-page .footer-mark-link,
  body.top-page .footer-copy {
    margin-left: auto;
    margin-right: auto;
  }
}

body.top-page {
  overflow-x: hidden;
  overflow-y: auto;
}

body.top-page .layout {
  min-height: 100svh;
  height: auto;
  display: grid;
  grid-template-rows: auto minmax(min-content, 1fr) auto;
  align-items: stretch;
}

body.top-page .header-bar,
body.top-page .site-footer {
  flex: none;
  align-self: auto;
}

body.top-page .hero-shell {
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0 auto;
  padding: clamp(28px, 5vh, 54px) 0 clamp(34px, 5vh, 60px);
  align-self: center;
  justify-self: center;
  flex: none;
}

body.top-page .site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 0;
  justify-self: center;
}

body.top-page .footer-mark-link,
body.top-page .footer-copy {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 821px) and (max-height: 820px) {
  body.top-page .layout {
    min-height: 100svh;
    grid-template-rows: auto minmax(min-content, 1fr) auto;
  }

  body.top-page .hero-shell {
    margin: 0 auto;
    padding-top: 28px;
    padding-bottom: 44px;
  }

  body.top-page .site-footer {
    margin: 0;
  }
}

@media (max-width: 820px) {
  body.top-page .layout {
    min-height: 100svh;
    grid-template-rows: auto minmax(min-content, 1fr) auto;
  }

  body.top-page .hero-shell {
    margin: 0 auto;
    padding-top: 24px;
    padding-bottom: 28px;
  }
}

body.top-page {
  overflow-x: hidden;
  overflow-y: auto;
}

body.top-page .layout {
  min-height: 100svh;
  height: auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: stretch;
}

body.top-page .header-bar {
  grid-row: 1;
  align-self: start;
}

body.top-page .hero-shell {
  grid-row: 2;
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  flex: none;
}

body.top-page .site-footer {
  grid-row: 3;
  align-self: end;
  justify-self: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 0;
  flex: none;
}

@media (max-width: 820px) {
  body.top-page .hero-shell {
    padding-top: 28px;
    padding-bottom: 32px;
  }
}

body.top-page .top-intro-copy.top-intro-marquee {
  transition: font-size 240ms ease;
}

body.top-page .hero-frame,
body.top-page .hero-media__window,
body.top-page .hero-media__viewport,
body.top-page .hero-panel {
  transition: none !important;
}

@media (min-width: 641px) and (max-width: 900px) {
  body.top-page .hero-shell {
    --top-visual-width: clamp(560px, 72vw, 710px);
  }

  body.top-page .hero-frame {
    aspect-ratio: 4 / 3;
  }

  body.top-page .top-intro-copy.top-intro-marquee {
    font-size: clamp(20px, 3.1vw, 25px);
  }
}

@media (max-width: 640px) {
  body.top-page .hero-shell {
    --top-visual-width: var(--site-width);
  }

  body.top-page .hero-frame {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 640px) {
  body.top-page .header-bar {
    width: var(--site-width);
    max-width: var(--site-width);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 641px) {
  body.top-page .hero-shell,
  body.top-page .hero-stage {
    --top-visual-width: clamp(560px, 72vw, 710px);
  }

  body.top-page .top-intro-copy.top-intro-marquee,
  body.top-page .hero-stage,
  body.top-page .hero-media__window,
  body.top-page .hero-media__viewport,
  body.top-page .hero-panel {
    width: var(--top-visual-width);
    max-width: var(--top-visual-width);
  }

  body.top-page .hero-frame {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  body.top-page .hero-shell,
  body.top-page .hero-stage {
    --top-visual-width: var(--site-width);
  }

  body.top-page .hero-frame {
    aspect-ratio: 3 / 4;
  }
}


@media (min-width: 821px) {
  body.top-page .hero-shell,
  body.top-page .hero-stage {
    --top-visual-width: 852px;
  }

  body.top-page .top-intro-copy.top-intro-marquee,
  body.top-page .hero-stage,
  body.top-page .hero-media__window,
  body.top-page .hero-media__viewport,
  body.top-page .hero-panel {
    width: var(--top-visual-width);
    max-width: var(--top-visual-width);
  }

  body.top-page .hero-frame {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 820px) {
  body.top-page .hero-shell,
  body.top-page .hero-stage {
    --top-visual-width: var(--site-width);
  }

  body.top-page .top-intro-copy.top-intro-marquee,
  body.top-page .hero-stage,
  body.top-page .hero-media__window,
  body.top-page .hero-media__viewport,
  body.top-page .hero-panel {
    width: var(--top-visual-width);
    max-width: var(--top-visual-width);
  }

  body.top-page .hero-frame {
    aspect-ratio: 3 / 4;
  }

  body.top-page .header-bar {
    width: var(--site-width);
    max-width: var(--site-width);
    margin-left: auto;
    margin-right: auto;
  }
}


body.top-page .hero-media__stack {
  gap: clamp(56px, 8vw, 96px) !important;
}

@media (max-width: 820px) {
  body.top-page .hero-media__stack {
    gap: clamp(28px, 9vw, 52px) !important;
  }
}


.header-bar {
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: var(--site-width);
  padding-bottom: 0;
}

.header-brand {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.brand-logo {
  width: clamp(86px, 10vw, 96px);
}

.theme-switcher {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  flex-direction: row;
}

.main-nav,
.socials {
  display: none !important;
}

.menu-toggle {
  display: block;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: center;
}

@media (min-width: 821px) {
  .header-bar {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .header-bar {
    width: var(--site-width);
    max-width: var(--site-width);
    margin-left: auto;
    margin-right: auto;
  }

  .brand-logo {
    width: 86px;
  }
}

.main-nav a,
.mobile-nav__center > a {
  position: relative;
  color: var(--text);
  text-decoration: none;
  isolation: isolate;
}

.mobile-nav__center > a {
  color: #ffffff;
}

.main-nav a::before,
.main-nav a::after,
.mobile-nav__center > a::before,
.mobile-nav__center > a::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: screen;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.mobile-nav__center > a:hover,
.mobile-nav__center > a:focus-visible {
  color: currentColor;
  filter: none;
  animation: menu-readable-glitch 260ms steps(2, end);
}

.main-nav a:hover::before,
.main-nav a:focus-visible::before,
.mobile-nav__center > a:hover::before,
.mobile-nav__center > a:focus-visible::before {
  color: #ff2b2b;
  opacity: 0.72;
  transform: translate(-1.5px, -0.5px);
  animation: menu-glitch-red 260ms steps(2, end);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.mobile-nav__center > a:hover::after,
.mobile-nav__center > a:focus-visible::after {
  color: #00d5ff;
  opacity: 0.58;
  transform: translate(1.5px, 0.5px);
  animation: menu-glitch-cyan 260ms steps(2, end);
}

.mobile-nav__center > a:hover,
.mobile-nav__center > a:focus-visible {
  color: #ffffff;
}

@keyframes menu-readable-glitch {
  0%, 100% { transform: translate(0, 0); text-shadow: none; }
  35% { transform: translate(0.5px, 0); text-shadow: 1px 0 rgba(255, 43, 43, 0.45), -1px 0 rgba(0, 213, 255, 0.35); }
  70% { transform: translate(-0.5px, 0); text-shadow: -1px 0 rgba(255, 43, 43, 0.35), 1px 0 rgba(0, 213, 255, 0.45); }
}

@keyframes menu-glitch-red {
  0%, 100% { clip-path: inset(0 0 0 0); transform: translate(-1.5px, -0.5px); }
  45% { clip-path: inset(0 0 58% 0); transform: translate(-3px, 0); }
  75% { clip-path: inset(54% 0 0 0); transform: translate(-1px, 1px); }
}

@keyframes menu-glitch-cyan {
  0%, 100% { clip-path: inset(0 0 0 0); transform: translate(1.5px, 0.5px); }
  45% { clip-path: inset(52% 0 0 0); transform: translate(3px, 0); }
  75% { clip-path: inset(0 0 60% 0); transform: translate(1px, -1px); }
}

.main-nav a:hover::before,
.main-nav a:focus-visible::before,
.mobile-nav__center > a:hover::before,
.mobile-nav__center > a:focus-visible::before {
  opacity: 0.95;
  transform: translate(-4px, -1px);
  text-shadow: -2px 0 rgba(255, 43, 43, 0.65);
  animation: menu-glitch-red-strong 340ms steps(2, end);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.mobile-nav__center > a:hover::after,
.mobile-nav__center > a:focus-visible::after {
  opacity: 0.82;
  transform: translate(4px, 1px);
  text-shadow: 2px 0 rgba(0, 213, 255, 0.65);
  animation: menu-glitch-cyan-strong 340ms steps(2, end);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.mobile-nav__center > a:hover,
.mobile-nav__center > a:focus-visible {
  animation: menu-readable-glitch-strong 340ms steps(2, end);
}

@keyframes menu-readable-glitch-strong {
  0%, 100% { transform: translate(0, 0); text-shadow: none; }
  25% { transform: translate(1px, 0); text-shadow: 2px 0 rgba(255, 43, 43, 0.55), -2px 0 rgba(0, 213, 255, 0.45); }
  55% { transform: translate(-1px, 0); text-shadow: -2px 0 rgba(255, 43, 43, 0.45), 2px 0 rgba(0, 213, 255, 0.55); }
  78% { transform: translate(0, -1px); text-shadow: 1px 0 rgba(255, 43, 43, 0.45), -1px 0 rgba(0, 213, 255, 0.45); }
}

@keyframes menu-glitch-red-strong {
  0%, 100% { clip-path: inset(0 0 0 0); transform: translate(-4px, -1px); }
  28% { clip-path: inset(0 0 62% 0); transform: translate(-7px, 0); }
  58% { clip-path: inset(38% 0 28% 0); transform: translate(-3px, 2px); }
  80% { clip-path: inset(56% 0 0 0); transform: translate(-5px, -1px); }
}

@keyframes menu-glitch-cyan-strong {
  0%, 100% { clip-path: inset(0 0 0 0); transform: translate(4px, 1px); }
  28% { clip-path: inset(54% 0 0 0); transform: translate(7px, 0); }
  58% { clip-path: inset(24% 0 42% 0); transform: translate(3px, -2px); }
  80% { clip-path: inset(0 0 58% 0); transform: translate(5px, 1px); }
}

.main-nav a:hover::before,
.main-nav a:focus-visible::before,
.mobile-nav__center > a:hover::before,
.mobile-nav__center > a:focus-visible::before {
  color: #ff2b2b;
  opacity: 0.95;
  transform: translate(-4px, -1px);
  text-shadow: -2px 0 rgba(255, 43, 43, 0.65);
  animation: menu-glitch-red-strong 340ms steps(2, end);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.mobile-nav__center > a:hover::after,
.mobile-nav__center > a:focus-visible::after {
  color: #ff2b2b;
  opacity: 0.42;
  transform: translate(3px, 1px);
  text-shadow: 2px 0 rgba(255, 43, 43, 0.38);
  animation: menu-glitch-red-echo 340ms steps(2, end);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.mobile-nav__center > a:hover,
.mobile-nav__center > a:focus-visible {
  text-shadow: 1px 0 rgba(255, 43, 43, 0.34), -1px 0 rgba(255, 43, 43, 0.22);
}

@keyframes menu-glitch-red-echo {
  0%, 100% { clip-path: inset(0 0 0 0); transform: translate(3px, 1px); }
  28% { clip-path: inset(54% 0 0 0); transform: translate(6px, 0); }
  58% { clip-path: inset(24% 0 42% 0); transform: translate(2px, -2px); }
  80% { clip-path: inset(0 0 58% 0); transform: translate(4px, 1px); }
}

body.top-page .hero-panel--apparel.is-glitching,
body.top-page .hero-panel--apparel.is-glitching .hero-frame,
body.top-page .hero-panel--apparel.is-glitching .hero-card__image,
body.top-page .hero-panel--apparel.is-glitching .hero-frame::before,
body.top-page .hero-panel--apparel.is-glitching .hero-frame::after {
  animation: none !important;
  transform: none !important;
  filter: none !important;
}

body.top-page .hero-panel--apparel.is-glitching .hero-frame::before,
body.top-page .hero-panel--apparel.is-glitching .hero-frame::after {
  opacity: 0 !important;
}


body.top-page .hero-panel-link {
  color: inherit;
  text-decoration: none;
}

body.top-page .hero-panel-link:focus-visible .hero-frame {
  outline: 1px solid currentColor;
  outline-offset: 6px;
}