/* KANSU AUDIO — VDS v2.1 */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');

:root {
  /* VDS Core */
  --bg:        #181818;
  --bg-raised: #202020;
  --bg-card:   #1e1e1e;
  --border:    #2a2a2a;
  --border-hi: #383838;

  /* 和色 palette (24 colors, used contextually) */
  --iro-asagi:    #6ee5dc; /* SHINDO (matches plugin accent) */
  --iro-benikaba: #d77152; /* HIBIKI (matches plugin accent) */
  --iro-koke:     #f2f2f0; /* MUGEN (neutral white, matches plugin) */
  --iro-shironeri:#f0ede0;
  --iro-sumi:     #2b2b2b;
  --iro-kincha:   #c8872f;
  --iro-fuji:     #8a7bb5;
  --iro-miru:     #3d6b62;

  /* Text */
  --text-primary:   #e8e4db;
  --text-secondary: #7a7570;
  --text-dim:       #4a4540;

  /* Type */
  --font: 'JetBrains Mono', monospace;

  /* Spacing */
  --gap: 24px;
  --section-pad: 80px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 13px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

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

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

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-hi); }

/* ─── KANJI BADGE ─── */
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border: 1px solid currentColor;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--section-pad);
  height: 56px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.nav-logo .kanji {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.nav-logo .wordmark {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

/* ─── HERO ─── */
.hero {
  padding-top: 56px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  padding: var(--section-pad);
  max-width: 1200px;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.hero-title em {
  font-style: normal;
  color: var(--text-secondary);
}

.hero-sub {
  font-size: 13px;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.25;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51,166,184,0.06) 0%, transparent 70%);
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border-hi);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.btn:hover {
  background: var(--bg-raised);
  border-color: var(--text-secondary);
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg);
  border-color: var(--text-primary);
}

.btn-primary:hover {
  background: var(--iro-shironeri);
  border-color: var(--iro-shironeri);
  color: var(--bg);
}

.btn-accent {
  border-color: currentColor;
}

/* ─── PLUGIN GRID ─── */
.plugins-section {
  padding: var(--section-pad);
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 48px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.section-count {
  font-size: 10px;
  color: var(--text-dim);
}

.plugin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

/* ─── PLUGIN CARD ─── */
.plugin-card {
  background: var(--bg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background 0.15s;
  cursor: pointer;
}

.plugin-card:hover {
  background: var(--bg-card);
}

.plugin-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.plugin-kanji {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.15;
  user-select: none;
}

.plugin-color-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 4px;
}

.plugin-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.plugin-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.plugin-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.plugin-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.plugin-price {
  font-size: 13px;
  font-weight: 700;
}

.plugin-price.free {
  color: var(--iro-koke);
}

.plugin-arrow {
  font-size: 16px;
  color: var(--text-dim);
  transition: transform 0.15s, color 0.15s;
}

.plugin-card:hover .plugin-arrow {
  transform: translateX(4px);
  color: var(--text-primary);
}

/* ─── MANIFESTO / ABOUT ─── */
.manifesto {
  padding: var(--section-pad);
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.manifesto-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.manifesto-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-secondary);
}

.manifesto-text strong {
  color: var(--text-primary);
  font-weight: 700;
}

.manifesto-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}

.pillar {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pillar:last-child {
  border-bottom: none;
}

.pillar-num {
  font-size: 10px;
  color: var(--text-dim);
  min-width: 20px;
  margin-top: 2px;
}

.pillar-text {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pillar-text strong {
  display: block;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px var(--section-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  font-size: 11px;
  color: var(--text-dim);
}

.footer-right {
  display: flex;
  gap: 24px;
}

.footer-right a {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  transition: color 0.15s;
}

.footer-right a:hover {
  color: var(--text-secondary);
}

/* ─── PLUGIN PAGE ─── */
.plugin-hero {
  padding-top: 56px;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.plugin-hero-inner {
  padding: var(--section-pad);
  padding-top: 80px;
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

.plugin-hero-bg-kanji {
  position: absolute;
  right: 60px;
  bottom: -20px;
  font-size: 320px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.04;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

.plugin-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.plugin-hero-name {
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
}

.plugin-hero-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.plugin-cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ─── PLUGIN CONTENT ─── */
.plugin-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-pad);
}

.plugin-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-bottom: 80px;
}

.spec-block {
  background: var(--bg);
  padding: 28px 32px;
}

.spec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.spec-value {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.spec-value strong {
  color: var(--text-primary);
}

.engines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 40px;
}

.engine-card {
  background: var(--bg);
  padding: 24px;
}

.engine-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.engine-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── DIVIDER ─── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 var(--section-pad);
}

/* ─── PLUGIN UI MOCKUP ─── */
.plugin-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.mockup-placeholder {
  text-align: center;
}

.mockup-placeholder .big-kanji {
  font-size: 80px;
  font-weight: 700;
  opacity: 0.08;
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}

.mockup-placeholder p {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── BACK LINK ─── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.15s;
  margin-bottom: 48px;
}

.back-link:hover {
  color: var(--text-secondary);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.5s ease forwards;
}

.fade-up-1 { animation-delay: 0.05s; opacity: 0; }
.fade-up-2 { animation-delay: 0.15s; opacity: 0; }
.fade-up-3 { animation-delay: 0.25s; opacity: 0; }
.fade-up-4 { animation-delay: 0.35s; opacity: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .hero-inner,
  .plugins-section,
  .manifesto,
  .plugin-content,
  .plugin-hero-inner { padding: 40px 24px; }
  .divider { margin: 0 24px; }
  footer { padding: 24px; flex-direction: column; gap: 16px; text-align: center; }
  .plugin-grid { grid-template-columns: 1fr; }
  .manifesto { grid-template-columns: 1fr; gap: 40px; }
  .plugin-specs { grid-template-columns: 1fr; }
  .engines-grid { grid-template-columns: 1fr; }
  .plugin-hero-bg-kanji { font-size: 160px; right: 16px; }
  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
}

/* ─── BILINGUAL (EN / JP) ─── */
/* Default markup carries data-lang="en" on <html>; CSS hides the inactive variant. */
html[data-lang="en"] [data-lang="jp"] { display: none; }
html[data-lang="jp"] [data-lang="en"] { display: none; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}

.lang-btn:hover { color: var(--text-secondary); }
.lang-btn.active { color: var(--text-primary); }

.lang-sep {
  color: var(--text-dim);
  font-size: 11px;
}

/* ─── COMING SOON ─── */
.plugin-price.soon { color: var(--text-dim); }

.badge.soon {
  color: var(--text-secondary);
  border-color: var(--border-hi);
}

/* ─── DEMO TRACKS ─── */
.demo-tracks {
  border: 1px solid var(--border);
  margin-top: 40px;
}

.track-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}

.track-row:last-child { border-bottom: none; }

.track-play {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-hi);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.track-name {
  font-size: 13px;
  color: var(--text-primary);
  flex: 1;
}

.track-dur {
  font-size: 11px;
  color: var(--text-dim);
}

/* ─── FEATURE BLOCKS (Transient / Mutation / Chromatic) ─── */
.feature-block {
  border: 1px solid var(--border);
  padding: 32px;
  margin-top: 40px;
}

.feature-heading {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.feature-body {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 28px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature-item {
  background: var(--bg);
  padding: 18px 20px;
}

.feature-item-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.feature-item-desc {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.text-intro {
  margin: 80px 0 0;
}

.text-intro-heading {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 12px;
}

.text-intro-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 620px;
  margin-top: 20px;
}

/* ─── SCREENSHOTS ─── */
/* .plugin-mockup.shot drops the fixed 16/7 ratio and sizes to the image. */
.plugin-mockup.shot {
  aspect-ratio: auto;
  padding: 32px;
}

.mockup-img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 640px;
  object-fit: contain;
  margin: 0 auto;
}

.feature-img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  border: 1px solid var(--border);
  margin: 0 0 28px;
}

/* ─── SIGNATURE ─── */
.manifesto-sig {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-dim);
  text-align: right;
}

/* ─── QUOTES ─── */
.quotes-section {
  padding: var(--section-pad);
  max-width: 1200px;
  margin: 0 auto;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.quote-card {
  background: var(--bg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.quote-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-raised);
  border: 1px solid var(--border-hi);
  flex-shrink: 0;
}

.quote-name {
  font-size: 12px;
  color: var(--text-primary);
}

.quote-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--iro-asagi);
  margin-top: 2px;
}

/* ─── SUPPORT ─── */
.support-section {
  padding: var(--section-pad);
  max-width: 1200px;
  margin: 0 auto;
}

.support-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}

.support-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 40px;
}

.support-card {
  border: 1px solid var(--border);
  padding: 32px;
}

.support-email-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--iro-asagi);
  margin-bottom: 16px;
}

.support-email {
  display: block;
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 28px;
  transition: color 0.15s;
}

.support-email:hover { color: var(--iro-shironeri); }

.support-meta {
  display: flex;
  gap: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.support-meta-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.support-meta-value {
  font-size: 12px;
  color: var(--text-secondary);
}

.support-topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-top: none;
}

.topic {
  background: var(--bg);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-secondary);
}

.topic-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--iro-asagi);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ─── RESPONSIVE (new sections) ─── */
@media (max-width: 900px) {
  .nav-right { gap: 16px; }
  .quotes-section,
  .support-section { padding: 40px 24px; }
  .quotes-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-list { grid-template-columns: 1fr; }
  .support-topics { grid-template-columns: 1fr; }
  .support-meta { gap: 32px; }
}

/* ─── HERO CAROUSEL ─── */
.hero-carousel {
  position: relative;
  margin-top: 56px;             /* clear the fixed nav */
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hc-viewport {
  overflow: hidden;
  touch-action: pan-y;          /* allow vertical scroll, capture horizontal swipe */
}

.hc-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hc-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - 56px);
}

/* Media panel (screenshot) */
.hc-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
  border-right: 1px solid var(--border);
  overflow: hidden;
}

.hc-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.18;
  pointer-events: none;
}

.hc-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(255,255,255,0.035) 0%, transparent 70%);
  pointer-events: none;
}

.hc-media img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 62vh;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.55));
}

/* Placeholder media (no screenshot yet, e.g. MUGEN) */
.hc-media.placeholder .hc-ph-kanji {
  position: relative;
  z-index: 1;
  font-size: clamp(120px, 22vw, 280px);
  font-weight: 700;
  line-height: 1;
  opacity: 0.1;
  user-select: none;
}

/* Info panel */
.hc-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px var(--section-pad);
  max-width: 620px;
}

.hc-kanji {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.18;
  margin-bottom: 20px;
  user-select: none;
}

.hc-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent, var(--text-secondary));
  margin-bottom: 12px;
}

.hc-name {
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent, var(--text-primary));
  margin-bottom: 24px;
}

.hc-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hc-metarow {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.hc-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

.hc-price.soon {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--border-hi);
  padding: 6px 12px;
}

.hc-formats {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.hc-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Controls */
.hc-controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 5;
}

.hc-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-hi);
  background: var(--bg);
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.hc-arrow:hover {
  color: var(--text-primary);
  border-color: var(--text-secondary);
  background: var(--bg-raised);
}

.hc-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hc-dot {
  width: 28px;
  height: 3px;
  border: none;
  padding: 0;
  background: var(--border-hi);
  cursor: pointer;
  transition: background 0.15s;
}

.hc-dot:hover { background: var(--text-secondary); }
.hc-dot.active { background: var(--text-primary); }

@media (max-width: 900px) {
  .hero-carousel { margin-top: 56px; }
  .hc-slide {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hc-media {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 48px 24px 40px;
  }
  .hc-media img { max-height: 42vh; }
  .hc-info { padding: 40px 24px 88px; }
  .hc-controls { bottom: 28px; gap: 14px; }
}

/* ─── LEGAL / TERMS ─── */
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 120px var(--section-pad) var(--section-pad);
}

.legal-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 12px;
}

.legal-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 48px;
}

.legal-intro {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.legal-section { margin-bottom: 40px; }

.legal-section h2 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.legal-section p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-section p:last-child { margin-bottom: 0; }
.legal-section p strong { color: var(--text-primary); font-weight: 700; }
.legal-section a { color: var(--iro-asagi); }
.legal-section a:hover { color: var(--iro-shironeri); }

@media (max-width: 900px) {
  .legal-wrap { padding: 96px 24px 48px; }
}

/* ─── SUPPORT PAGE ─── */
.support-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 120px var(--section-pad) var(--section-pad);
}

.support-page .legal-title { margin-bottom: 24px; }

@media (max-width: 900px) {
  .support-page { padding: 96px 24px 48px; }
}

/* ─── PLUGIN PAGE HERO (split — screenshot + info, matches carousel) ─── */
.phero {
  position: relative;
  margin-top: 56px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.phero-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px var(--section-pad) 4px;
}

.phero-top .back-link { margin-bottom: 0; }

.phero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 540px;
}

.phero .hc-media img { max-height: 470px; }

@media (max-width: 900px) {
  .phero-top { padding: 16px 24px 0; }
  .phero-grid { grid-template-columns: 1fr; min-height: 0; }
  .phero .hc-media img { max-height: 40vh; }
  .phero .hc-info { padding: 40px 24px 48px; }
}
