@import url('https://fonts.googleapis.com/css2?family=Monoton&family=Outfit:wght@300;400;600;700&family=Noto+Sans+JP:wght@300;700&display=swap');

:root {
  --pink: #ff71ce;
  --purple: #b967ff;
  --cyan: #01cdfe;
  --yellow: #fffb96;
  --ink: #150078;
  --white: #f0f0ff;
  --display: "Monoton", sans-serif;
  --body: "Outfit", sans-serif;
  --jp: "Noto Sans JP", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: linear-gradient(180deg, var(--pink) 0%, var(--purple) 50%, var(--cyan) 100%);
  background-attachment: fixed;
  color: var(--white);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
}

/* ── JP DECO ─────────────────────────────────────────────── */
.jp-left {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--jp);
  font-weight: 300;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.3em;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.jp-right {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--jp);
  font-weight: 300;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.3em;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(21,0,120,0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--yellow);
  text-shadow: 0 0 10px var(--pink), 0 0 20px var(--pink);
  letter-spacing: 0.05em;
}
.header-cta {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  color: #fff !important;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.3);
  text-decoration: none !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  box-shadow: 0 0 20px rgba(255,113,206,0.4);
  transition: box-shadow 0.2s, transform 0.2s;
}
.header-cta:hover {
  box-shadow: 0 0 30px rgba(255,113,206,0.7);
  transform: translateY(-2px);
}

/* ── TICKER ──────────────────────────────────────────────── */
.ticker-wrap {
  background: rgba(21,0,120,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  white-space: nowrap;
  padding: 7px 0;
}
.ticker-track {
  display: inline-flex;
  gap: 48px;
  animation: ticker 28s linear infinite;
}
.ticker-track span { font-family: var(--body); font-size: 0.75rem; color: var(--yellow); letter-spacing: 0.1em; }
.ticker-track span.pink { color: var(--pink); }
.ticker-track span.cyan { color: var(--cyan); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── GRID HORIZON ────────────────────────────────────────── */
.grid-horizon {
  position: relative;
  height: 100px;
  overflow: hidden;
  perspective: 300px;
}
.grid-floor {
  position: absolute;
  bottom: 0;
  left: -50%;
  right: -50%;
  height: 200%;
  background-image:
    linear-gradient(rgba(255,255,255,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: rotateX(55deg);
  transform-origin: bottom center;
}
.grid-sun {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 80px;
  overflow: hidden;
}
.grid-sun::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, var(--yellow) 0%, var(--pink) 30%, transparent 70%);
  background-image:
    radial-gradient(circle, var(--yellow) 0%, var(--yellow) 20%, transparent 21%),
    repeating-linear-gradient(0deg, var(--pink) 0px, var(--pink) 8px, transparent 8px, transparent 16px);
  border-radius: 50%;
  opacity: 0.6;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 72px 48px 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-sparkles { font-size: 1.4rem; letter-spacing: 0.5em; margin-bottom: 16px; color: var(--yellow); }

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: var(--yellow);
  text-shadow: 2px 0 var(--cyan), -2px 0 var(--pink), 0 0 20px rgba(255,251,150,0.5);
  margin-bottom: 20px;
}
.hero h1 .glitch-word {
  color: var(--white);
  text-shadow: 2px 0 var(--cyan), -2px 0 var(--pink);
}

.hero-sub {
  max-width: 56ch;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}

.hero-cta {
  display: inline-block;
  padding: 18px 52px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  color: #fff !important;
  font-family: var(--display);
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.3);
  text-decoration: none !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  box-shadow: 0 0 30px rgba(255,113,206,0.5), 0 4px 20px rgba(0,0,0,0.3);
  letter-spacing: 0.05em;
  transition: box-shadow 0.2s, transform 0.2s;
}
.hero-cta:hover {
  box-shadow: 0 0 50px rgba(255,113,206,0.8), 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.badge {
  padding: 8px 18px;
  background: rgba(21,0,120,0.5);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  font-size: 0.82rem;
  color: var(--cyan);
  font-family: var(--body);
  font-weight: 600;
  backdrop-filter: blur(4px);
}

/* ── STATS ROW ───────────────────────────────────────────── */
.stats-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(21,0,120,0.4);
  backdrop-filter: blur(8px);
}
.stat-cell {
  flex: 1;
  padding: 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  max-width: 200px;
}
.stat-cell:last-child { border-right: none; }
.stat-cell .val {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--yellow);
  line-height: 1;
  text-shadow: 0 0 10px rgba(255,251,150,0.5);
}
.stat-cell .key { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.6); margin-top: 6px; }

/* ── SECTION ─────────────────────────────────────────────── */
.section {
  position: relative;
  z-index: 1;
  padding: 64px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.section-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--cyan);
  margin-bottom: 12px;
}
.section h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 4vw, 2.5rem);
  color: var(--yellow);
  text-shadow: 1px 0 var(--cyan), -1px 0 var(--pink);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: 0.03em;
}
.section p { max-width: 68ch; color: rgba(255,255,255,0.85); margin-bottom: 14px; }
.section h3 {
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pink);
  margin-bottom: 12px;
}

/* ── NEON CARD ───────────────────────────────────────────── */
.neon-card {
  background: rgba(21,0,120,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  padding: 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(185,103,255,0.2);
  transition: box-shadow 0.25s, transform 0.25s;
}
.neon-card:hover {
  box-shadow: 0 0 40px rgba(255,113,206,0.3);
  transform: translateY(-3px);
}

/* ── CARD GRID ───────────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.feature-card {
  background: rgba(21,0,120,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 22px;
  backdrop-filter: blur(8px);
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 0 30px rgba(255,113,206,0.3);
  transform: translateY(-3px);
}
.feature-card .icon { font-size: 2rem; margin-bottom: 10px; }
.feature-card h3 { color: var(--cyan); font-size: 0.95rem; margin-bottom: 6px; }
.feature-card p { font-size: 0.82rem; color: rgba(255,255,255,0.7); max-width: none; margin: 0; }

/* ── TWO COL ─────────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 24px; }

/* ── STEP LIST ───────────────────────────────────────────── */
.step-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(21,0,120,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 14px 18px;
}
.step-circle {
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  color: #fff;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255,113,206,0.4);
  flex-shrink: 0;
}
.step-text strong { display: block; color: var(--white); font-weight: 700; font-size: 0.92rem; margin-bottom: 3px; }
.step-text span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ── BONUS TABLE ─────────────────────────────────────────── */
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.bonus-table th {
  padding: 10px 14px;
  background: rgba(21,0,120,0.7);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
  text-align: left;
  border: 1px solid rgba(255,255,255,0.1);
}
.bonus-table td {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.87rem;
  color: rgba(255,255,255,0.85);
  background: rgba(21,0,120,0.3);
}
.bonus-table tr:hover td { background: rgba(255,113,206,0.05); }
.bonus-hl { color: var(--yellow); font-weight: 700; }

/* ── PAYMENT TAGS ────────────────────────────────────────── */
.pay-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.pay-tag {
  padding: 8px 16px;
  background: rgba(21,0,120,0.5);
  border: 1px solid rgba(185,103,255,0.4);
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 600;
  transition: border-color 0.2s;
}
.pay-tag:hover { border-color: var(--pink); }

/* ── VERDICT ─────────────────────────────────────────────── */
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.verdict-card { background: rgba(21,0,120,0.5); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; padding: 20px; }
.verdict-card h3 { color: var(--cyan); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 14px; }
.verdict-card.cons h3 { color: rgba(255,255,255,0.5); }
.verdict-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.verdict-list li { font-size: 0.84rem; color: rgba(255,255,255,0.8); padding-left: 18px; position: relative; }
.verdict-list li::before { position: absolute; left: 0; font-weight: 700; }
.verdict-list.pros li::before { content: "✦"; color: var(--yellow); }
.verdict-list.cons li::before { content: "✗"; color: rgba(255,255,255,0.4); }

/* ── RATING ──────────────────────────────────────────────── */
.rating-block {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding: 20px 28px;
  background: rgba(21,0,120,0.6);
  border: 1px solid rgba(255,251,150,0.3);
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(255,251,150,0.1);
}
.rating-big { font-family: var(--display); font-size: 3rem; color: var(--yellow); line-height: 1; text-shadow: 0 0 10px rgba(255,251,150,0.5); }
.rating-info .stars { font-size: 1.2rem; color: var(--yellow); }
.rating-info .label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ── CTA ─────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 48px;
  background: rgba(21,0,120,0.5);
  backdrop-filter: blur(12px);
}
.cta-section h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 5vw, 3.5rem);
  color: var(--yellow);
  text-shadow: 2px 0 var(--cyan), -2px 0 var(--pink);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.cta-section p { max-width: 54ch; margin: 0 auto 36px; color: rgba(255,255,255,0.8); }
.cta-btn {
  display: inline-block;
  padding: 20px 60px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  color: #fff !important;
  font-family: var(--display);
  font-size: 1.1rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.3);
  text-decoration: none !important;
  box-shadow: 0 0 40px rgba(255,113,206,0.5);
  letter-spacing: 0.05em;
  transition: box-shadow 0.2s, transform 0.2s;
}
.cta-btn:hover {
  box-shadow: 0 0 60px rgba(255,113,206,0.8);
  transform: translateY(-3px) scale(1.02);
}
.cta-note { margin-top: 20px; font-size: 0.72rem; color: rgba(255,255,255,0.4); }

/* ── DIVIDERS ────────────────────────────────────────────── */
.star-divider {
  text-align: center;
  padding: 16px;
  color: rgba(255,255,255,0.2);
  font-size: 1rem;
  letter-spacing: 0.5em;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  background: rgba(21,0,120,0.7);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}
.footer-logo { font-family: var(--display); font-size: 0.9rem; color: var(--yellow); text-shadow: 0 0 8px rgba(255,251,150,0.4); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .verdict-grid { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; }
  .stat-cell { min-width: 50%; }
  .jp-left, .jp-right { display: none; }
  .section { padding: 44px 24px; }
  .site-header { padding: 12px 24px; }
  .hero { padding: 56px 24px 44px; }
  .cta-section { padding: 60px 24px; }
}
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }
}
