/* ═══════════════════════════════════════════
   ALLOUT RECRUIT — MASTER STYLESHEET
   ═══════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body {
  font-family: 'Inter', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
  opacity: 0;
  animation: failsafe-show 0s 4s forwards;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
body.is-loaded {
  opacity: 1;
  animation: none;
}
@keyframes failsafe-show { to { opacity: 1; } }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: pointer; color: inherit; font: inherit; }

/* ── Variables ── */
:root {
  --c-bg: #0a0a0a;
  --c-bg-card: #141414;
  --c-white: #ffffff;
  --c-gray-100: #f5f5f5;
  --c-gray-300: #b0b0b0;
  --c-gray-500: #777;
  --c-gray-700: #333;
  --c-gray-800: #1c1c1c;
  --c-red: #E60023;
  --c-red-dark: #c2001d;
  --font-en: 'Inter', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 64px;
  --side-pad: clamp(20px, 5vw, 80px);
}

/* ═══════════════════════════════════════════
   OPENING ANIMATION
   ═══════════════════════════════════════════ */
.opening {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--c-bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  pointer-events: none;
}
.opening__logo {
  font-family: var(--font-en);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: 0.35em;
  opacity: 0;
  transform: translateY(20px);
}
.opening__tagline {
  font-family: var(--font-en);
  font-size: clamp(10px, 1.5vw, 13px);
  font-weight: 400;
  letter-spacing: 0.5em;
  color: var(--c-gray-300);
  opacity: 0;
  margin-top: 16px;
}
.opening__line {
  width: 0;
  height: 1px;
  background: var(--c-red);
  margin-top: 24px;
}
.opening.is-done {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s var(--ease-smooth), visibility 0s 0.8s;
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s, backdrop-filter 0.4s;
}
.header.is-scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--c-red);
  z-index: 10000;
  transition: none;
  pointer-events: none;
}

.header__inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--side-pad);
}
.header__logo {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__nav-link {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--c-red);
  transition: width 0.3s var(--ease-out) 0.05s;
}
.header__nav-link:hover::after { width: 100%; }
/* Header right-side actions (ENTRY + burger) */
.header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__entry-btn {
  display: inline-flex;
  align-items: center;
  background: var(--c-red);
  color: #fff;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 10px 28px;
  transition: background 0.3s;
}
.header__entry-btn:hover { background: var(--c-red-dark); }

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
}
.header__burger-line {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--c-white);
  transition: transform 0.3s, opacity 0.3s;
}
.header__burger.is-open .header__burger-line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.header__burger.is-open .header__burger-line:nth-child(2) { opacity: 0; }
.header__burger.is-open .header__burger-line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 896px) {
  .header__nav { display: none; }
  .header__burger { display: flex; }
  .header__entry-btn {
    font-size: 10px;
    padding: 8px 18px;
    letter-spacing: 0.15em;
  }
}

/* ═══════════════════════════════════════════
   NAV OVERLAY
   ═══════════════════════════════════════════ */
.nav-overlay {
  position: fixed; inset: 0; z-index: 2000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s var(--ease-smooth);
}
.nav-overlay.is-open {
  pointer-events: auto;
  opacity: 1;
}
.nav-overlay__bg {
  position: absolute; inset: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
}
.nav-overlay__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px var(--side-pad);
  overflow-y: auto;
}
.nav-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  flex-shrink: 0;
}
.nav-overlay__logo {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-overlay__logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav-overlay__close {
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
}
.nav-overlay__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 40px 0;
}
.nav-overlay__section { }
.nav-overlay__main-link {
  font-family: var(--font-en);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: 0.12em;
  transition: color 0.3s;
}
.nav-overlay__main-link:hover { color: var(--c-red); }
.nav-overlay__sub {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  padding-left: 24px;
}
.nav-overlay__sub-link {
  font-size: 14px;
  color: var(--c-gray-300);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.nav-overlay__sub-link:hover { color: var(--c-white); }
.nav-overlay__section--entry { margin-top: 16px; }
.nav-overlay__entry-btn {
  display: inline-block;
  background: var(--c-red);
  color: #fff;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
  padding: 16px 48px;
  transition: background 0.3s;
}
.nav-overlay__entry-btn:hover { background: var(--c-red-dark); }
.nav-overlay__footer {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--c-gray-700);
  flex-shrink: 0;
}
.nav-overlay__social {
  font-size: 12px;
  color: var(--c-gray-500);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.nav-overlay__social:hover { color: var(--c-white); }

/* ═══════════════════════════════════════════
   FLOATING BANNER — disabled, ENTRY is now in header
   ═══════════════════════════════════════════ */
.floating-banner {
  display: none;
}

/* ═══════════════════════════════════════════
   VIDEO MODAL
   ═══════════════════════════════════════════ */
.video-modal {
  position: fixed; inset: 0; z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.video-modal.is-open {
  opacity: 1; pointer-events: auto;
}
.video-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.9);
}
.video-modal__body {
  position: relative;
  width: 90vw;
  max-width: 960px;
}
.video-modal__close {
  position: absolute;
  top: -48px; right: 0;
  font-size: 32px;
  color: #fff;
  font-weight: 300;
}
.video-modal__iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-modal__iframe-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* ═══════════════════════════════════════════
   MOUSE STALKER
   ═══════════════════════════════════════════ */
.stalker {
  position: fixed;
  top: 0; left: 0;
  z-index: 9998;
  pointer-events: none;
  mix-blend-mode: difference;
}
.stalker__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  transition: width 0.3s, height 0.3s, margin 0.3s;
}
.stalker.is-hover .stalker__dot {
  width: 48px; height: 48px;
  margin: -18px 0 0 -18px;
  border-color: var(--c-red);
}
@media (max-width: 896px) { .stalker { display: none; } }

/* ═══════════════════════════════════════════
   SHARED COMPONENTS
   ═══════════════════════════════════════════ */

/* Section labels */
.sec-label {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 12px;
}
.sec-title {
  font-family: var(--font-en);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* Buttons */
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--c-gray-500);
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease-out);
}
.btn-line:hover {
  border-color: var(--c-red);
  color: var(--c-red);
  transform: translateX(4px);
}
.btn-line::after {
  content: '\2192';
  transition: transform 0.3s var(--ease-out);
}
.btn-line:hover::after { transform: translateX(4px); }

.btn-solid {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--c-red);
  color: #fff;
  padding: 18px 56px;
  border: 2px solid var(--c-red);
  transition: background 0.35s var(--ease-smooth), color 0.35s var(--ease-smooth), transform 0.35s var(--ease-out), border-color 0.35s var(--ease-smooth);
}
.btn-solid:hover {
  background: var(--c-white);
  color: var(--c-red);
  border-color: var(--c-white);
  transform: scale(1.05) translateY(-2px);
}

/* ═══════════════════════════════════════════
   01. HERO
   ═══════════════════════════════════════════ */
.sec-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.sec-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  animation: kenBurnsZoom 12s ease-in-out infinite alternate;
}
/* PC: show image, hide video */
.sec-hero__bg--video {
  display: none;
}
.sec-hero__bg--img {
  display: block;
}
@keyframes kenBurnsZoom {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}
.sec-hero__darken {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
  will-change: opacity;
}
.sec-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--side-pad) 12vh;
}
.sec-hero__tag {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 16px;
}
.sec-hero__copy {
  font-family: var(--font-en);
  font-size: clamp(40px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
/* Hero character animation spans */
.sec-hero__copy .char-span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.sec-hero__copy .char-span.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.sec-hero__sub {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.08em;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.sec-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.sec-hero__scroll-text {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
}
.sec-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulseSmooth 2.4s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes scrollPulseSmooth {
  0%   { opacity: 1; transform: scaleY(1) translateY(0); }
  40%  { opacity: 0.35; transform: scaleY(0.55) translateY(6px); }
  70%  { opacity: 0.8; transform: scaleY(0.9) translateY(2px); }
  100% { opacity: 1; transform: scaleY(1) translateY(0); }
}
/* Scroll chevron arrow */
.sec-hero__scroll-chevron {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: scrollChevronBounce 2.4s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes scrollChevronBounce {
  0%   { opacity: 0.4; transform: rotate(45deg) translateY(0); }
  50%  { opacity: 1; transform: rotate(45deg) translateY(4px); }
  100% { opacity: 0.4; transform: rotate(45deg) translateY(0); }
}

/* ═══════════════════════════════════════════
   02. BRAND INTRO
   ═══════════════════════════════════════════ */
.sec-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.sec-intro__img-wrap {
  position: relative;
  overflow: hidden;
}
.sec-intro__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.sec-intro__text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 100px);
  gap: 24px;
}
.sec-intro__catch {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.04em;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.sec-intro__body {
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 2;
  color: var(--c-gray-300);
  letter-spacing: 0.04em;
  word-break: normal;
  overflow-wrap: break-word;
}
@media (max-width: 896px) {
  .sec-intro { grid-template-columns: 1fr; }
  .sec-intro__img-wrap { height: 50vh; }
}

/* ═══════════════════════════════════════════
   03. BRAND PV
   ═══════════════════════════════════════════ */
.sec-pv {
  padding: 60px 0 80px;
  text-align: center;
}
.sec-pv__label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--c-gray-500);
  margin-bottom: 24px;
  padding: 0 var(--side-pad);
}
.sec-pv__player {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.sec-pv__player.is-visible {
  /* fallback for no-GSAP path */
}
.sec-pv__video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: #000;
  cursor: pointer;
}
.sec-pv__unmute {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.sec-pv__unmute span {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #fff;
}
.sec-pv__unmute.is-hidden { opacity: 0; pointer-events: none; }

/* ═══════════════════════════════════════════
   04. WHY ALLOUT — Cinematic Smoke Aesthetic
   ═══════════════════════════════════════════ */
.sec-why {
  padding: 0;
  background: #000;
}
.sec-why .sec-why__head {
  padding: 140px var(--side-pad) 56px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.sec-why .sec-title {
  font-size: clamp(24px, 3.5vw, 40px);
  letter-spacing: 0.06em;
}
.sec-why__cards {
  display: flex;
  flex-direction: column;
}

/* ── Full-bleed why panel ── */
.why-panel {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.why-panel__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.why-panel__bg--video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background: #000;
  will-change: transform, opacity;
}
.why-panel__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.15) 60%,
    rgba(0, 0, 0, 0.05) 100%
  );
  pointer-events: none;
}
.why-panel__content {
  position: relative;
  z-index: 3;
  padding: 0 var(--side-pad) 72px;
  max-width: 760px;
}
.why-panel__num {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 80px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--c-red);
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(200, 0, 0, 0.3);
  will-change: transform, opacity;
}
.why-panel__title {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.45;
  margin-bottom: 20px;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  will-change: transform, opacity;
}
.why-panel__text {
  font-size: clamp(13px, 1.4vw, 15px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 2;
  letter-spacing: 0.03em;
  word-break: keep-all;
  overflow-wrap: break-word;
  max-width: 600px;
  will-change: transform, opacity;
}

/* ── Divider between panels ── */
.why-panel + .why-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.15), rgba(255,255,255,0));
  z-index: 5;
}

@media (max-width: 896px) {
  .sec-why .sec-why__head { padding: 100px var(--side-pad) 40px; }
  .why-panel { min-height: 75vh; }
  .why-panel__num { font-size: 56px; }
  .why-panel__title { font-size: clamp(20px, 5vw, 28px); }
  .why-panel__content { padding-bottom: 56px; }
  .why-panel__bg--video {
    object-fit: cover;
  }
  .why-panel + .why-panel::before { height: 40px; }
}

/* ═══════════════════════════════════════════
   05. LOOKBOOK
   ═══════════════════════════════════════════ */
.sec-look {
  padding: 120px 0 120px var(--side-pad);
  overflow: hidden;
}
.sec-look__head { margin-bottom: 40px; }
.sec-look__track {
  display: flex;
  gap: 16px;
  will-change: transform;
}
.sec-look__item {
  flex: 0 0 auto;
  width: clamp(280px, 30vw, 420px);
  overflow: hidden;
}
.sec-look__item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.sec-look__item:hover img { transform: scale(1.04); }

/* ═══════════════════════════════════════════
   06. NUMBERS
   ═══════════════════════════════════════════ */
.sec-numbers {
  padding: 100px var(--side-pad);
  border-top: 1px solid var(--c-gray-700);
  border-bottom: 1px solid var(--c-gray-700);
}
.sec-numbers__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.num-item__value {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}
.num-item__label {
  display: block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--c-gray-500);
  margin-top: 12px;
}
.num-item__sub {
  display: block;
  font-size: 11px;
  color: var(--c-gray-500);
  margin-top: 4px;
}
.num-item__growth {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--c-red);
  margin-top: 8px;
  padding: 3px 8px;
  border: 1px solid var(--c-red);
  opacity: 0.8;
}
@media (max-width: 896px) {
  .sec-numbers__inner { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════
   07. NAV CARDS
   ═══════════════════════════════════════════ */
.sec-nav-cards {
  padding: 120px var(--side-pad);
}
.sec-nav-cards__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.nav-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
}
.nav-card__img-wrap {
  position: absolute; inset: 0;
}
.nav-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.nav-card:hover .nav-card__img-wrap img { transform: scale(1.06); }
.nav-card__img-wrap img[src*="logo-symbol"] {
  object-fit: contain;
  padding: 20%;
  background: #fff;
}
/* Nav card typographic background (no-image fallback) */
.nav-card__typo-bg {
  width: 100%; height: 100%;
  background: var(--c-bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.nav-card__typo-large {
  font-family: var(--font-en);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  user-select: none;
  transition: color 0.6s var(--ease-smooth);
}
.nav-card:hover .nav-card__typo-large {
  color: rgba(255, 255, 255, 0.18);
}
.nav-card__typo-accent {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--c-red);
  opacity: 1;
  transition: opacity 0.4s;
}
.nav-card:hover .nav-card__typo-accent {
  opacity: 1;
}
.nav-card__typo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.nav-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.4s var(--ease-smooth);
}
.nav-card:hover .nav-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.05) 50%, transparent 100%);
}
.nav-card__title {
  font-family: var(--font-en);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: 0.12em;
}
.nav-card__sub {
  font-size: 13px;
  color: var(--c-gray-300);
  margin-top: 4px;
  letter-spacing: 0.06em;
}
.nav-card__arrow {
  position: absolute;
  top: 24px; right: 24px;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}
.nav-card:hover .nav-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
}
@media (max-width: 896px) {
  .sec-nav-cards__inner { grid-template-columns: 1fr; }
  .nav-card { aspect-ratio: 16/9; }
}

/* ═══════════════════════════════════════════
   08. POSITION SUMMARY
   ═══════════════════════════════════════════ */
.sec-position {
  padding: 120px var(--side-pad);
  background: var(--c-bg-card);
}
.sec-position__inner {
  max-width: 800px;
  margin: 0 auto;
}
.sec-position__head { margin-bottom: 48px; }
.sec-position__table { margin-bottom: 40px; }
.pos-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 24px 16px;
  border-bottom: 1px solid var(--c-gray-700);
  align-items: start;
  transition: background 0.25s ease;
  border-radius: 2px;
}
.pos-row:hover {
  background: rgba(255, 255, 255, 0.02);
}
.pos-row__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-en);
}
.pos-row__value {
  font-size: 15px;
  line-height: 1.8;
  word-break: normal;
  overflow-wrap: break-word;
}
.pos-row__value small {
  font-size: 12px;
  color: var(--c-gray-500);
}
@media (max-width: 896px) {
  .pos-row { grid-template-columns: 1fr; gap: 4px; padding: 20px 12px; }
}

/* ═══════════════════════════════════════════
   09. PROCESS
   ═══════════════════════════════════════════ */
.sec-process {
  padding: 120px var(--side-pad);
}
.sec-process__inner {
  max-width: 900px;
  margin: 0 auto;
}
.sec-process__head { margin-bottom: 56px; }
.sec-process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-item {
  position: relative;
  padding: 28px 0 28px 80px;
  border-left: 1px solid var(--c-gray-700);
}
.step-item::before {
  content: '';
  position: absolute;
  left: -5px; top: 34px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--c-red);
}
.step-item__num {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--c-red);
}
.step-item__title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: 0.04em;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.step-item__desc {
  font-size: 13px;
  color: var(--c-gray-300);
  margin-top: 4px;
}
.step-item:last-child { border-left-color: transparent; }

/* ═══════════════════════════════════════════
   10. NEWS
   ═══════════════════════════════════════════ */
.sec-news {
  padding: 100px var(--side-pad);
  border-top: 1px solid var(--c-gray-700);
}
.sec-news__inner {
  max-width: 900px;
  margin: 0 auto;
}
.sec-news__head { margin-bottom: 32px; }
.news-item { border-bottom: 1px solid var(--c-gray-700); }
.news-item__link {
  display: grid;
  grid-template-columns: 100px 80px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  transition: opacity 0.3s;
}
.news-item__link:hover { opacity: 0.7; }
.news-item__date {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--c-gray-500);
  letter-spacing: 0.06em;
}
.news-item__cat {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--c-red);
}
.news-item__title {
  font-size: 14px;
  letter-spacing: 0.04em;
}
@media (max-width: 896px) {
  .news-item__link {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ═══════════════════════════════════════════
   10.5 FAQ HIGHLIGHT (TOP page)
   ═══════════════════════════════════════════ */
.sec-faq {
  padding: 120px var(--side-pad);
}
.sec-faq__inner {
  max-width: 900px;
  margin: 0 auto;
}
.sec-faq__head {
  margin-bottom: 56px;
}
.sec-faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}
.faq-card {
  background: var(--c-bg-card);
  padding: 32px;
  border-left: 3px solid var(--c-red);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.faq-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.faq-card__q {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.faq-card__icon {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 800;
  color: var(--c-red);
  flex-shrink: 0;
  line-height: 1.4;
}
.faq-card__question {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.02em;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.faq-card__a {
  font-size: 13px;
  color: var(--c-gray-400);
  line-height: 1.9;
  letter-spacing: 0.04em;
  padding-left: 34px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media (max-width: 640px) {
  .faq-card { padding: 24px 20px; }
  .faq-card__a { padding-left: 0; margin-top: 8px; }
}

/* ═══════════════════════════════════════════
   11. CTA
   ═══════════════════════════════════════════ */
.sec-cta {
  position: relative;
  padding: 160px var(--side-pad);
  text-align: center;
  overflow: hidden;
}
.sec-cta__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.3);
}
/* Fallback: disable fixed attachment on touch/mobile (causes jank) */
@supports (-webkit-touch-callout: none) {
  .sec-cta__bg { background-attachment: scroll; }
}
@media (max-width: 896px) {
  .sec-cta__bg { background-attachment: scroll; }
}
.sec-cta__overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.sec-cta__inner {
  position: relative; z-index: 2;
}
.sec-cta__copy {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  padding: 80px var(--side-pad) 40px;
  border-top: 1px solid var(--c-gray-700);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.footer__logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer__tagline {
  font-family: var(--font-en);
  font-size: 11px;
  color: var(--c-gray-500);
  letter-spacing: 0.15em;
}
.footer__links {
  display: flex;
  gap: 56px;
}
.footer__col-title {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.footer__link {
  display: block;
  font-size: 12px;
  color: var(--c-gray-500);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.footer__link:hover { color: var(--c-white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--c-gray-700);
}
.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social-link {
  color: var(--c-gray-500);
  transition: color 0.3s;
}
.footer__social-link:hover { color: var(--c-white); }
.footer__copy {
  font-size: 11px;
  color: var(--c-gray-500);
  letter-spacing: 0.06em;
}
@media (max-width: 896px) {
  .footer__top { flex-direction: column; }
  .footer__links { flex-direction: column; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ═══════════════════════════════════════════
   ANIMATION UTILITY CLASSES
   Initial invisible states apply ONLY before GSAP takes control.
   Once JS adds .gsap-ready to <body>, these rules
   are deactivated and GSAP/ScrollTrigger owns all transforms.
   The .is-visible rules remain for the no-GSAP fallback path
   (IntersectionObserver).
   ═══════════════════════════════════════════ */

/* GPU compositing hints — always active */
.anim-fade,
.anim-scale,
.anim-split,
.anim-slide-left,
.anim-slide-right {
  will-change: transform, opacity;
}
.anim-img-reveal {
  will-change: clip-path;
}

/* ── Pre-GSAP initial states (hidden + CSS transitions for fallback) ── */
body:not(.gsap-ready) .anim-fade {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
body:not(.gsap-ready) .anim-fade.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body:not(.gsap-ready) .anim-img-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s var(--ease-out);
}
body:not(.gsap-ready) .anim-img-reveal.is-visible {
  clip-path: inset(0 0% 0 0);
}

body:not(.gsap-ready) .anim-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
body:not(.gsap-ready) .anim-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

body:not(.gsap-ready) .anim-split {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
body:not(.gsap-ready) .anim-split.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
body:not(.gsap-ready) .anim-slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
body:not(.gsap-ready) .anim-slide-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
body:not(.gsap-ready) .anim-slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
body:not(.gsap-ready) .anim-slide-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Generic card hover lift (story cards, etc.) */
.card-hover-lift {
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.card-hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* ═══════════════════════════════════════════
   SUB-PAGE SHARED STYLES
   ═══════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
}
.page-hero__content {
  position: relative; z-index: 2;
  padding: 0 var(--side-pad) 60px;
}
.page-hero__label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--c-red);
  margin-bottom: 12px;
}
.page-hero__title {
  font-family: var(--font-en);
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.page-hero__sub {
  font-size: 15px;
  color: var(--c-gray-300);
  margin-top: 8px;
  letter-spacing: 0.06em;
}

/* Content section */
.page-content {
  padding: 100px var(--side-pad) 80px;
  max-width: 900px;
  margin: 0 auto;
}
.page-content h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  margin: 48px 0 28px;
  letter-spacing: 0.12em;
  word-break: normal;
  overflow-wrap: break-word;
  font-family: var(--font-en);
}
.page-content p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--c-gray-300);
  margin-bottom: 20px;
  word-break: normal;
  overflow-wrap: break-word;
}
.page-content .accent-line {
  width: 48px;
  height: 3px;
  background: var(--c-red);
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════════
   ADMIN STYLES (Inline in admin pages)
   ═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════ */
.page-404 {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.page-404__num {
  font-family: var(--font-en);
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--c-gray-700);
  line-height: 1;
}
.page-404__text {
  font-size: 16px;
  color: var(--c-gray-500);
  margin: 20px 0 40px;
}

/* ═══════════════════════════════════════════
   FAQ (Accordion)
   ═══════════════════════════════════════════ */
.faq-item {
  border-bottom: 1px solid var(--c-gray-700);
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.04em;
  cursor: pointer;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.faq-item__q::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.is-open .faq-item__q::after { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth), padding 0.4s;
  padding: 0 0 0 0;
}
.faq-item.is-open .faq-item__a {
  max-height: 500px;
  padding-bottom: 24px;
}
.faq-item__a p {
  font-size: 14px;
  color: var(--c-gray-300);
  line-height: 1.9;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* ═══════════════════════════════════════════
   ENTRY PAGE
   ═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   ENTRY PAGE — NATIVE FORM
   ═══════════════════════════════════════════ */
.entry-section {
  padding: 120px var(--side-pad) 80px;
  text-align: center;
}
.entry-section__inner {
  max-width: 640px;
  margin: 0 auto;
}
.entry-section__copy {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 32px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.entry-section__footnote {
  font-size: 12px;
  color: var(--c-gray-500);
  margin-top: 32px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
}

/* ── Process Badges ── */
.entry-process {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.entry-process__item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.entry-process__badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-gray-500);
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border: 1px solid var(--c-gray-700);
  transition: all 0.3s;
  white-space: nowrap;
}
.entry-process__badge.is-current {
  color: var(--c-red);
  border-color: var(--c-red);
}
.entry-process__arrow {
  color: var(--c-gray-700);
  display: flex;
  align-items: center;
}

/* ── Form ── */
.entry-form {
  text-align: left;
  margin-top: 48px;
}
.form-field {
  margin-bottom: 36px;
}
.form-field__label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
  cursor: pointer;
}
.form-field__label-en {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--c-gray-500);
  text-transform: uppercase;
}
.form-field__label-jp {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.form-field__req {
  color: var(--c-red);
  margin-left: 4px;
}
.form-field__hint {
  font-size: 12px;
  color: var(--c-gray-500);
  margin-bottom: 12px;
  line-height: 1.7;
  text-align: left;
}
.form-field__input {
  width: 100%;
  background: var(--c-bg-card);
  border: 1px solid var(--c-gray-700);
  border-radius: 0;
  color: var(--c-white);
  font-size: 15px;
  padding: 14px 16px;
  transition: border-color 0.3s;
  outline: none;
  font-family: inherit;
  line-height: 1.5;
}
.form-field__input:focus {
  border-color: var(--c-red);
}
.form-field__input::placeholder {
  color: var(--c-gray-500);
}
.form-field.is-error .form-field__input {
  border-color: var(--c-red);
}

/* ── Select ── */
.form-field__select-wrap {
  position: relative;
}
.form-field__select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--c-gray-500);
  border-bottom: 1.5px solid var(--c-gray-500);
  pointer-events: none;
}
.form-field__select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.form-field__select option {
  background: var(--c-bg-card);
  color: var(--c-white);
}

/* ── Textarea ── */
.form-field__textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── Drag & Drop ── */
.form-field__drop {
  position: relative;
  border: 1px dashed var(--c-gray-700);
  background: var(--c-bg-card);
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  margin-top: 12px;
}
.form-field__drop:hover,
.form-field__drop.is-dragover {
  border-color: var(--c-red);
  background: rgba(230, 0, 35, 0.04);
}
.form-field__file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.form-field__drop-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--c-gray-500);
  pointer-events: none;
}
.form-field__drop-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.form-field__drop-sub {
  font-size: 11px;
  color: var(--c-gray-500);
}
.form-field__drop-preview {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--c-gray-300);
  pointer-events: none;
}
.form-field__drop-filename {
  font-size: 13px;
  color: var(--c-white);
  word-break: break-all;
}
.form-field__drop-remove {
  font-size: 20px;
  color: var(--c-gray-500);
  cursor: pointer;
  pointer-events: auto;
  transition: color 0.3s;
  line-height: 1;
  padding: 4px;
}
.form-field__drop-remove:hover {
  color: var(--c-red);
}

/* ── Checkboxes ── */
.form-field__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
  padding: 10px 16px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-gray-700);
  transition: border-color 0.3s, background 0.3s;
  user-select: none;
}
.form-check:hover {
  border-color: var(--c-gray-500);
}
.form-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--c-gray-500);
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.form-check input[type="checkbox"]:checked {
  background: var(--c-red);
  border-color: var(--c-red);
}
.form-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ── Error message ── */
.form-field__error {
  display: none;
  font-size: 12px;
  color: var(--c-red);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* ── Submit ── */
.entry-form__submit {
  text-align: center;
  margin-top: 56px;
  margin-bottom: 40px;
}

/* ── Thank You ── */
.entry-thankyou {
  padding: 80px 0;
  text-align: center;
}
.entry-thankyou__icon {
  margin-bottom: 24px;
  color: var(--c-red);
}
.entry-thankyou__title {
  font-family: var(--font-en);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.entry-thankyou__text {
  font-size: 15px;
  color: var(--c-gray-300);
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* ── Entry Page Mobile ── */
@media (max-width: 640px) {
  .entry-section { padding: 80px var(--side-pad) 60px; }
  .entry-process { gap: 6px; }
  .entry-process__badge { padding: 6px 10px; font-size: 10px; }
  .form-field__checks { gap: 8px; }
  .form-check { padding: 8px 12px; font-size: 12px; }
  .form-field__drop { padding: 28px 16px; }
  .form-field__drop-text { font-size: 13px; }
}

/* People page card grid */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.people-card {
  background: var(--c-bg-card);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.people-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.people-card__img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.people-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.people-card:hover .people-card__img img { transform: scale(1.04); }
.people-card__body { padding: 24px; }
.people-card__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.people-card__role {
  font-size: 12px;
  color: var(--c-gray-500);
  letter-spacing: 0.06em;
}

/* Day schedule */
.day-timeline {
  margin-top: 40px;
}
.day-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-gray-700);
}
.day-item__time {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-red);
}
.day-item__text {
  font-size: 15px;
  line-height: 1.7;
}
.day-item__desc {
  font-size: 13px;
  color: var(--c-gray-300);
  margin-top: 4px;
}

/* Company info table */
.company-table {
  width: 100%;
  margin-top: 40px;
}
.company-table .pos-row:first-child { border-top: 1px solid var(--c-gray-700); }

/* ═══════════════════════════════════════════
   SCROLL-DRIVEN CINEMATIC ENHANCEMENTS
   ═══════════════════════════════════════════ */

/* GPU compositing hints for scroll-driven elements */
.sec-hero__bg,
.sec-hero__darken,
.sec-hero__content,
.sec-intro__img-wrap,
.sec-intro__img-wrap img,
.sec-pv__player,
.why-panel__bg,
.nav-card,
.nav-card__img-wrap img,
.sec-cta__bg,
.page-hero__bg {
  will-change: transform;
}

/* 3D perspective for depth transforms */
.sec-intro__text-wrap,
.sec-pv__inner {
  perspective: 1000px;
}

/* Ensure overflow hidden on parallax containers */
.sec-intro__img-wrap,
.why-panel,
.nav-card__img-wrap,
.sec-look__item {
  overflow: hidden;
}

/* CTA bg needs to be positioned for parallax transforms */
.sec-cta__bg {
  background-attachment: scroll;
  will-change: transform;
}

/* Section transition: subtle gradient separators */
.sec-numbers::before,
.sec-nav-cards::before,
.sec-process::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gray-700) 20%, var(--c-gray-700) 80%, transparent);
  margin-bottom: 120px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--side-pad);
}

/* Override fixed attachment for scroll-driven CTA bg */
@supports (-webkit-touch-callout: none) {
  .sec-cta__bg { background-attachment: scroll; }
}

/* Scrollbar styling for cinematic feel */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--c-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--c-gray-700);
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--c-red);
}

/* ═══════════════════════════════════════════
   POSITION PAGE — PROCESS FLOW
   ═══════════════════════════════════════════ */
/* Position page mid-section image */
.pos-hero-img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) contrast(1.08);
  transition: filter 0.6s var(--ease-out);
}
.pos-hero-img:hover {
  filter: brightness(0.92) contrast(1.12);
}

/* ═══════════════════════════════════════════
   POSITION PAGE — PREMIUM STREETWEAR EDITORIAL
   ═══════════════════════════════════════════ */

/* Section divider — diagonal gradient wipe between sections */
.pos-section-divider {
  height: 1px;
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent 0%, var(--c-red) 20%, var(--c-red) 80%, transparent 100%);
  opacity: 0.3;
}

/* MUST HAVE / GOOD FIT cards — elevated treatment */
.pos-persona-card {
  background: var(--c-bg-card);
  border-left: 3px solid var(--c-red);
  padding: 36px 28px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.pos-persona-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(230, 0, 35, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.pos-persona-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(230, 0, 35, 0.08);
}
.pos-persona-card:hover::before {
  opacity: 1;
}
.pos-persona-card__tag {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--c-red);
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.pos-persona-card__title {
  font-size: 17px;
  font-weight: 700;
  display: block;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.pos-persona-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pos-persona-card__list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  color: var(--c-gray-300);
  line-height: 1.7;
  display: flex;
  align-items: baseline;
  gap: 10px;
  transition: color 0.2s ease;
}
.pos-persona-card:hover .pos-persona-card__list li {
  color: #d0d0d0;
}
.pos-persona-card__list li:last-child {
  border-bottom: none;
}
.pos-persona-card__list li span {
  color: var(--c-red);
  font-size: 11px;
  flex-shrink: 0;
}

/* Position list items — refined hover */
.pos-list-item {
  padding: 16px 12px;
  border-bottom: 1px solid var(--c-gray-700);
  font-size: 14px;
  color: var(--c-gray-300);
  line-height: 1.7;
  display: flex;
  align-items: baseline;
  gap: 12px;
  transition: background 0.25s ease, padding-left 0.3s var(--ease-out), color 0.25s ease;
  border-radius: 2px;
  cursor: default;
}
.pos-list-item:hover {
  background: rgba(255, 255, 255, 0.02);
  padding-left: 20px;
  color: #d0d0d0;
}
.pos-list-item__marker {
  color: var(--c-red);
  font-size: 11px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.pos-list-item:hover .pos-list-item__marker {
  transform: translateX(2px);
}
.pos-list-item--muted .pos-list-item__marker {
  color: var(--c-gray-500);
}

/* Section header with subtle red glow */
.pos-sec-header {
  position: relative;
}
.pos-sec-header::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--c-red);
  opacity: 0.6;
}

/* Who section — parallax bg enhancement */
.pos-who-section {
  position: relative;
  padding: 100px var(--side-pad);
  overflow: hidden;
  scroll-margin-top: 120px;
}
.pos-who-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  transition: opacity 0.6s ease;
}
.pos-who-section:hover .pos-who-section__bg {
  opacity: 0.15;
}
.pos-who-section__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--c-bg) 0%, transparent 12%, transparent 88%, var(--c-bg) 100%);
}
.pos-who-section__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.pos-who-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

/* Benefits table — premium row treatment */
.pos-benefits .pos-row {
  padding: 28px 16px;
}
.pos-benefits .pos-row__label {
  position: relative;
}
.pos-benefits .pos-row__label::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--c-red);
  transition: height 0.3s var(--ease-out);
  border-radius: 2px;
}
.pos-benefits .pos-row:hover .pos-row__label::before {
  height: 16px;
}

/* Process step enhanced hover */
.pos-process-step {
  cursor: default;
}
.pos-process-step__title {
  transition: color 0.25s ease;
}
.pos-process-step:hover .pos-process-step__title {
  color: var(--c-white);
}

@media (max-width: 896px) {
  .pos-persona-card {
    padding: 28px 20px;
  }
  .pos-who-section {
    padding: 64px var(--side-pad);
  }
  .pos-who-section__grid {
    grid-template-columns: 1fr;
  }
  .pos-benefits .pos-row {
    padding: 20px 12px;
  }
  .pos-benefits .pos-row__label::before {
    display: none;
  }
}

.pos-process-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}
.pos-process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}
.pos-process-step__circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--c-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-white);
  background: var(--c-bg);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.pos-process-step:hover .pos-process-step__circle {
  background: var(--c-red);
  transform: scale(1.08);
}
.pos-process-step__line {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 1px;
  background: var(--c-gray-700);
  z-index: 1;
}
.pos-process-step__text {
  margin-top: 16px;
  max-width: 160px;
}
.pos-process-step__title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.pos-process-step__desc {
  font-size: 11px;
  color: var(--c-gray-500);
  margin-top: 6px;
  line-height: 1.5;
}

/* Position page mobile: vertical timeline */
@media (max-width: 896px) {
  .pos-process-flow {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .pos-process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding-bottom: 32px;
  }
  .pos-process-step:last-child {
    padding-bottom: 0;
  }
  .pos-process-step__circle {
    width: 44px;
    height: 44px;
    font-size: 14px;
    flex-shrink: 0;
  }
  .pos-process-step__line {
    position: absolute;
    top: 44px;
    left: 22px;
    right: auto;
    width: 1px;
    height: calc(100% - 44px);
  }
  .pos-process-step__text {
    margin-top: 0;
    margin-left: 20px;
    max-width: none;
    padding-top: 8px;
  }
  .pos-process-step__title {
    font-size: 14px;
  }
  .pos-process-step__desc {
    font-size: 12px;
  }

  /* Position page hero + image sizing */
  .page-hero { height: 50vh; min-height: 300px; }
  .pos-hero-img { aspect-ratio: 16/9; }
}

/* Mobile responsive: nav cards single column */
@media (max-width: 896px) {
  .sec-nav-cards__inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 896px) {
  /* ── Prevent horizontal scroll / text overflow globally ── */
  html, body { overflow-x: hidden; -webkit-overflow-scrolling: touch; }
  *, *::before, *::after { max-width: 100%; }
  p, h1, h2, h3, h4, span, a, li, td, th, label, small, time {
    word-break: break-word;
    overflow-wrap: break-word;
  }
  img { max-width: 100%; height: auto; }

  /* ── Hero: keep background visible, shrink text ── */
  .sec-hero { min-height: 100svh; }
  .sec-hero__bg { background-position: center top; }
  /* Mobile: show video, hide image when video exists */
  .sec-hero__bg--video { display: block; width: 100%; height: 100%; object-fit: cover; animation: none; z-index: 1; }
  .sec-hero__bg--video ~ .sec-hero__darken { z-index: 1; }
  .sec-hero:has(.sec-hero__bg--video) .sec-hero__bg--img { display: none; }
  .sec-hero__content { padding-bottom: 16vh; }
  .sec-hero__copy {
    font-size: clamp(28px, 8.5vw, 48px);
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .sec-hero__sub { font-size: 13px; max-width: 100%; }

  /* ── Brand Intro ── */
  .sec-intro {
    padding: 0;
    grid-template-columns: 1fr;
  }
  .sec-intro__img-wrap {
    height: 50vh;
    min-height: 280px;
  }
  .sec-intro__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .sec-intro__text-wrap {
    padding: 48px var(--side-pad) 64px;
  }
  .sec-intro__catch {
    font-size: clamp(20px, 5.5vw, 28px);
  }
  .sec-intro__body {
    font-size: 13px;
    line-height: 1.9;
  }

  /* ── PV section ── */
  .sec-pv { padding: 16px 0 16px; }
  .sec-pv__label { margin-bottom: 12px; }

  /* ── WHY section ── */
  .sec-why .sec-why__head { padding: 48px var(--side-pad) 24px; }
  .sec-why .sec-title {
    font-size: clamp(20px, 5.5vw, 32px);
  }
  .why-panel { min-height: 70vh; }
  .why-panel__content {
    padding: 0 var(--side-pad) 48px;
    max-width: 100%;
  }
  .why-panel__title {
    font-size: clamp(18px, 5vw, 26px);
  }
  .why-panel__text {
    font-size: 13px;
    line-height: 1.8;
  }
  .why-panel__bg--video {
    object-fit: cover;
  }

  /* ── Lookbook: vertical grid on mobile ── */
  .sec-look { padding: 80px var(--side-pad); }
  .sec-look__track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    overflow: visible;
  }
  .sec-look__item {
    flex: none;
    width: 100%;
  }
  .sec-look__item img {
    aspect-ratio: 3/4;
    width: 100%;
    object-fit: cover;
  }

  /* ── Numbers: 2-col, refine spacing ── */
  .sec-numbers { padding: 60px var(--side-pad); }
  .num-item__value { font-size: clamp(28px, 8vw, 44px); }
  .num-item__growth { font-size: 9px; padding: 2px 6px; }

  /* ── Nav Cards ── */
  .sec-nav-cards { padding: 60px var(--side-pad); }
  .nav-card { min-height: 200px; }
  .nav-card__title { font-size: clamp(20px, 5vw, 28px); }

  /* ── Position ── */
  .sec-position { padding: 60px var(--side-pad); }
  .pos-row__value {
    font-size: 14px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* ── Process ── */
  .sec-process { padding: 60px var(--side-pad); }
  .step-item { padding-left: 48px; }
  .step-item__title { font-size: 16px; }

  /* ── News ── */
  .sec-news { padding: 60px var(--side-pad); }
  .news-item__title { font-size: 13px; }

  /* ── FAQ ── */
  .sec-faq { padding: 60px var(--side-pad); }
  .faq-card { padding: 24px 20px; }
  .faq-card__question { font-size: 14px; }
  .faq-card__a { font-size: 12px; padding-left: 28px; }

  /* ── CTA ── */
  .sec-cta { padding: 80px var(--side-pad); }
  .sec-cta__copy { font-size: clamp(18px, 5vw, 28px); }

  /* ── Reduce slide distances to prevent horizontal overflow ── */
  body:not(.gsap-ready) .anim-slide-left { transform: translateX(-30px); }
  body:not(.gsap-ready) .anim-slide-right { transform: translateX(30px); }

  /* ── Page hero (sub pages) ── */
  .page-hero { height: 50vh; min-height: 300px; }
  .page-hero__title { font-size: clamp(28px, 7vw, 48px); }

  /* ── Footer compact ── */
  .footer__top { flex-direction: column; gap: 32px; }
  .footer__links { flex-direction: row; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ═══════════════════════════════════════════
   CEO MESSAGE — PROFILE LAYOUT
   ═══════════════════════════════════════════ */
.msg-profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  margin: 48px 0;
}
.msg-profile__photo {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}
.msg-profile__photo img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.msg-profile__body {
  min-width: 0;
}
.msg-profile__body p {
  font-size: 15px;
  line-height: 2;
  color: var(--c-gray-300);
  margin-bottom: 20px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.msg-profile__sign {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--c-gray-700);
}
.msg-profile__sign-title {
  font-size: 13px;
  color: var(--c-gray-500);
  letter-spacing: 0.08em;
}
.msg-profile__sign-name {
  font-size: 18px;
  font-weight: 700;
  margin-top: 8px;
  letter-spacing: 0.04em;
}
@media (max-width: 896px) {
  .msg-profile {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .msg-profile__photo {
    position: relative;
    top: auto;
    max-width: 240px;
    margin: 0 auto;
  }
}

/* ── PC-only line break utility ── */
.br-pc { display: inline; }
@media (max-width: 896px) {
  .br-pc { display: none; }
}

/* ═══════════════════════════════════════════
   BGM TOGGLE BUTTON
   ═══════════════════════════════════════════ */
.bgm-toggle {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 12px 12px 8px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.bgm-toggle.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.bgm-toggle:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.bgm-toggle.is-playing {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.bgm-toggle.is-playing .bgm-toggle__icon--off { display: none; }
.bgm-toggle.is-playing .bgm-toggle__icon--on { display: block; }
.bgm-toggle__icon--on { display: none; }
.bgm-toggle__icon { width: 20px; height: 20px; }
.bgm-toggle__label {
  font-family: var(--font-en);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.bgm-toggle.is-playing::before {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: bgm-pulse 1.5s ease-in-out infinite;
}
@keyframes bgm-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}
@media (max-width: 896px) {
  .bgm-toggle {
    bottom: 90px;
    right: 16px;
    padding: 10px 10px 6px;
  }
  .bgm-toggle__icon { width: 18px; height: 18px; }
  .bgm-toggle__label { font-size: 7px; }
}

/* ── Extra-small screens ── */
@media (max-width: 480px) {
  :root {
    --side-pad: 16px;
  }
  body:not(.gsap-ready) .anim-slide-left { transform: translateX(-20px); }
  body:not(.gsap-ready) .anim-slide-right { transform: translateX(20px); }
  .sec-hero__copy { font-size: clamp(24px, 7.5vw, 36px); }
  .sec-hero__sub { font-size: 12px; }
  .sec-numbers__inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-panel { min-height: 60vh; }
  .why-panel__num { font-size: 40px; }
  .why-panel__title { font-size: clamp(16px, 4.5vw, 22px); }
  .why-panel__text { font-size: 12px; line-height: 1.7; }
  .why-panel__content { padding-bottom: 36px; }
  .sec-look__track {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
  .sec-intro__catch { font-size: clamp(18px, 5vw, 24px); }
  .sec-intro__body { font-size: 12px; }
  .sec-intro__text-wrap { padding: 36px var(--side-pad) 48px; }
  .sec-title { font-size: clamp(20px, 5.5vw, 32px); }
  .faq-card { padding: 20px 16px; }
  .faq-card__q { gap: 10px; }
  .faq-card__a { padding-left: 24px; font-size: 11px; }
  .pos-row__value { font-size: 13px; }
  .step-item { padding-left: 36px; }
  .step-item__title { font-size: 15px; }
  .entry-section__copy { font-size: clamp(18px, 5vw, 24px); }
}
