/* ===================================================
   BASE RESET & VARIABLES
=================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:           #08080f;
  --bg-alt:       #0d0d1c;
  --bg-card:      rgba(255,255,255,0.04);
  --primary:      #ff1493;
  --primary-dim:  rgba(255,20,147,0.18);
  --primary-glow: rgba(255,20,147,0.35);
  --purple:       #8b5cf6;
  --gold:         #ffd700;
  --text:         #ebebeb;
  --muted:        #888;
  --border:       rgba(255,20,147,0.18);
  --border-soft:  rgba(255,255,255,0.07);
  --radius:       12px;
  --radius-lg:    20px;
  --ease:         0.3s ease;
  --max-w:        1160px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ===================================================
   SCROLL REVEAL
=================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   LOGO IMAGES
=================================================== */
.nav-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}
.hero-logo-wrap {
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
}
.hero-logo-img {
  width: min(420px, 90vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 0 24px rgba(255,20,147,0.25));
}
.shop-logo-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  position: relative;
  z-index: 1;
}
.footer-logo-img {
  width: 180px;
  height: auto;
  display: block;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

/* ===================================================
   NAVIGATION
=================================================== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  padding: 1.1rem 2rem;
  transition: background var(--ease), padding var(--ease), border-color var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(8,8,15,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--border-soft);
  padding: 0.75rem 2rem;
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  gap: 1px;
}
.logo-jp {
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.logo-en {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  letter-spacing: 0.12em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  color: var(--muted);
  position: relative;
  transition: color var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--ease);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: 270px;
  background: var(--bg-alt);
  border-left: 1px solid var(--border-soft);
  z-index: 850;
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-drawer a {
  font-size: 1.05rem;
  color: var(--muted);
  transition: color var(--ease);
}
.mobile-drawer a:hover { color: var(--primary); }

/* ===================================================
   BUTTONS
=================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 22px var(--primary-glow);
}
.btn-primary:hover {
  background: #d40f7e;
  box-shadow: 0 0 36px var(--primary-glow);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-soft);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ===================================================
   HERO
=================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem 5rem;
  overflow: hidden;
}

/* Background glows */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.glow-1 {
  width: 600px; height: 600px;
  top: -100px; left: -150px;
  background: radial-gradient(circle, rgba(255,20,147,0.12) 0%, transparent 70%);
}
.glow-2 {
  width: 500px; height: 500px;
  bottom: -80px; right: -100px;
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%);
}
.glow-3 {
  width: 400px; height: 400px;
  top: 50%; right: 20%;
  background: radial-gradient(circle, rgba(255,215,0,0.05) 0%, transparent 70%);
}
/* Subtle dot-grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.title-main {
  display: block;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  background: linear-gradient(135deg, #fff 35%, var(--primary) 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.title-by {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.4em;
  margin-top: 0.5rem;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.hero-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}
.hero-scroll span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.scroll-bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.25; transform: scaleY(0.9); }
  50%      { opacity: 1;    transform: scaleY(1.1); }
}

/* ===================================================
   SECTIONS COMMON
=================================================== */
.section {
  padding: 6rem 2rem;
}
.section-alt {
  background: var(--bg-alt);
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-head p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.9rem;
}

/* ===================================================
   ABOUT
=================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.about-body p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.85;
  font-size: 0.9rem;
}

.stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.stat-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
}

.company-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.info-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.info-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.info-row:first-child { padding-top: 0; }
.info-row:last-child  { border-bottom: none; padding-bottom: 0; }
.info-key {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
}
.info-val {
  font-size: 0.9rem;
  color: var(--text);
}

/* ===================================================
   J-POP SHOP
=================================================== */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Visual card */
.shop-visual { display: flex; justify-content: center; }
.shop-card-wrap {
  width: 100%;
  max-width: 380px;
  perspective: 1000px;
}
.shop-card {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg,
    rgba(255,20,147,0.14) 0%,
    rgba(139,92,246,0.09) 55%,
    rgba(255,215,0,0.05) 100%
  );
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s ease;
}
.shop-card:hover { transform: rotateY(-4deg) rotateX(2deg); }
.shop-card::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 40% 40%, rgba(255,20,147,0.08) 0%, transparent 55%);
  animation: rotateBg 14s linear infinite;
}
@keyframes rotateBg {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.shop-badge-top {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-soft);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}
.shop-logo-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}
.shop-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 900;
  background: linear-gradient(135deg, #fff 25%, var(--primary) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.shop-logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.4em;
}
.shop-deco {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.5rem;
  color: var(--primary);
  opacity: 0.5;
  font-size: 0.7rem;
}

/* Info side */
.shop-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.shop-info p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.feature-list li {
  color: var(--muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.feat-mark { color: var(--primary); }
.fine-print {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ===================================================
   MARKETPLACE
=================================================== */
.mkt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.mkt-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  position: relative;
}
.mkt-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(255,20,147,0.09);
}
.mkt-card.featured {
  border-color: var(--primary);
  background: linear-gradient(145deg, rgba(255,20,147,0.07) 0%, var(--bg-card) 100%);
}

/* Icon is now an inline SVG container – background/border are built into each SVG */
.mkt-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.mkt-icon svg {
  width: 56px;
  height: 56px;
  display: block;
}

.mkt-featured-label,
.mkt-label {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  background: var(--primary-dim);
  color: var(--primary);
  border: 1px solid var(--border);
  width: fit-content;
}
.mkt-label {
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  border-color: var(--border-soft);
}

.mkt-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
}
.mkt-card p {
  font-size: 0.825rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
}
.mkt-link {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  transition: letter-spacing var(--ease);
}
.mkt-link:hover { letter-spacing: 0.03em; }

/* ===================================================
   CONTACT
=================================================== */
.contact-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.contact-lead {
  color: var(--muted);
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  line-height: 1.85;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.contact-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-key {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.contact-val {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ===================================================
   INSTAGRAM BUTTON
=================================================== */
.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 0 20px rgba(220,39,67,0.35);
  transition: all var(--ease);
  border: none;
  cursor: pointer;
  width: fit-content;
}
.btn-ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(220,39,67,0.5);
}

/* SNS section */
.sns-section { }
.sns-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
}
.sns-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-svg {
  width: 88px;
  height: 88px;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(220,39,67,0.3));
}
.sns-handle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.sns-desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

/* Footer SNS */
.footer-sns {
  margin-top: 1rem;
}
.footer-sns-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  transition: color var(--ease);
}
.footer-sns-link:hover { color: var(--primary); }

@media (max-width: 600px) {
  .sns-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  .btn-ig { margin: 0 auto; }
}

/* Corporate / info links */
.nav-corp-btn {
  color: var(--primary) !important;
  font-size: 0.78rem;
  border: 1px solid var(--border);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  transition: background var(--ease);
}
.nav-corp-btn:hover { background: var(--primary-dim); }
.nav-corp-btn::after { display: none !important; }

.info-link {
  color: var(--primary);
  font-size: 0.875rem;
  transition: opacity var(--ease);
}
.info-link:hover { opacity: 0.75; }

.footer-corp-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--primary);
  transition: opacity var(--ease);
}
.footer-corp-link:hover { opacity: 0.7; }

/* 5-card marketplace — keeps grid balanced on wide screens */
.mkt-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 960px) {
  .mkt-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .mkt-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   FOOTER
=================================================== */
.footer {
  background: #040408;
  border-top: 1px solid var(--border-soft);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.footer-brand p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.85;
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  font-size: 0.83rem;
  color: var(--muted);
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--primary); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid var(--border-soft);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.73rem;
  color: var(--muted);
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 900px) {
  .about-grid,
  .shop-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .shop-visual { order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .mkt-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 1.25rem; }
  .hero    { padding: 6rem 1.25rem 5rem; }
  .shop-card-wrap { max-width: 100%; }
}
