@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Noto+Sans+JP:wght@400;700;900&family=Shippori+Mincho:wght@400;600;800&display=swap');

:root {
  /* Colors - Cosmic Grimoire Theme */
  --bg-deep-space: #070314;
  /* 漆黒に近い宇宙の底 */
  --bg-nebula: #1a0b2e;
  /* 紫がかった星雲 / カードの奥の色 */
  --bg-card-glass: rgba(26, 11, 46, 0.4);
  /* グラスモーフィズム用 */
  --accent-divine-gold: #FFDF00;
  /* 輝くゴールド */
  --accent-magic-cyan: #00F0FF;
  /* 魔力・稲妻を表すシアン */
  --text-main: #f0f0f5;
  --text-muted: #a09cb0;
  /* やや紫がかったグレー */
  --border-mystic: rgba(0, 240, 255, 0.15);
  /* 通常の境界線 */
  --error-color: #ff3366;
  /* 魔法的な赤 */

  /* Gradients */
  --grad-cyan: linear-gradient(135deg, #00F0FF 0%, #0088ff 100%);
  --grad-gold: linear-gradient(135deg, #FFF380 0%, #FFDF00 50%, #B8860B 100%);
  --grad-deep-space: linear-gradient(180deg, #1a0b2e 0%, #070314 100%);

  /* Fonts */
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-mincho: 'Shippori Mincho', serif;
  --font-cinzel: 'Cinzel', serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  /* 8px */
  --spacing-sm: 1rem;
  /* 16px */
  --spacing-md: 2rem;
  /* 32px */
  --spacing-lg: 4rem;
  /* 64px */
  --spacing-xl: 8rem;
  /* 128px */

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-jp);
  background-color: var(--bg-deep-space);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(26, 11, 46, 0.8) 0%, transparent 70%),
    radial-gradient(circle at 80% 50%, rgba(26, 11, 46, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 20% 100%, rgba(0, 240, 255, 0.05) 0%, transparent 60%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-magic-cyan);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  text-shadow: 0 0 12px var(--accent-magic-cyan);
}

.en-font {
  font-family: var(--font-cinzel);
}

.text-gold {
  color: var(--accent-divine-gold);
  text-shadow: 0 0 8px rgba(255, 223, 0, 0.4);
}

.text-cyan {
  color: var(--accent-magic-cyan);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

.text-center {
  text-align: center;
}

h1,
h2,
h3,
h4,
.headline {
  font-family: var(--font-mincho);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(0, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 255, 0);
  }
}

@keyframes subtleVibrate {
  0% {
    transform: translate(0);
  }

  25% {
    transform: translate(1px, 1px);
  }

  50% {
    transform: translate(-1px, -1px);
  }

  75% {
    transform: translate(-1px, 1px);
  }

  100% {
    transform: translate(1px, -1px);
  }
}

@keyframes float-particle {
  0% {
    transform: translateY(0) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
    transform: translateY(-10vh) scale(1.5);
  }

  90% {
    opacity: 0.8;
    transform: translateY(-90vh) scale(0.8);
  }

  100% {
    transform: translateY(-100vh) scale(0);
    opacity: 0;
  }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Particles Container */
#particle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  /* Behind everything */
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: var(--accent-magic-cyan);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle linear infinite;
  box-shadow: 0 0 8px var(--accent-magic-cyan);
}

.particle.gold {
  background: var(--accent-divine-gold);
  box-shadow: 0 0 10px var(--accent-divine-gold);
}

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

/* Layout Containers */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

section {
  padding: var(--spacing-lg) 0;
  position: relative;
  scroll-margin-top: 70px;
}

@media (min-width: 768px) {
  section {
    padding: var(--spacing-xl) 0;
  }
}

@media (max-width: 480px) {
  section {
    scroll-margin-top: 56px;
  }
}

/* UI Components */

/* CTA Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-nebula);
  color: var(--accent-divine-gold);
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  padding: 1.2rem 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--accent-divine-gold);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: 0 0 15px rgba(255, 223, 0, 0.2), inset 0 0 10px rgba(255, 223, 0, 0.1);
  transform-style: preserve-3d;
  width: 100%;
  text-shadow: 0 0 5px rgba(255, 223, 0, 0.5);
}

@media (min-width: 768px) {
  .btn-cta {
    font-size: 1.8rem;
    padding: 1.8rem 4rem;
    width: auto;
    min-width: 480px;
    box-shadow: 0 0 25px rgba(255, 223, 0, 0.3), inset 0 0 15px rgba(255, 223, 0, 0.15);
  }
}

.btn-cta.btn-small {
  font-size: 0.95rem;
  padding: 0.7rem 1.5rem;
  min-width: auto;
  box-shadow: 0 0 10px rgba(255, 223, 0, 0.15), inset 0 0 5px rgba(255, 223, 0, 0.1);
}

.btn-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 30px rgba(255, 223, 0, 0.5), inset 0 0 20px rgba(255, 223, 0, 0.2);
  background: rgba(255, 223, 0, 0.1);
  text-shadow: 0 0 15px rgba(255, 223, 0, 0.8);
}

.btn-cta.btn-artifact::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, hsla(50, 100%, 50%, 0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
  mix-blend-mode: screen;
}

.btn-cta.btn-artifact:hover::before {
  opacity: 1;
}

.btn-glow-ring {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-md);
  box-shadow: 0 0 0 0 rgba(255, 223, 0, 0.5);
  animation: magicPulse 3s infinite;
  pointer-events: none;
}

@keyframes magicPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 223, 0, 0.6);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 223, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 223, 0, 0);
  }
}

.btn-small {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
}

.micro-copy {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(7, 3, 20, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  border-bottom: 1px solid var(--border-mystic);
  transition: transform 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: var(--font-en);
  letter-spacing: -0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Header Mobile Responsive */
@media (max-width: 480px) {
  .header-inner {
    height: 56px;
    padding: 0 0.6rem;
    gap: 0.4rem;
  }

  .logo {
    font-size: 1rem;
    flex-shrink: 0;
  }

  header .btn-cta.btn-small {
    font-size: 0.75rem;
    padding: 0.45rem 0.6rem;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 55%;
  }

  .hero {
    padding-top: 56px;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  background: linear-gradient(to top, var(--bg-deep-space), transparent);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 223, 0, 0.1) 0%, rgba(20, 20, 30, 0.8) 100%);
  border: 1px solid var(--accent-divine-gold);
  color: var(--accent-divine-gold);
  padding: 0.6rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
  box-shadow: 0 0 20px rgba(255, 223, 0, 0.2), inset 0 0 10px rgba(255, 223, 0, 0.1);
  text-shadow: 0 0 8px rgba(255, 223, 0, 0.6);
}

.weight-thin {
  font-weight: 400;
}

.weight-black {
  font-weight: 800;
  text-shadow: 0 0 20px hsla(172, 100%, 50%, 0.5);
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: #fff;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  animation: fadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3.5vw, 1.4rem);
  color: var(--text-muted);
  font-family: var(--font-mincho);
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  line-height: 1.9;
  letter-spacing: 0.05em;
  animation: fadeUp 1s ease 0.3s forwards;
  opacity: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-cta-wrapper {
  animation: fadeUp 1s ease 0.5s forwards;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: var(--spacing-sm);
  opacity: 0.7;
}

.scroll-arrow {
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--accent-magic-cyan);
  border-bottom: 2px solid var(--accent-magic-cyan);
  transform: rotate(45deg);
  animation: slideArrows 2s infinite;
}

.scroll-arrow:nth-child(2) {
  animation-delay: -0.2s;
}

.scroll-arrow:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes slideArrows {
  0% {
    transform: rotate(45deg) translate(-5px, -5px);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: rotate(45deg) translate(5px, 5px);
    opacity: 0;
  }
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.section-title.left {
  text-align: left;
}

/* Pain Section - Cinematic Fade */
.pain-section {
  position: relative;
  z-index: 10;
  padding: var(--spacing-lg) 0;
}

.pain-grid {
  display: grid;
  gap: var(--spacing-md);
  max-width: 800px;
  margin: 0 auto;
}

.pain-card {
  background: linear-gradient(90deg, rgba(26, 11, 46, 0.6) 0%, rgba(7, 3, 20, 0.2) 100%);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: 0;
  border-left: 2px solid var(--error-color);
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.pain-card:hover {
  transform: translateX(10px);
  box-shadow: -5px 0 20px rgba(255, 51, 102, 0.2);
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -2px;
  bottom: 0;
  width: 2px;
  background: var(--error-color);
  box-shadow: 0 0 15px var(--error-color);
}

.pain-voice {
  display: block;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.pain-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
}

/* Manga Section */
.manga-section {
  padding-bottom: 0;
}

.manga-caption {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.manga-wrapper {
  background: transparent;
  border: 1px solid var(--border-mystic);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.1);
  margin: 0 auto;
  max-width: 800px;
}

.manga-wrapper img {
  width: 100%;
  display: block;
}

/* Story Section - Timeline */
.story-section {
  position: relative;
  z-index: 10;
  padding: var(--spacing-xl) 0;
}

/* Background color shift layer */
.story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 223, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-lg) 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--border-mystic), var(--accent-divine-gold), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 20px;
  width: 16px;
  height: 16px;
  background: var(--bg-deep-space);
  border: 2px solid var(--accent-magic-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-magic-cyan);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -8px;
}

.timeline-content {
  background: rgba(26, 11, 46, 0.3);
  padding: var(--spacing-md);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(4px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.timeline-big-number {
  font-size: 4rem;
  color: #fff;
  opacity: 0.1;
  position: absolute;
  top: -30px;
  line-height: 1;
  z-index: -1;
}

.timeline-item:nth-child(odd) .timeline-big-number {
  right: var(--spacing-md);
}

.timeline-item:nth-child(even) .timeline-big-number {
  left: var(--spacing-md);
}

.timeline-content p {
  margin: 0;
  color: var(--text-main);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .timeline-line {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    text-align: left !important;
    left: 0 !important;
  }

  .timeline-dot {
    left: 12px !important;
    right: auto !important;
  }

  .timeline-item:nth-child(odd) .timeline-big-number,
  .timeline-item:nth-child(even) .timeline-big-number {
    left: 50px;
    right: auto;
  }
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  gap: var(--spacing-md);
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 255, 255, 0.3);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-badge {
  font-family: var(--font-en);
  color: var(--accent-cyan);
  font-weight: 900;
  font-size: 0.9rem;
  margin-bottom: var(--spacing-xs);
  letter-spacing: 0.1em;
}

.benefit-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: #fff;
}

.benefit-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

/* Social Proof (Reviews) */
.proof-section {
  position: relative;
  z-index: 10;
  padding: var(--spacing-xl) 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1100px;
  }
}

.review-item {
  background: var(--bg-card-glass);
  border: 1px solid var(--border-mystic);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  cursor: zoom-in;
}

.review-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 223, 0, 0.3);
  box-shadow: 0 12px 30px rgba(255, 223, 0, 0.08);
}

.review-item img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

/* Lightbox Overlay */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: zoom-out;
  padding: 2rem;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 60px rgba(0, 240, 255, 0.15);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10000;
  line-height: 1;
}

.lightbox-close:hover {
  opacity: 1;
  transform: scale(1.2);
}

/* Wide review cards (summary images) - span full width */
.review-item.review-wide {
  grid-column: 1 / -1;
}

/* Ranking Badge Section */
.ranking-section {
  position: relative;
  z-index: 10;
  padding: var(--spacing-lg) 0;
}

.ranking-badge {
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255, 223, 0, 0.4);
  box-shadow: 0 0 40px rgba(255, 223, 0, 0.15), inset 0 0 20px rgba(255, 223, 0, 0.05);
}

.ranking-badge img {
  width: 100%;
  height: auto;
  display: block;
}

/* Stats Box - Marble/Metal Plate */
.stats-urgency-section {
  position: relative;
  z-index: 10;
  padding: var(--spacing-xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--spacing-md);
}

.stat-item {
  background: linear-gradient(135deg, rgba(30, 20, 50, 0.8) 0%, rgba(10, 5, 20, 0.9) 100%);
  border: 1px solid rgba(255, 223, 0, 0.2);
  padding: var(--spacing-lg) var(--spacing-sm);
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 0 5px 15px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: visible;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 223, 0, 0.5), transparent);
}

.stat-num {
  font-family: var(--font-cinzel), var(--font-en);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-divine-gold);
  line-height: 1;
  margin-bottom: var(--spacing-xs);
  text-shadow: 0 0 20px rgba(255, 223, 0, 0.5), 0 0 40px rgba(255, 223, 0, 0.2);
  white-space: nowrap;
}

.stat-label {
  color: #fff;
  font-family: var(--font-mincho);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .stat-num {
    font-size: 3.5rem;
  }
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .stat-num {
    font-size: 2.5rem;
  }
}

/* Urgency Banner */
.urgency-banner {
  background: linear-gradient(135deg, rgba(255, 223, 0, 0.1), rgba(20, 10, 30, 0.8));
  border: 1px solid var(--accent-divine-gold);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
  margin-top: var(--spacing-xl);
  box-shadow: 0 0 30px rgba(255, 223, 0, 0.1), inset 0 0 20px rgba(255, 223, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.urgency-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(circle at center, rgba(255, 223, 0, 0.2) 0%, transparent 60%);
  animation: magicPulse 4s infinite;
  pointer-events: none;
}

.urgency-title {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-mincho);
}

.urgency-price {
  font-family: var(--font-cinzel);
  font-size: 1.8rem;
  margin-bottom: var(--spacing-md);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.price-strike {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 1.4rem;
}

.price-current {
  color: var(--accent-divine-gold);
  font-size: 3rem;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(255, 223, 0, 0.5);
}

.urgency-deadline {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: var(--spacing-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Profile Section */
.profile-section {
  position: relative;
  z-index: 10;
  padding: var(--spacing-xl) 0;
}

.profile-card {
  background: var(--bg-card-glass);
  border: 1px solid var(--border-mystic);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-lg) var(--spacing-lg) 0;
  text-align: center;
}

.profile-avatar {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(255, 223, 0, 0.3);
  box-shadow: 0 0 20px rgba(255, 223, 0, 0.1);
}

.profile-avatar img {
  width: 100%;
  height: auto;
  display: block;
}

.profile-name {
  font-family: var(--font-mincho);
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.3rem;
}

.profile-tagline {
  color: var(--accent-magic-cyan);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}

.profile-body {
  padding: var(--spacing-lg);
}

.profile-body p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: var(--spacing-sm);
}

.profile-body p:last-child {
  margin-bottom: 0;
}

.profile-body strong {
  color: #fff;
  font-weight: 700;
}

.profile-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-mystic);
}

.profile-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-xs);
  text-align: center;
}

.profile-stat:not(:last-child) {
  border-right: 1px solid var(--border-mystic);
}

.profile-stat-num {
  font-family: var(--font-cinzel), var(--font-en);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent-divine-gold);
  text-shadow: 0 0 10px rgba(255, 223, 0, 0.4);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.profile-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .profile-avatar {
    max-width: 500px;
  }

  .profile-stat-num {
    font-size: 1.6rem;
  }
}

/* Mobile: tap to enlarge profile image */
@media (max-width: 767px) {
  .profile-avatar-touchable {
    cursor: zoom-in;
  }
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: var(--spacing-xl) 0;
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.checklist {
  list-style: none;
  max-width: 400px;
  margin: var(--spacing-md) auto;
  text-align: left;
}

.checklist li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 1.1rem;
}

.checklist li::before {
  content: '◆';
  color: var(--accent-magic-cyan);
  text-shadow: 0 0 8px var(--accent-magic-cyan);
}

/* Inline Signup Form */
.inline-form-wrapper {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.inline-form-fields {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.inline-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.inline-form-label {
  font-family: var(--font-mincho);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.inline-form-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(26, 11, 46, 0.6);
  border: 1px solid var(--border-mystic);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-jp);
  font-size: 1rem;
  transition: var(--transition-fast);
  outline: none;
}

.inline-form-input::placeholder {
  color: rgba(160, 156, 176, 0.5);
}

.inline-form-input:focus {
  border-color: var(--accent-magic-cyan);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
  background: rgba(26, 11, 46, 0.8);
}

.inline-form-submit {
  width: 100%;
  border: none;
}

/* FAQ Section - Parchment/Hologram style */
.faq-section {
  padding: var(--spacing-xl) 0;
  position: relative;
  z-index: 10;
}

.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: rgba(26, 11, 46, 0.4);
  border: 1px solid var(--border-mystic);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.5rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mincho);
  letter-spacing: 0.05em;
}

.faq-icon {
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: var(--accent-magic-cyan);
  font-size: 0.8rem;
  text-shadow: 0 0 5px var(--accent-magic-cyan);
}

.faq-item.active {
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
  background: rgba(26, 11, 46, 0.6);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-divine-gold);
  text-shadow: 0 0 5px var(--accent-divine-gold);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

.faq-a-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
  position: relative;
}

.faq-a-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  width: 30px;
  height: 1px;
  background: var(--accent-magic-cyan);
  opacity: 0.3;
}

/* FAQ Micro CTA */
.faq-micro-cta {
  margin-top: var(--spacing-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: var(--spacing-lg) var(--spacing-md);
  border-top: 1px solid var(--border-mystic);
}

.faq-micro-cta-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  font-family: var(--font-mincho);
}

.faq-micro-cta-text strong {
  color: #fff;
  font-weight: 800;
}


/* Footer - Fade to Dark */
footer {
  text-align: center;
  padding: var(--spacing-xl) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
  background: linear-gradient(to bottom, transparent, #000);
  position: relative;
  z-index: 10;
}

.footer-logo {
  font-family: var(--font-cinzel);
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.2em;
}

.footer-links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-links a {
  opacity: 0.6;
}

.footer-links a:hover {
  opacity: 1;
}

/* -------------------------------------
   About Section (NEW)
-------------------------------------- */
.about-section {
  position: relative;
  z-index: 10;
  padding: var(--spacing-xl) 0;
}

.about-content {
  background: var(--bg-card-glass);
  border: 1px solid var(--border-mystic);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.05);
  margin-bottom: var(--spacing-lg);
}

.about-content .lead-text {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: var(--spacing-md);
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
}

.about-highlight-box {
  margin-top: var(--spacing-lg);
  padding: var(--spacing-md);
  background: rgba(255, 223, 0, 0.05);
  border: 1px solid rgba(255, 223, 0, 0.2);
  border-radius: var(--radius-md);
  text-align: left;
}

.about-highlight-box h3 {
  color: var(--accent-divine-gold);
  margin-bottom: var(--spacing-sm);
  font-size: 1.2rem;
  text-align: center;
}

/* -------------------------------------
   Vertical Benefits List
-------------------------------------- */
.benefits-vertical-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  max-width: 900px;
  margin: 0 auto;
}

.benefit-vertical-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card-glass);
  border: 1px solid var(--border-mystic);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition-normal);
}

.benefit-vertical-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-magic-cyan);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.15);
}

.benefit-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  position: relative;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.benefit-vertical-card:hover .benefit-image img {
  transform: scale(1.03);
}

.benefit-vertical-card .benefit-content {
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.benefit-vertical-card .benefit-badge {
  color: var(--accent-magic-cyan);
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
}

.benefit-vertical-card .benefit-title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--spacing-sm);
  line-height: 1.4;
}

.benefit-vertical-card .benefit-desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
}

@media (min-width: 768px) {
  .benefits-vertical-list {
    max-width: 700px;
  }

  .benefit-vertical-card .benefit-content {
    padding: var(--spacing-md) var(--spacing-lg) var(--spacing-lg);
  }
}

/* Bridge Copy (Pain → About) */
.bridge-copy {
  text-align: center;
  padding: var(--spacing-lg) 0 0;
  position: relative;
  z-index: 10;
}

.bridge-text {
  font-family: var(--font-mincho);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
}

/* Reviews Show More */
.reviews-hidden {
  display: none;
}

.reviews-hidden.show {
  display: grid;
}

.btn-show-more {
  background: transparent;
  border: 1px solid var(--border-mystic);
  color: var(--text-muted);
  font-family: var(--font-mincho);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  letter-spacing: 0.05em;
}

.btn-show-more:hover {
  border-color: var(--accent-magic-cyan);
  color: var(--accent-magic-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

/* Ranking Title */
.ranking-title {
  font-family: var(--font-en);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--accent-divine-gold);
  text-shadow: 0 0 15px rgba(255, 223, 0, 0.4);
  margin-bottom: var(--spacing-md);
}

.ranking-title .ranking-highlight {
  display: inline-block;
  font-size: 1.1em;
  background: linear-gradient(135deg, rgba(255, 223, 0, 0.15) 0%, transparent 100%);
  border: 1px solid rgba(255, 223, 0, 0.3);
  padding: 0.2em 0.6em;
  border-radius: var(--radius-sm);
  margin-left: 0.3em;
}