@charset "UTF-8";
/* ============================================================
   PASOUL POP UP STORE LP — B案 (Vanilla CSS)
   DARK NEON theme — matches A4 flyer tonality
   ============================================================ */
/* ── CSS Variables ── */
:root {
  --bg: #0a0a1f;
  --bg-alt: #11122c;
  --b-bg-page: #08081a;
  --ink: #f5f5ff;
  --ink-mid: #c8cae8;
  --muted: #7e85b8;
  --hairline: rgba(255, 255, 255, 0.1);
  --cyan: #3dd9c6;
  --magenta: #ff5b96;
  --peach: #ffb89c;
  --violet: #8a6cff;
  --gradient: linear-gradient(135deg, #3dd9c6 0%, #8a6cff 50%, #ff5b96 100%);
  --gradient-soft:
    radial-gradient(ellipse 70% 60% at 15% 10%, rgba(61, 217, 198, 0.35), transparent 60%), radial-gradient(ellipse 60% 50% at 100% 30%, rgba(255, 91, 150, 0.32), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(138, 108, 255, 0.4), transparent 60%), linear-gradient(180deg, #0a0a1f 0%, #14112f 100%);
  --font-display: "Anton", "Oswald", "Noto Sans JP", sans-serif;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  --radius-card: 18px;
  --section-pad: 40px 22px;
}

/* ── Reset / Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
  background: radial-gradient(ellipse 900px 700px at 10% 0%, rgba(61, 217, 198, 0.18), transparent 60%), radial-gradient(ellipse 800px 700px at 90% 20%, rgba(255, 91, 150, 0.2), transparent 60%), radial-gradient(ellipse 800px 600px at 50% 100%, rgba(138, 108, 255, 0.22), transparent 60%), var(--b-bg-page);
}

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

a {
  color: inherit;
}

button {
  font-family: inherit;
}

/* ── Icon SVG ── */
.icon {
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon-sm {
  width: 14px;
  height: 14px;
}

.icon-md {
  width: 16px;
  height: 16px;
}

.icon-lg {
  width: 20px;
  height: 20px;
}

.icon-xl {
  width: 24px;
  height: 24px;
}

/* ── Glass card ── */
.glass-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  box-shadow: var(--glass-shadow);
}

/* ── Section label badge ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 12px;
}

.section-label--light {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.section-label--light .section-label__en {
  color: rgba(255, 255, 255, 0.8);
}

.section-label__num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 9px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(61, 217, 198, 0.5);
}

.section-label__en {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-mid);
}

/* ── Mono label ── */
.mono-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 4px;
}

/* ── Section common ── */
.section {
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.section-title {
  font-family: var(--font-jp);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

.section-desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 22px;
}

/* ── Scroll reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Gradient orbs ── */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orb--hero-cyan {
  left: -50px;
  top: -30px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
  filter: blur(50px);
  opacity: 0.55;
}

.orb--hero-magenta {
  right: -40px;
  top: 60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--magenta) 0%, transparent 70%);
  filter: blur(70px);
  opacity: 0.5;
}

.orb--hero-violet {
  left: 140px;
  top: 300px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--violet) 0%, transparent 70%);
  filter: blur(60px);
  opacity: 0.4;
}

.orb--exp-left {
  left: -100px;
  top: 120px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #e6f1ff 0%, transparent 70%);
  filter: blur(50px);
  opacity: 0.6;
}

.orb--special-violet {
  left: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--violet) 0%, transparent 70%);
  filter: blur(70px);
  opacity: 0.45;
}

.orb--special-magenta {
  right: -80px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--magenta) 0%, transparent 70%);
  filter: blur(70px);
  opacity: 0.4;
}

.orb--prod-pink {
  left: -80px;
  top: 80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #fff0f5 0%, transparent 70%);
  filter: blur(60px);
  opacity: 0.5;
}

.orb--prod-teal {
  right: -60px;
  bottom: 100px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #e6fff9 0%, transparent 70%);
  filter: blur(60px);
  opacity: 0.5;
}

.orb--brand-cyan {
  right: -40px;
  top: -50px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
  filter: blur(60px);
  opacity: 0.3;
}

.orb--footer-cyan {
  left: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
  filter: blur(70px);
  opacity: 0.5;
}

.orb--footer-magenta {
  right: -80px;
  bottom: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--magenta) 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.55;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-jp);
  font-weight: 700;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 13px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, filter 0.2s;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--comic {
  background: #15101c;
  color: #fff;
  border: 2px solid #15101c;
  box-shadow: 4px 4px 0 var(--magenta), 8px 8px 0 var(--cyan);
  margin-bottom: 14px;
}

.btn--comic:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--magenta), 12px 12px 0 var(--cyan);
}

.btn--crimson {
  background: linear-gradient(135deg, #ff5e3d 0%, #e8285f 55%, #a01d4a 100%);
  color: #fff;
  font-size: 14px;
  padding: 15px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(160, 29, 74, 0.45), 0 1px 0 rgba(255, 255, 255, 0.35) inset;
  margin-bottom: 22px;
}

.btn--crimson:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(160, 29, 74, 0.6), 0 1px 0 rgba(255, 255, 255, 0.35) inset;
  filter: brightness(1.05);
}

.btn--gradient {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 91, 150, 0.35);
}

.btn--gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 91, 150, 0.5);
}

.btn--dark {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--dark:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.btn--ghost-white {
  background: transparent;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  width: 100%;
  justify-content: center;
  padding: 14px;
  border-radius: 14px;
  box-sizing: border-box;
  text-decoration: none;
  display: flex;
  font-size: 13px;
}

.btn--ghost-white:hover {
  background: #fff;
  color: var(--bg);
  border-color: #fff;
}

.btn--gradient-pill {
  background: var(--gradient);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 12px;
  box-shadow: 0 4px 14px rgba(255, 91, 150, 0.4);
}

.btn-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon--gradient {
  background: var(--gradient);
}

.btn-icon--circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
}

/* ── Mobile Menu ── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(20, 16, 40, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.menu-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 340px);
  background: linear-gradient(180deg, #fbfaff 0%, #f0eafe 100%);
  box-shadow: -12px 0 40px rgba(20, 16, 40, 0.18);
  padding: 22px 22px 28px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.menu-overlay.is-open .menu-drawer {
  transform: translateX(0);
}

.menu-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.menu-drawer__logo {
  height: 22px;
  width: auto;
}

.menu-drawer__close {
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: rgba(26, 22, 53, 0.05);
  cursor: pointer;
  color: #1a1635;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-drawer__nav {
  display: flex;
  flex-direction: column;
}

.menu-drawer__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(26, 22, 53, 0.08);
  text-decoration: none;
  color: #1a1635;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 17px;
}

.menu-drawer__link:last-child {
  border-bottom: none;
}

.menu-drawer__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #7d7aa3;
  min-width: 22px;
}

.menu-drawer__link .icon {
  margin-left: auto;
  color: #7d7aa3;
}

.menu-drawer__footer {
  margin-top: auto;
  padding-top: 24px;
}

.menu-drawer__footer .btn--dark {
  background: var(--gradient);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(61, 217, 198, 0.35);
}

.menu-drawer__footer .btn--dark:hover {
  background: var(--gradient);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(61, 217, 198, 0.5);
}

/* ── LP Frame (desktop layout wrapper) ── */
.lp-frame {
  width: 100%;
}

/* ── Sidebar (hidden on mobile) ── */
.lp-sidebar {
  display: none;
}

/* ── Phone column ── */
.lp-phone {
  width: 100%;
  background: var(--bg);
}

.lp-phone__chrome {
  display: none;
}

/* ── Header ── */
.site-header {
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

.site-header__logo {
  height: 22px;
  width: auto;
}

.site-header__hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  cursor: pointer;
  color: var(--ink);
  transition: background 0.15s;
}

.site-header__hamburger:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header__ec-link {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(61, 217, 198, 0.35);
  transition: box-shadow 0.2s, transform 0.15s;
}

.site-header__ec-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(61, 217, 198, 0.5);
}

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-soft);
  padding: 20px 22px 36px;
}

.hero__products {
  position: absolute;
  top: 80px;
  right: 14px;
  width: 220px;
  height: 320px;
  pointer-events: none;
  z-index: 0;
}

.hero__product {
  position: absolute;
  height: auto;
}

.hero__product--black {
  top: 0;
  left: 0;
  width: 116px;
  filter: drop-shadow(0 12px 26px rgba(255, 91, 150, 0.55));
}

.hero__product--white {
  top: 6px;
  right: 0;
  width: 120px;
  filter: drop-shadow(0 12px 26px rgba(138, 108, 255, 0.5));
}

.hero__product--laptop {
  top: 170px;
  left: 24px;
  width: 170px;
  filter: drop-shadow(0 12px 26px rgba(61, 217, 198, 0.5));
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 14px;
}

.venue-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 22px;
  font-family: var(--font-jp);
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--ink);
}

.venue-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 10px var(--magenta);
}

.venue-badge__in {
  font-family: var(--font-display);
  letter-spacing: 0.14em;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.88;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0 0 14px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__title span {
  display: block;
}

.hero__sub-title {
  font-family: var(--font-jp);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}

.hero__desc {
  font-size: 14px;
  color: var(--ink-mid);
  margin: 0 0 22px;
  line-height: 1.7;
  max-width: 340px;
}

.meta-card {
  padding: 18px;
  margin-bottom: 14px;
}

.meta-card__date-row {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}

.meta-card__date {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.meta-card__hours {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.meta-card__venue-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.meta-card__venue-access {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── Experience ── */
.section--experience {
  padding: var(--section-pad);
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.experience-card {
  padding: 20px;
}

.experience-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.experience-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(140, 108, 255, 0.25);
  flex-shrink: 0;
  color: #fff;
}

.experience-card__en {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 2px;
}

.experience-card__jp {
  font-family: var(--font-jp);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.experience-card__desc {
  font-size: 12px;
  color: var(--ink-mid);
  line-height: 1.75;
}

/* ── Special event ── */
.section--dark {
  background: linear-gradient(180deg, #15101c 0%, #1a1430 100%);
  color: #fff;
  padding: 44px 22px;
}

.special-sub-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

.special-title {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin: 4px 0 18px;
  font-weight: 400;
  color: #fff;
  text-shadow: 4px 4px 0 var(--magenta), 8px 8px 0 var(--cyan), 10px 10px 30px rgba(138, 108, 255, 0.5);
}

.special-intro {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 22px;
  line-height: 1.7;
}

.guest-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  box-shadow: var(--glass-shadow);
  color: var(--ink);
  padding: 18px;
  margin-bottom: 14px;
  position: relative;
}

.guest-card__badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--gradient);
  color: #fff;
  border-radius: 999px;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(255, 91, 150, 0.4);
}

.guest-card__name {
  font-family: var(--font-jp);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}

.guest-card__title {
  font-size: 11px;
  color: var(--ink-mid);
  margin-top: 4px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.guest-card__photo {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  aspect-ratio: 16/9;
  box-shadow: 0 8px 24px rgba(138, 108, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.guest-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guest-card__bio {
  font-size: 12px;
  color: var(--ink);
  line-height: 1.85;
}

.guest-card__profile {
  margin-bottom: 14px;
  margin-top: 4px;
}

.special-details-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  box-shadow: var(--glass-shadow);
  color: var(--ink);
  padding: 4px 18px;
  margin-bottom: 14px;
}

.special-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
}

.special-detail--last {
  border-bottom: none;
}

.special-detail__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 91, 150, 0.25);
  color: #fff;
}

.special-detail__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 2px;
}

.special-detail__value {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

/* ── Countdown ── */
.section--urgency {
  padding: var(--section-pad);
}

.countdown-wrap {
  position: relative;
  padding: 4px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(16, 24, 58, 0.96) 0%, rgba(37, 24, 82, 0.96) 52%, rgba(62, 24, 71, 0.96) 100%);
  box-shadow: 0 12px 36px rgba(9, 12, 32, 0.45);
}

.countdown-inner {
  background: rgba(8, 10, 24, 0.22);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.countdown-heading {
  margin-bottom: 16px;
}

.countdown-digits {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.countdown-unit {
  flex: 1;
}

.countdown-num {
  border-radius: 12px;
  padding: 12px 4px;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, rgb(61, 217, 198) 0%, rgb(138, 108, 255) 50%, rgb(255, 91, 150) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 6px;
}

/* ── Products ── */
.section--products {
  padding: var(--section-pad);
}

/* group + heading */
.group {
  position: relative;
  margin-bottom: 28px;
}

.heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.heading__icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.heading__en {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--ink);
}

.heading__jp {
  font-family: var(--font-jp);
  font-size: 11px;
  color: var(--muted);
}

.heading__rule {
  flex: 1;
  height: 1px;
  background: var(--hairline);
}

/* card glow */
.card__glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(61, 217, 198, 0.3), transparent 70%);
  pointer-events: none;
}

.card__glow--violet {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(138, 108, 255, 0.35), transparent 70%);
}

/* feature card */
.card--feature {
  padding: 16px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.card--gaming {
  padding: 16px;
  position: relative;
  overflow: hidden;
}

/* square photo */
.photo--square {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
}

.photo--square img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* badges */
.badge {
  position: absolute;
  font-family: var(--font-mono);
  font-weight: 700;
}

.badge--limited {
  top: 8px;
  left: 8px;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #ffe066;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(10, 10, 31, 0.7);
  border: 1px solid rgba(255, 224, 102, 0.5);
}

/* feature head */
.feature__head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.rank {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 3px 11px;
  border-radius: 6px;
  background: var(--gradient);
  box-shadow: 0 3px 12px rgba(255, 91, 150, 0.45);
}

.feature__name {
  font-family: var(--font-jp);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}

.feature__sub {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--muted);
  margin-top: 2px;
}

.card--feature .photo--square {
  margin-bottom: 12px;
}

/* chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--cyan);
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(61, 217, 198, 0.1);
  border: 1px solid rgba(61, 217, 198, 0.35);
  box-shadow: 0 0 12px rgba(61, 217, 198, 0.18) inset;
}

/* specs */
.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  margin: 0 0 14px;
}

.specs__row {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.specs dt {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.specs dd {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

/* price block */
.price {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.price__regular {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.price__strike {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--magenta);
}

.price__sale {
  padding: 10px 12px 12px;
  background: linear-gradient(180deg, rgba(255, 91, 150, 0.1), rgba(138, 108, 255, 0.1));
  text-align: center;
}

.card--feature .price__sale,
.card--gaming .price__sale {
  padding: 12px 12px 14px;
}

.price__tag {
  display: inline-block;
  font-family: var(--font-jp);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--gradient);
  margin-bottom: 6px;
  box-shadow: 0 2px 10px rgba(255, 91, 150, 0.4);
}

.price__amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  justify-content: center;
}

.price__amount .yen {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink);
  align-self: flex-start;
  margin-top: 4px;
}

.price__amount .num {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #fff;
}

.price__amount--big .num {
  font-size: 42px;
}

.price__amount .tax {
  font-family: var(--font-jp);
  font-size: 11px;
  color: var(--ink-mid);
  margin-left: 2px;
}

/* note card */
.card--note {
  padding: 12px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.note__photo {
  position: relative;
}

.note__photo .photo--square {
  height: auto;
}

.inch {
  position: absolute;
  bottom: 6px;
  left: 6px;
  font-family: var(--font-display);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  padding: 3px 7px;
  border-radius: 6px;
  background: rgba(10, 10, 31, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.inch__u {
  font-size: 7px;
  margin-left: 1px;
}

.note__body {
  display: flex;
  flex-direction: column;
}

.note__name {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.note__color {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
}

.note__specs {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.note__body .price {
  margin-top: auto;
}

/* gaming card */
.gaming__tags {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.tag-pill {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #fff;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--gradient);
}

.gaming__series {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.gaming__title {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.gaming__name {
  font-family: var(--font-jp);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.gaming__kiwami {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gaming__color {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 12px;
}

/* slider */
.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
  margin-bottom: 12px;
}

.slider__track {
  position: absolute;
  inset: 0;
}

.slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.slider__img.is-active {
  opacity: 1;
}

.slider__label {
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #fff;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(10, 10, 31, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(10, 10, 31, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.slider__arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider__arrow--prev {
  left: 8px;
}

.slider__arrow--next {
  right: 8px;
}

.slider__dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.slider__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  padding: 0;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.25s, background 0.25s;
}

.slider__dot.is-active {
  width: 18px;
  background: var(--gradient);
}

/* purchase flow */
.flow {
  padding: 14px;
  margin-top: 16px;
}

.flow__title {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}

.flow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 11px;
  line-height: 2;
  color: var(--ink-mid);
}

.flow__list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flow__icon {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.disclaimer {
  font-size: 10px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.6;
}

/* ── Brand ── */
.section--brand {
  padding: 50px 22px;
  background: linear-gradient(180deg, #0a0a1f 0%, #15101c 100%);
}

.brand-made-in {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  font-weight: 400;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 20px rgba(255, 91, 150, 0.2));
}

.brand-lead {
  font-size: 13px;
  color: var(--ink-mid);
  margin: 0 0 24px;
  line-height: 1.75;
}

.brand-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-point {
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.brand-point__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(255, 91, 150, 0.3);
  color: #fff;
}

.brand-point__title {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 700;
}

.brand-point__desc {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── Access ── */
.section--access {
  padding: var(--section-pad);
}

.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 6px 24px rgba(140, 108, 255, 0.12);
  line-height: 0;
}

.access-card {
  padding: 16px;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.8;
}

.access-card__name {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
}

.access-card__address {
  color: var(--muted);
  font-size: 12px;
}

.access-card__row {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  margin-top: 10px;
  font-size: 12px;
}

/* ── FAQ ── */
.section--faq {
  padding: var(--section-pad);
  background: rgba(255, 255, 255, 0.02);
}

.faq-list {
  padding: 4px 18px;
}

.faq-item {
  border-top: 1px solid var(--hairline);
}

.faq-item__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 14px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: inherit;
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.faq-item__q-marker {
  display: inline;
  margin-right: 8px;
  color: var(--violet);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
}

.faq-item__toggle {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.faq-item__q[aria-expanded=true] .faq-item__toggle {
  transform: rotate(45deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  font-size: 12px;
  line-height: 1.75;
  color: var(--ink-mid);
}

.faq-item--open .faq-item__a {
  max-height: 300px;
  padding: 0 4px 16px;
}

.faq-item__a-marker {
  margin-right: 6px;
  font-family: var(--font-display);
  color: var(--magenta);
  font-size: 14px;
}

/* ── Footer CTA ── */
.footer-cta {
  padding: 60px 22px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1a1635 0%, #2a1f55 100%);
  color: #fff;
}

.footer-cta__inner {
  position: relative;
  text-align: center;
}

.footer-cta__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.footer-cta__title {
  font-family: var(--font-jp);
  font-size: 28px;
  line-height: 1.35;
  margin: 0 0 14px;
  font-weight: 800;
}

.footer-cta__title--gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-cta__meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
  line-height: 1.7;
}

.footer-cta__map-btn {
  margin-bottom: 24px;
}

.footer-cta__social {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
  flex-shrink: 0;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ── Sticky bar (mobile only) ── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 10px 14px;
  background: rgba(10, 10, 31, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--hairline);
  display: flex;
  gap: 10px;
  align-items: center;
}

.sticky-bar__info {
  flex: 1;
}

.sticky-bar__date {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.sticky-bar__venue {
  font-size: 10px;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════
   DESKTOP LAYOUT — sidebar + phone mockup
   ══════════════════════════════════════════════════════════════ */
/* Phone chrome: always hidden (not needed in vanilla HTML) */
.lp-phone__chrome {
  display: none;
}

@media (min-width: 860px) {
  body {
    background: #0a0a0f;
    padding-bottom: 0;
    background: radial-gradient(ellipse 900px 700px at 10% 0%, rgba(61, 217, 198, 0.18), transparent 60%), radial-gradient(ellipse 800px 700px at 90% 20%, rgba(255, 91, 150, 0.2), transparent 60%), radial-gradient(ellipse 800px 600px at 50% 100%, rgba(138, 108, 255, 0.22), transparent 60%), var(--b-bg-page);
    background-attachment: fixed;
  }
  /* Frame: flex row centering sidebar + phone */
  .lp-frame {
    display: flex;
    gap: 24px;
    padding: 24px;
    align-items: flex-start;
    justify-content: center;
    min-height: 100vh;
  }
  /* ── Sidebar (dark — matches DARK NEON theme) ── */
  .lp-sidebar {
    display: flex;
    flex-direction: column;
    width: 224px;
    flex-shrink: 0;
    position: sticky;
    top: 24px;
    background: linear-gradient(180deg, #11122c 0%, #0d0c22 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55), 0 0 0 0.5px rgba(138, 108, 255, 0.15);
    padding: 22px;
    gap: 0;
    align-self: flex-start;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    scrollbar-width: none;
    color: #f5f5ff;
  }
  .lp-sidebar::-webkit-scrollbar {
    display: none;
  }
  /* Brand block */
  .sb-brand {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 14px;
  }
  .sb-brand__logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
  }
  .sb-brand__dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gradient);
    box-shadow: 0 0 10px rgba(255, 91, 150, 0.4);
    flex-shrink: 0;
  }
  .sb-brand__logo {
    height: 30px;
    width: auto;
  }
  .sb-brand__sub {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.18em;
    color: var(--muted);
  }
  /* Countdown */
  .sb-countdown {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 14px;
  }
  .sb-countdown__label {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.2em;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .sb-countdown__digits {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
  }
  .sb-countdown__unit {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
  }
  .sb-countdown__num {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, rgb(61, 217, 198) 0%, rgb(93, 171, 255) 52%, rgb(138, 108, 255) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .sb-countdown__unit sup {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--muted);
    font-style: normal;
    -webkit-text-fill-color: var(--muted);
    background: none;
  }
  .sb-countdown__open {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--muted);
    letter-spacing: 0.08em;
  }
  /* Nav */
  .sb-nav {
    margin-bottom: 14px;
  }
  .sb-nav__label {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.2em;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .sb-nav__list {
    position: relative;
    padding-left: 0;
  }
  .sb-nav__rail {
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
  }
  .sb-nav__rail-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: var(--gradient);
    transition: height 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
    height: 0%;
  }
  .sb-nav__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0 6px 26px;
    position: relative;
    font-size: 11px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
    font-family: var(--font-jp);
  }
  .sb-nav__item.is-active {
    color: #f5f5ff;
    font-weight: 700;
  }
  .sb-nav__dot {
    position: absolute;
    left: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0a0a1f;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.2s;
    flex-shrink: 0;
  }
  .sb-nav__item.is-active .sb-nav__dot {
    background: var(--magenta);
    border-color: transparent;
    box-shadow: 0 0 8px var(--magenta);
  }
  .sb-nav__num {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    min-width: 16px;
    color: var(--muted);
  }
  /* Venue */
  .sb-venue {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .sb-venue__label {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.2em;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .sb-venue__name {
    font-size: 11px;
    font-family: var(--font-jp);
    line-height: 1.5;
    margin-bottom: 12px;
    color: #f5f5ff;
  }
  .sb-venue__btn {
    width: 100%;
    padding: 10px 12px;
    background: var(--gradient);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 999px;
    text-decoration: none;
    transition: filter 0.2s, transform 0.15s;
    box-shadow: 0 4px 12px rgba(255, 91, 150, 0.35);
  }
  .sb-venue__btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
  }
  .sb-venue__btn-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 6px var(--cyan);
  }
  /* ── Phone mockup ── */
  .lp-phone {
    width: 412px;
    flex-shrink: 0;
    background: var(--bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  /* Header: show EC link, hide hamburger on desktop phone column */
  .site-header__hamburger {
    display: none;
  }
  .site-header__ec-link {
    display: inline-flex;
  }
  /* Sticky bar: hidden on desktop (sidebar serves that role) */
  .sticky-bar {
    display: none;
  }
}
/* ============================================================
   GUEST ARTIST : 麦茶 氏 セクション 追加スタイル
   ============================================================ */
.section-label__num--icon {
  padding: 0;
}

.section-label__num--icon .icon {
  width: 12px;
  height: 12px;
  stroke: #fff;
}

.mugicha-title {
  font-family: var(--font-jp);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 4px 0 16px;
}

.mugicha-title__name {
  font-size: 1.28em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 18px rgba(255, 91, 150, 0.35));
}

/* Artwork feature card */
.mugicha-art {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  box-shadow: var(--glass-shadow);
  padding: 16px;
  margin-bottom: 14px;
  position: relative;
}

.mugicha-art__badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--gradient);
  color: #fff;
  border-radius: 999px;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(255, 91, 150, 0.4);
}

.mugicha-art__photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(61, 217, 198, 0.18);
  margin-bottom: 14px;
}

.mugicha-art__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mugicha-art__credit {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #fff;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(10, 10, 31, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.mugicha-art__name {
  font-family: var(--font-jp);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.mugicha-art__name span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 700;
}

/* Bio (outside card, between artwork and schedule) */
.mugicha-bio {
  font-size: 12px;
  color: var(--ink-mid);
  line-height: 1.85;
  margin: 0 0 14px;
  padding: 0 2px;
}

/* Goods lineup lead text */
.mugicha-goods-lead {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  margin: 0 0 14px;
}

/* Goods lineup poster */
.mugicha-goods-photo {
  padding: 8px;
  margin-bottom: 14px;
}

.mugicha-goods-photo img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Goods list */
.mugicha-goods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.mugicha-good {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink-mid);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 11px 12px;
}

.mugicha-good--wide {
  grid-column: 1/-1;
}

.mugicha-good__dot {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 3px 10px rgba(255, 91, 150, 0.3);
}

.mugicha-good__dot .icon {
  width: 13px;
  height: 13px;
}

/* Notes block */
.mugicha-notes {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.mugicha-notes__title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 8px;
}

.mugicha-notes__item {
  font-size: 11px;
  line-height: 1.7;
  color: var(--ink-mid);
  margin: 0;
}

.mugicha-notes__item + .mugicha-notes__item {
  margin-top: 4px;
}

/*# sourceMappingURL=eventlp2607.css.map */
