/* ============ SLIM.S1K — base ============ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --bg-soft: #0b0b0d;
  --red: #e22424;
  --red-bright: #ff3b3b;
  --red-deep: #7a0f0f;
  --text: #f2f0ec;
  --text-dim: rgba(235, 230, 225, 0.6);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-jp: 'Noto Serif JP', serif;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: #000;
}
::-webkit-scrollbar-thumb {
  background: var(--red);
}

::selection {
  background: var(--red);
  color: #000;
}

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

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

.accent {
  color: var(--red-bright);
}

.jp {
  font-family: var(--font-jp);
  color: var(--red-bright);
}

/* ============ Loader ============ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.6s ease, visibility 0.6s;
}
#loader.done {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  width: 110px;
  filter: drop-shadow(0 0 24px rgba(226, 36, 36, 0.6));
  animation: loaderPulse 1.2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.06); opacity: 1; }
}
.loader-bar {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.loader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--red);
  animation: loaderSlide 1s ease-in-out infinite;
}
@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

/* ============ Nav ============ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4vw;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
#nav.scrolled {
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(226, 36, 36, 0.25);
  padding: 10px 4vw;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand img {
  width: 42px;
  filter: drop-shadow(0 0 10px rgba(226, 36, 36, 0.5));
}
.nav-brand span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 3px;
}
.nav-brand em {
  font-style: normal;
  color: var(--red-bright);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--text-dim);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--red-bright);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: #fff;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links .nav-cta {
  color: #fff;
  border: 1px solid var(--red);
  padding: 9px 20px;
  background: rgba(226, 36, 36, 0.12);
  box-shadow: 0 0 16px rgba(226, 36, 36, 0.25);
  transition: background 0.3s;
}
.nav-links .nav-cta::after {
  display: none;
}
.nav-links .nav-cta:hover {
  background: var(--red);
  color: #000;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 600;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ Hero ============ */
.hero {
  position: relative;
}
.hero-pin {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(120, 10, 10, 0.35) 0%, transparent 65%),
    radial-gradient(ellipse 100% 90% at 50% 0%, #0a0a0c 0%, #050505 100%);
}
.hero-kanji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(300px, 58vw, 760px);
  color: rgba(226, 36, 36, 0.12);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.hero-rider {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, 78vw);
  pointer-events: none;
  /* source images have pure black backgrounds — lighten blends them into the page.
     Must live on the container: GSAP transforms on it would isolate a blend set on the imgs. */
  mix-blend-mode: lighten;
}
.hero-rider img {
  width: 100%;
  object-fit: contain;
  object-position: bottom center;
  /* keep the rider a dim presence behind the headline text */
  filter: brightness(0.28);
}
.headlight-glow {
  position: absolute;
  bottom: 26%;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 70px;
  background: radial-gradient(ellipse, rgba(255, 245, 230, 0.28) 0%, transparent 70%);
  filter: blur(24px);
  animation: glowPulse 2.6s ease-in-out infinite;
}
.hero-text {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 6vw;
  transform: translateY(-9vh);
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(9px, 1.1vw, 12px);
  letter-spacing: 4px;
  color: rgba(255, 175, 175, 0.9);
  border: 1px solid rgba(226, 36, 36, 0.45);
  background: rgba(226, 36, 36, 0.08);
  box-shadow: 0 0 18px rgba(226, 36, 36, 0.2);
  padding: 8px 22px;
  margin-bottom: 26px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 4px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.9);
}
.hero-title .ht-line {
  display: block;
  font-size: clamp(54px, 11vw, 150px);
}
.hero-title .ht-line.accent {
  color: var(--red-bright);
  text-shadow:
    0 0 35px rgba(226, 36, 36, 0.55),
    0 0 90px rgba(226, 36, 36, 0.25);
}
.hero-sub {
  margin: 26px auto 34px;
  max-width: 480px;
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text-dim);
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 3px;
  padding: 15px 32px;
  cursor: pointer;
  display: inline-block;
  clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn-solid {
  background: var(--red);
  color: #000;
  font-weight: 700;
  box-shadow: 0 0 26px rgba(226, 36, 36, 0.45);
}
.btn-solid:hover {
  background: var(--red-bright);
  box-shadow: 0 0 40px rgba(255, 59, 59, 0.6);
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
}

.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--red-bright);
  animation: scrollDrop 1.6s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { top: -50%; }
  100% { top: 110%; }
}

.spark {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}

/* ============ Marquee ============ */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(226, 36, 36, 0.35);
  border-bottom: 1px solid rgba(226, 36, 36, 0.35);
  background: #070707;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 5px;
  color: rgba(226, 36, 36, 0.75);
  padding-right: 20px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ Sections shared ============ */
.section {
  position: relative;
  padding: 110px 0;
}
.section-inner {
  width: min(1180px, 90vw);
  margin: 0 auto;
}
.section-inner.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.section-tag {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--red-bright);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 4.6vw, 58px);
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 26px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 54px;
}
.section-head .section-title {
  margin-bottom: 0;
}
.section p {
  color: var(--text-dim);
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 18px;
  max-width: 56ch;
}
.section p strong {
  color: #fff;
  font-weight: 600;
}

/* ============ Rider ============ */
.rider-section {
  background:
    radial-gradient(ellipse 60% 50% at 18% 50%, rgba(120, 10, 10, 0.18) 0%, transparent 70%),
    var(--bg);
}
.rider-frame {
  position: relative;
  padding: 18px;
}
.rider-frame img {
  width: 100%;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 60px rgba(226, 36, 36, 0.12));
}
.frame-corner {
  position: absolute;
  width: 56px;
  height: 56px;
  border: 2px solid var(--red);
}
.frame-corner.tl {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
.frame-corner.br {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 2.8vw, 40px);
  color: var(--red-bright);
  text-shadow: 0 0 26px rgba(226, 36, 36, 0.4);
}
.stat-lbl {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 6px;
}

/* ============ Vlogs ============ */
.vlogs-section {
  background: var(--bg);
}
.vlog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.vlog-card.featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  background: #0e0e10;
}
.vlog-card {
  background: #0e0e10;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
  overflow: hidden;
}
.vlog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 36, 36, 0.5);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(226, 36, 36, 0.12);
}
.vlog-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.vlog-card.featured .vlog-thumb {
  aspect-ratio: auto;
  min-height: 300px;
}
.vlog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.vlog-card:hover .vlog-thumb img {
  transform: scale(1.06);
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(226, 36, 36, 0.9);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(226, 36, 36, 0.55);
  opacity: 0;
  scale: 0.8;
  transition: opacity 0.3s, scale 0.3s;
}
.play-btn svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}
.vlog-card:hover .play-btn {
  opacity: 1;
  scale: 1;
}
.vlog-dur {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.8);
  padding: 4px 8px;
}
.vlog-meta {
  padding: 20px 22px 24px;
}
.vlog-card.featured .vlog-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
}
.vlog-ep {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--red-bright);
}
.vlog-meta h3 {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.35;
  margin: 10px 0 8px;
}
.vlog-card.featured .vlog-meta h3 {
  font-size: clamp(19px, 2vw, 27px);
}
.vlog-meta p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}

/* ============ Machine ============ */
.machine-section {
  background:
    radial-gradient(ellipse 55% 60% at 82% 55%, rgba(120, 10, 10, 0.22) 0%, transparent 70%),
    var(--bg);
  overflow: hidden;
}
.machine-bg-kanji {
  position: absolute;
  right: -4vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(260px, 36vw, 560px);
  color: rgba(226, 36, 36, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.spec-list {
  list-style: none;
  margin-top: 12px;
}
.spec-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.spec-lbl {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-dim);
  flex-shrink: 0;
}
.spec-val {
  font-family: var(--font-display);
  font-size: clamp(12px, 1.3vw, 16px);
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
  text-align: right;
}
.machine-visual {
  position: relative;
  /* blend on the container — a filter or transform on the img itself would
     isolate the blend and bring back the black image-background box */
  mix-blend-mode: lighten;
}
.machine-visual img {
  width: 100%;
}
.machine-glow {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(226, 36, 36, 0.5) 0%, transparent 70%);
  filter: blur(22px);
  animation: glowPulse 2.6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

/* ============ Gallery ============ */
.gallery-section {
  background: var(--bg-soft);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.g-item {
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}
.g-item.tall {
  grid-row: span 2;
}
.g-item.wide {
  grid-column: span 2;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: saturate(0.9);
}
.g-item:hover img {
  transform: scale(1.07);
  filter: saturate(1.2);
}
.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(226, 36, 36, 0);
  transition: border-color 0.4s;
  pointer-events: none;
}
.g-item:hover::after {
  border-color: rgba(226, 36, 36, 0.6);
}
/* small play badge on Instagram video posts */
.g-item.is-video::before {
  content: '▶';
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  font-size: 13px;
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

/* ---- Instagram-style post cards (rendered from assets/instagram.json;
        .ig-grid beats the fallback mosaic rules, media queries included) ---- */
.gallery-grid.ig-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: auto;
  gap: 22px;
}
.ig-card {
  display: flex;
  flex-direction: column;
  background: #0e0e10;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
}
.ig-card:hover {
  transform: translateY(-5px);
  border-color: rgba(226, 36, 36, 0.5);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(226, 36, 36, 0.12);
}
.ig-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
}
.ig-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red);
  background: #000;
}
.ig-user {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.ig-user strong {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}
.ig-user span {
  font-size: 11px;
  color: var(--text-dim);
}
.ig-more {
  margin-left: auto;
  color: var(--text-dim);
  letter-spacing: 2px;
  font-size: 11px;
}
.ig-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #000;
}
.ig-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ig-card:hover .ig-img img {
  transform: scale(1.04);
}
.ig-video-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.8));
}
.ig-video-badge svg {
  width: 20px;
  height: 20px;
}
.ig-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px 0;
  color: var(--text);
}
.ig-actions svg {
  width: 22px;
  height: 22px;
}
.ig-actions svg:first-child {
  color: var(--red-bright);
}
.ig-save {
  margin-left: auto;
  display: flex;
}
.ig-likes {
  padding: 9px 14px 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}
.ig-comments {
  padding: 3px 14px 0;
  font-size: 12.5px;
  color: var(--text-dim);
}
.ig-caption {
  padding: 5px 14px 14px;
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ig-caption strong {
  font-weight: 600;
  color: var(--text);
  margin-right: 4px;
}

/* ============ Merch ============ */
.merch-section {
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(120, 10, 10, 0.16) 0%, transparent 70%),
    var(--bg-soft);
}
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.merch-card {
  background: #0e0e10;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
}
.merch-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 36, 36, 0.5);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(226, 36, 36, 0.12);
}
.merch-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #000;
}
.merch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.45s ease;
}
.merch-card:hover .merch-img img {
  transform: scale(1.05);
}
/* front/back swap on the flip card */
.merch-img .back {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.merch-card:hover .merch-img.flip .front {
  opacity: 0;
}
.merch-card:hover .merch-img.flip .back {
  opacity: 1;
}
.merch-flag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-dim);
  background: rgba(0, 0, 0, 0.75);
  padding: 4px 8px;
  pointer-events: none;
}
.merch-meta {
  padding: 20px 22px 24px;
}
.merch-drop {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--red-bright);
}
.merch-meta h3 {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.35;
  margin: 10px 0 8px;
}
.merch-meta p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}
/* coming-soon teaser card */
.merch-soon {
  border: 1px dashed rgba(226, 36, 36, 0.35);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.merch-soon:hover {
  box-shadow: none;
  border-color: rgba(226, 36, 36, 0.7);
}
.merch-soon-inner {
  text-align: center;
  padding: 40px 20px;
}
.merch-soon-kanji {
  display: block;
  font-family: var(--font-jp);
  font-size: 84px;
  line-height: 1;
  color: rgba(226, 36, 36, 0.22);
  margin-bottom: 18px;
}
.merch-soon-lbl {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--text);
}
.merch-soon-sub {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-dim);
}

/* ============ Connect ============ */
.connect-section {
  background:
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(120, 10, 10, 0.3) 0%, transparent 70%),
    var(--bg);
  text-align: center;
  padding-bottom: 70px;
}
.connect-rider {
  width: min(380px, 70vw);
  margin: 0 auto 34px;
}
.connect-rider img {
  width: 100%;
  border: 1px solid rgba(226, 36, 36, 0.4);
  filter: drop-shadow(0 0 40px rgba(226, 36, 36, 0.3));
}
.connect-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 6vw, 72px);
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.connect-copy p {
  margin: 0 auto 36px;
}
.social-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.social-btn svg {
  width: 26px;
  height: 26px;
  color: var(--red-bright);
}
.social-btn span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2.5px;
}
.social-btn em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  text-transform: none;
  margin-top: 3px;
}
.social-btn:hover {
  border-color: var(--red);
  background: rgba(226, 36, 36, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5), 0 0 24px rgba(226, 36, 36, 0.15);
}
.biz-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-dim);
  border-bottom: 1px solid rgba(226, 36, 36, 0.45);
  padding-bottom: 6px;
  transition: color 0.3s;
}
.biz-link:hover {
  color: var(--red-bright);
}

/* ============ Footer ============ */
footer {
  background: #000;
  border-top: 1px solid rgba(226, 36, 36, 0.25);
  text-align: center;
  padding: 56px 6vw 44px;
}
.footer-oni {
  width: 90px;
  margin: 0 auto 18px;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 18px rgba(226, 36, 36, 0.35));
}
.footer-name {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 5px;
  font-size: 18px;
}
.footer-name span {
  color: var(--red-bright);
}
.footer-jp {
  font-family: var(--font-jp);
  color: rgba(226, 36, 36, 0.7);
  font-size: 14px;
  letter-spacing: 3px;
  margin: 12px 0 22px;
}
.footer-fine {
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(235, 230, 225, 0.35);
}

/* ============ Reveal helper (JS adds .in) ============ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  /* "none" (not translateY(0)) so the finished reveal doesn't keep a stacking
     context that would isolate mix-blend-mode on child images */
  transform: none;
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .section-inner.split {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .machine-section .section-inner.split {
    display: flex;
    flex-direction: column-reverse;
  }
  .vlog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .vlog-card.featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .merch-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(3, 3, 3, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 38px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    font-size: 16px;
  }
  .hamburger {
    display: flex;
  }
  .vlog-grid {
    grid-template-columns: 1fr;
  }
  .vlog-card.featured {
    grid-column: span 1;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row .stat:last-child {
    grid-column: span 2;
  }
  .gallery-grid {
    grid-auto-rows: 170px;
  }
  .merch-grid {
    grid-template-columns: 1fr;
  }
  .merch-soon {
    min-height: 220px;
  }
  .section {
    padding: 80px 0;
  }
  .hero-text {
    transform: translateY(-6vh);
  }
}
