

/* ---------- tokens ---------- */
:root {
  
  --bg:        #100f0e;
  --bg-2:      #161513;
  --surface:   #1c1a17;
  --surface-2: #232019;

  /* hairlines */
  --line:   #2b2824;
  --line-2: #3b3630;

  /* type */
  --fg:   #e9e5dd;
  --fg-2: #a29b90;
  --fg-3: #6e685f;

  
  --accent:     #9BEA00;
  --accent-dim: #4a6f00;

  

  
  --blue: #7ba6c6;

  /* type stacks */
  --f-display: "Barlow Condensed", "Noto Sans JP", "Oswald", "Arial Narrow", sans-serif;
  --f-body:    "Barlow", "Noto Sans JP", "Inter", "Helvetica Neue", Arial, sans-serif;
  --f-mono:    "IBM Plex Mono", "Noto Sans JP", "SFMono-Regular", Menlo, Consolas, monospace;
  --f-jp:      "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;

  /* metrics */
  --gut: 24px;
  --maxw: 1240px;
  --header-h: 64px;
}

@media (min-width: 800px) {
  :root { --gut: 48px; --header-h: 76px; }
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { margin: 0; font-weight: 600; line-height: 1.1; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--accent); color: #100f0e; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--narrow { max-width: 860px; }

.section { padding-block: 88px; }
@media (min-width: 800px) { .section { padding-block: 128px; } }
.section + .section { border-top: 1px solid var(--line); }

.fx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
}
.fx::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,.022) 0 1px,
    transparent 1px 3px
  );
}
.fx::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% 40%, transparent 40%, rgba(0,0,0,.55) 100%);
}

.seclabel {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.seclabel__idx {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--accent);
}
.seclabel__txt {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.seclabel::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.h-display {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}
.h-display--asis { text-transform: none; }
.h-sub {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.lead {
  color: var(--fg-2);
  font-size: 1.02rem;
  max-width: 62ch;
}

.mono {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.ph {
  position: relative;
  background-color: #26231f;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.017) 0 10px,
    transparent 10px 20px
  );
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.ph__inner { text-align: center; padding: 16px; }
.ph__use {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-2);
  display: block;
}
.ph__dim {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--fg-3);
  display: block;
  margin-top: 6px;
}

.ph::before, .ph::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--line-2);
}
.ph::before { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.ph::after { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }

.ph--hero    { aspect-ratio: 16 / 9; border: 0; }
.ph--sq      { aspect-ratio: 1 / 1; }
.ph--wide    { aspect-ratio: 16 / 9; }
.ph--portrait{ aspect-ratio: 5 / 7; }

/* ---------- header ---------- */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 150;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background-color .3s, border-color .3s, backdrop-filter .3s;
}
.hdr.is-stuck {
  background: rgba(16,15,14,.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.hdr__in {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
  display: flex;
  align-items: center;
  gap: 20px;
}

.wordmark { display: block; line-height: 0; flex: none; }
.wordmark img { height: 17px; width: auto; }
@media (min-width: 800px) { .wordmark img { height: 19px; } }
.ftr .wordmark img { height: 20px; }
@media (min-width: 800px) { .ftr .wordmark img { height: 24px; } }

.wordmark__mark { display: none; }
@media (max-width: 620px) {
  .hdr .wordmark__full { display: none; }
  .hdr .wordmark__mark { display: block; height: 26px; }
}

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav__a {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-2);
  padding: 8px 12px;
  position: relative;
  transition: color .2s;
}
.nav__a:hover { color: var(--fg); }
.nav__a.is-on { color: var(--fg); }
.nav__a.is-on::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 2px;
  height: 1px;
  background: var(--accent);
}
@media (max-width: 620px) {
  .nav__a { padding: 8px 5px; font-size: 14px; letter-spacing: .06em; }
  .hdr__in { gap: 10px; }
}

.langtoggle {
  display: flex;
  align-items: center;
  margin-left: 12px;
  padding-left: 16px;
  border-left: 1px solid var(--line-2);
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: .12em;
}
.langtoggle span, .langtoggle a { color: var(--fg-3); text-decoration: none; transition: color .2s; }
.langtoggle a:hover { color: var(--fg-2); }
.langtoggle .is-on { color: var(--fg); }
.langtoggle i { color: var(--line-2); font-style: normal; margin: 0 6px; }
@media (max-width: 560px) { html:not(.js) .langtoggle { display: none; } }

.hdr__menu { display: contents; }
.menu__yt { display: none; }
.navbtn { display: none; }

@media (max-width: 560px) {
  html.js .navbtn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    width: 44px;
    height: 44px;
    padding: 0 9px;
    background: none;
    border: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  html.js .navbtn span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--fg);
    transition: transform .25s, opacity .2s;
  }
  html.js .hdr.is-open .navbtn span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  html.js .hdr.is-open .navbtn span:nth-child(2) { opacity: 0; }
  html.js .hdr.is-open .navbtn span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  html.js .hdr.is-open {
    background: rgba(16,15,14,.97);
    backdrop-filter: blur(14px);
    border-bottom-color: transparent;
  }

  html.js .hdr__menu {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 2px var(--gut) 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .22s, transform .22s, visibility .22s;
  }
  html.js .hdr.is-open .hdr__menu { opacity: 1; visibility: visible; transform: none; }

  html.js .hdr__menu .nav { display: block; margin-left: 0; }
  html.js .hdr__menu .nav__a {
    display: block;
    padding: 15px 0;
    font-size: 15px;
    letter-spacing: .2em;
    border-bottom: 1px solid var(--line);
  }
  html.js .hdr__menu .nav__a.is-on::after { left: 0; right: auto; width: 20px; bottom: 10px; }
  html.js .hdr__menu .menu__yt {
    display: block;
    font-family: var(--f-mono);
    font-size: 15px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--fg-2);
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }
  html.js .hdr__menu .menu__ext { color: var(--fg-3); margin-left: 2px; }
  html.js .hdr__menu .langtoggle {
    display: flex;
    margin-left: 0;
    margin-top: 14px;
    padding-left: 0;
    border-left: 0;
    font-size: 15px;
  }
  html.js .hdr__menu .langtoggle a { padding: 8px 0; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media .ph { width: 100%; height: 100%; aspect-ratio: auto; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(16,15,14,.82) 0, rgba(16,15,14,.30) 110px, transparent 230px),
    linear-gradient(to top, rgba(16,15,14,.97) 0%, rgba(16,15,14,.55) 22%, rgba(16,15,14,.12) 55%, transparent 75%);
}
.hero__body {
  position: relative;
  width: 100%;
  padding-bottom: 72px;
}
.hero__rule { width: 56px; height: 2px; background: var(--accent); margin-bottom: 26px; }

.hero__logo { display: block; }
.hero__logo img { width: min(460px, 72vw); height: auto; }
.hero__meta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.hero__code { position: absolute; top: calc(var(--header-h) + 24px); right: var(--gut); }
@media (max-width: 700px) { .hero__code { display: none; } }

.scrollcue {
  position: absolute;
  left: 50%; bottom: 22px;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--fg-3);
  text-transform: uppercase;
}

.intro { text-align: center; }
.intro__text {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 3.4vw, 2.15rem);
  line-height: 1.65;
  letter-spacing: .02em;
  color: var(--fg);
  max-width: 40ch;
  margin-inline: auto;
  text-wrap: balance;
}
.intro__text .b { color: var(--blue); }   
.intro__text + .intro__text { margin-top: 1.6em; }

.doors {
  margin-top: 72px;
  display: grid;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
@media (min-width: 700px) { .doors { grid-template-columns: 1fr 1fr; } }
.door {
  background: var(--bg);
  padding: 30px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  transition: background-color .25s;
}
.door:hover { background: var(--surface); }
.door__t {
  display: block;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.door__d { display: block; font-size: .84rem; color: var(--fg-3); margin-top: 6px; }
.door__arrow { color: var(--accent); font-family: var(--f-mono); flex: none; }

/* ---------- latest / feature ---------- */
.feature { display: grid; gap: 32px; }
@media (min-width: 860px) {
  .feature { grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
}
.feature__body { display: flex; flex-direction: column; align-items: flex-start; }
.feature__quote {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.5;
  color: var(--fg-2);
  border-left: 2px solid var(--accent-dim);
  padding-left: 18px;
  margin: 22px 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg);
  border: 1px solid var(--line-2);
  padding: 14px 22px;
  transition: border-color .25s, color .25s, background-color .25s;
}
.btn:hover { border-color: var(--accent); color: var(--accent); }
.btn__arrow { transition: transform .25s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ---------- discography ---------- */
.album { display: grid; gap: 34px; }
@media (min-width: 900px) {
  .album { grid-template-columns: 380px 1fr; gap: 56px; align-items: start; }
}
.album__meta { margin-top: 20px; display: grid; gap: 6px; }

.tracks { border-top: 1px solid var(--line); }
.track {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 4px 16px;
  align-items: baseline;
  padding: 18px 12px 18px 4px;
  border-bottom: 1px solid var(--line);
  transition: background-color .2s;
}
@media (min-width: 760px) {
  .track { grid-template-columns: 40px minmax(0,1.7fr) minmax(0,1fr) 24px; align-items: center; gap: 20px; }
}
a.track:hover { background: var(--surface); }
.track__no {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: .1em;
}
.track__t {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.32rem;
  letter-spacing: .03em;
  text-transform: none;
}
.track__vo {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--accent);
  grid-column: 2;
}
@media (min-width: 760px) { .track__vo { grid-column: auto; } }
.track__g {
  font-size: .8rem;
  color: var(--fg-3);
  grid-column: 2;
}
@media (min-width: 760px) { .track__g { grid-column: auto; } }
.track__go {
  display: none;                      
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--fg-3);
}
@media (min-width: 760px) { .track__go { display: block; text-align: right; } }
a.track:hover .track__go { color: var(--accent); }
.track.is-soon { opacity: .5; }

/* ---------- song page ---------- */
.crumb {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 26px;
}
.crumb a:hover { color: var(--accent); }

.songhead { display: grid; gap: 10px; margin-bottom: 44px; }
.songhead__t {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  line-height: .95;
  letter-spacing: .02em;
  text-transform: none;
}
.songhead__vo {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
}

.ytf {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  cursor: pointer;
  border: 1px solid var(--line-2);
  overflow: hidden;
}
.ytf .ph { position: absolute; inset: 0; border: 0; aspect-ratio: auto; }
.ytf__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.ytf__btn {
  width: 74px; height: 74px;
  border: 1px solid var(--fg-2);
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(16,15,14,.5);
  transition: border-color .25s, background-color .25s;
}
.ytf:hover .ytf__btn { border-color: var(--accent); background: rgba(16,15,14,.75); }
.ytf__tri {
  width: 0; height: 0;
  border-left: 16px solid var(--fg);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 5px;
}
.ytf:hover .ytf__tri { border-left-color: var(--accent); }
.ytf iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.credits {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 40px;
}
@media (min-width: 700px) { .credits { grid-template-columns: repeat(3, 1fr); } }
.credit { background: var(--bg); padding: 22px 24px; }
.credit__k {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: block;
  margin-bottom: 8px;
}
.credit__v { font-family: var(--f-display); font-size: 1.24rem; letter-spacing: .04em; text-transform: uppercase; }

/* lyrics */
.lyrbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}
.lyrbar__btn {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-3);
  background: none;
  border: 1px solid var(--line);
  padding: 9px 16px;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.lyrbar__btn:hover { color: var(--fg-2); }
.lyrbar__btn[aria-selected="true"] { color: var(--fg); border-color: var(--accent); }

.lyrics { max-width: 46ch; }
.lyrics[hidden] { display: none; }
.lyrics__sec + .lyrics__sec { margin-top: 34px; }
.lyrics__tag {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent-dim);
  display: block;
  margin-bottom: 10px;
}
.lyrics__l { font-size: 1.04rem; line-height: 2; color: var(--fg-2); }
.lyrics--ja .lyrics__l { font-family: var(--f-jp); font-size: .95rem; line-height: 2.1; }

/* ---------- biography ---------- */

.roster {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 860px) { .roster { grid-template-columns: repeat(4, 1fr); } }
.roster__i {
  background: var(--bg);
  padding: 0 0 20px;
  transition: background-color .25s;
}
.roster__i:hover { background: var(--surface); }
.roster__n {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 18px 18px 0;
}
.roster__p {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 18px 0;
}

.member {
  display: grid;
  gap: 30px;
  padding-block: 72px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 860px) {
  .member { grid-template-columns: 340px 1fr; gap: 64px; align-items: start; }
}
.member:last-child { border-bottom: 0; }
.member__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 4rem);
  line-height: .95;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.member__ipa {
  font-family: var(--f-mono);
  font-size: .26em;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--fg-3);
  margin-left: .7em;
  white-space: nowrap;
}
.member__rom {
  font-size: .5em;
  text-transform: none;
  letter-spacing: .06em;
  color: var(--fg-2);
  margin-left: .55em;
}
.roster__n .member__rom { font-size: .62em; }
.feature__quote--sm { font-size: clamp(1rem, 2vw, 1.28rem); }
.feature__quote--xs { font-size: clamp(.94rem, 1.7vw, 1.1rem); }
.member__part {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 10px;
}

.spec { margin-top: 32px; border-top: 1px solid var(--line); }
.spec__row {
  display: grid;
  gap: 4px 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 620px) { .spec__row { grid-template-columns: 130px 1fr; align-items: baseline; } }
.spec__k {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.spec__v { color: var(--fg-2); }

.spec__v--none { color: var(--line-2); }

.taglist { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-2);
  border: 1px solid var(--line-2);
  padding: 6px 11px;
}

.songlinks { display: flex; flex-wrap: wrap; gap: 6px 18px; color: var(--fg-2); font-size: .92rem; }

/* ---------- footer ---------- */
.ftr {
  border-top: 1px solid var(--line);
  padding-block: 56px 40px;
  background: var(--bg-2);
}
.ftr__top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}
.ftr__nav { display: flex; flex-wrap: wrap; gap: 8px 26px; }
.ftr__nav a {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-3);
  transition: color .2s;
}
.ftr__nav a:hover { color: var(--fg); }

.sig {
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--fg-3);
}
.sig__dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex: none;
}
.sig__c { color: var(--fg-2); }
.sig__r { margin-left: auto; letter-spacing: .16em; }

.note {
  border: 1px dashed var(--line-2);
  background: rgba(255,255,255,.028);
  padding: 14px 18px;
  margin-top: 22px;
  font-family: var(--f-mono);
  font-size: 11px;
  line-height: 1.9;
  letter-spacing: .04em;
  color: var(--fg-2);
}
.note b { color: var(--fg); font-weight: 500; }

/* ---------- motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

.mono--fx { font-size: 11px !important; }

.track--locked { opacity: 1; }
.mask {
  display: inline-block;
  width: auto;
  vertical-align: -0.18em;
  image-rendering: pixelated;
  pointer-events: none;
  user-select: none;
}
.mask--t { height: 1.15em; opacity: .5; }
.mask--v { height: 1.05em; opacity: .55; }
.track--locked .track__no { color: var(--line-2); }
.track--locked .track__go { color: var(--line-2); }

.totop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 140;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  background: rgba(16,15,14,.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  color: var(--fg-2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s, visibility .25s, border-color .2s, color .2s;
}
.totop.is-on { opacity: 1; visibility: visible; transform: none; }
.totop:hover { border-color: var(--accent); color: var(--accent); }
.totop svg { width: 16px; height: 16px; display: block; }
@media (min-width: 800px) { .totop { right: 32px; bottom: 32px; } }

.carousel { position: relative; }
.carousel__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__item {
  flex: 0 0 100%;
  scroll-snap-align: start;
}
.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(16,15,14,.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
  color: var(--fg);
  cursor: pointer;
  transition: border-color .2s, color .2s, opacity .2s;
}
.carousel__nav:hover { border-color: var(--accent); color: var(--accent); }
.carousel__nav[disabled] { opacity: .25; cursor: default; }
.carousel__nav--prev { left: 12px; }
.carousel__nav--next { right: 12px; }
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.carousel__dot {
  width: 26px; height: 2px;
  background: var(--line-2);
  border: 0; padding: 0; cursor: pointer;
  transition: background-color .2s;
}
.carousel__dot.is-on { background: var(--accent); }

img, .ph, .shot {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.shot {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #26231f;
}
.shot::after {
  content: "";
  position: absolute;
  inset: 0;
}
.shot--wide { aspect-ratio: 16 / 9; }
.shot--sq { aspect-ratio: 1 / 1; }
.shot--portrait { aspect-ratio: 5 / 7; }

.seclabel--full { max-width: none; }

.songlinks .mask--s { height: 1.15em; opacity: .45; vertical-align: -0.22em; }

.hero__photo {
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/hero-pc.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 700px) {
  .hero__photo { background-image: url("/assets/img/hero-sp.webp"); }
}

.shot { background-color: #1c1a17; }

.ytf .shot::after { background: rgba(16,15,14,.30); }
.ytf__btn {
  background: rgba(16,15,14,.72);
  border-color: var(--fg);
  border-width: 2px;
}
.carousel__nav {
  background: rgba(16,15,14,.82);
  border-color: var(--fg-2);
  color: var(--fg);
}
.carousel__nav:hover { background: rgba(16,15,14,.92); }

.spec__v p + p { margin-top: .55em; }
.spec__q {
  margin-top: 1em;
  padding-left: 14px;
  border-left: 2px solid var(--accent-dim);
  font-family: var(--f-display);
  font-size: 1.14rem;
  letter-spacing: .02em;
  line-height: 1.5;
  color: var(--fg);
}
