/* ==========================================================================
   Nox Landing Page - Pure Worldview & Exact App Experience Stylesheet
   Design Persona: Pollux (UI/UX) - Synchronized with Nox App (ja.ts & App UI)
   ========================================================================== */

:root {
  --bg-dark: #0b0f19;
  --bg-shadow-mode: #080b11;
  --bg-light-mode-start: #1f1a2e;
  --bg-light-mode-end: #2e1f3c;
  --accent-purple: #c084fc;
  --accent-purple-glow: rgba(192, 132, 252, 0.4);
  --accent-blue: #60a5fa;
  --accent-pink: #f472b6;
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;
  --border-glass: rgba(255, 255, 255, 0.08);
  --bg-glass: rgba(15, 23, 42, 0.7);
  --font-serif: 'Shippori Mincho', 'Noto Serif JP', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-light);
}

body {
  overflow-x: hidden;
  line-height: 1.8;
  background: radial-gradient(circle at 50% 0%, #17152d 0%, #0b0f19 75%);
  min-height: 100vh;
}

/* Background Canvas for Starry Sky */
#star-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* Container */
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(11, 15, 25, 0.75);
  border-bottom: 1px solid var(--border-glass);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-purple) 0%, rgba(192, 132, 252, 0.15) 75%);
  box-shadow: 0 0 16px var(--accent-purple-glow);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--text-light);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--text-light);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.25), rgba(96, 165, 250, 0.2));
  border: 1px solid var(--accent-purple);
  color: var(--text-light);
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(192, 132, 252, 0.2);
}

.btn-primary:hover {
  background: var(--accent-purple);
  color: #0b0f19;
  box-shadow: 0 0 30px var(--accent-purple-glow);
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger-bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
  padding: 150px 0 60px;
  text-align: center;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 6px;
  color: var(--accent-purple);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.8vw, 46px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 4px;
  color: var(--text-light);
  margin-bottom: 40px;
  text-shadow: 0 0 40px rgba(192, 132, 252, 0.3);
}

/* 1枚目カード（最上部メインカード） */
.solitude-card {
  max-width: 840px;
  margin: 0 auto 48px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 48px 36px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.solitude-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3.2vw, 28px);
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.solitude-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 2;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  padding: 14px 32px;
  border-radius: 16px;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.store-badge:hover {
  border-color: rgba(192, 132, 252, 0.4);
  background: rgba(192, 132, 252, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(192, 132, 252, 0.2);
}

.store-badge svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.badge-text { text-align: left; }
.badge-sub { font-size: 10px; color: var(--text-subtle); display: block; letter-spacing: 1px; }
.badge-main { font-size: 16px; font-weight: 600; }

/* ==========================================================================
   「吐き出す体験」と「カレンダー」を1つのセクションで横並びに配置
   ========================================================================== */
.experience-dual-section {
  padding: 80px 0 100px;
}

.section-header-center {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--accent-purple);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 400;
  letter-spacing: 2px;
}

/* 2カラム横並びグリッド */
.experience-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 900px) {
  .experience-dual-grid {
    grid-template-columns: 1fr;
  }
}

/* 左カラム: 吐き出す体験カード */
.speech-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 28px;
  padding: 40px 32px;
  backdrop-filter: blur(16px);
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-subtitle {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  color: var(--text-light);
}

.stardust-input-container {
  width: 100%;
  position: relative;
}

.stardust-textarea {
  width: 100%;
  height: 160px;
  background: rgba(8, 11, 17, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 20px;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.8;
  resize: none;
  outline: none;
  transition: border-color 0.3s ease;
}

.stardust-textarea:focus {
  border-color: var(--accent-purple);
  box-shadow: 0 0 20px rgba(192, 132, 252, 0.15);
}

.galaxy-feedback-message {
  height: 24px;
  margin-top: 16px;
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--accent-purple);
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.galaxy-feedback-message.active {
  opacity: 1;
}

.demo-action {
  margin-top: 16px;
}

.btn-stardust {
  background: linear-gradient(135deg, #c084fc, #818cf8);
  color: #0b0f19;
  border: none;
  padding: 12px 40px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 1px;
  box-shadow: 0 0 25px var(--accent-purple-glow);
  transition: all 0.3s ease;
}

.btn-stardust:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px var(--accent-purple-glow);
}

/* 右カラム: アプリ実画面デモ（カレンダー & 重なる2つのオーラ天体） */
.app-mock-container {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  background: #05070c;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 44px;
  padding: 28px 18px 20px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.9), 0 0 40px rgba(192, 132, 252, 0.12);
  position: relative;
  overflow: hidden;
}

.calendar-card {
  background: transparent;
  padding: 0;
  margin-bottom: 16px;
}

.calendar-header-title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 18px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 11px;
  color: var(--text-subtle);
  margin-bottom: 12px;
}

.calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px 4px;
  text-align: center;
}

.day-cell {
  font-size: 12px;
  color: var(--text-muted);
  height: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.day-cell.active-day {
  color: var(--text-light);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 32px;
  margin: 0 auto;
}

.day-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-top: 2px;
}

/* 12色の感情カラー */
.dot-worry { background: #8DA2BB; box-shadow: 0 0 6px #8DA2BB; }
.dot-perfect { background: #E2E8F0; box-shadow: 0 0 6px #E2E8F0; }
.dot-denial { background: #567099; box-shadow: 0 0 6px #567099; }
.dot-regret { background: #A5B4FC; box-shadow: 0 0 6px #A5B4FC; }
.dot-comparison { background: #A7F3D0; box-shadow: 0 0 6px #A7F3D0; }
.dot-impatient { background: #F87171; box-shadow: 0 0 6px #F87171; }

.dot-calm { background: #D9F99D; box-shadow: 0 0 6px #D9F99D; }
.dot-optimism { background: #FDBA74; box-shadow: 0 0 6px #FDBA74; }
.dot-acceptance { background: #F472B6; box-shadow: 0 0 6px #F472B6; }
.dot-affirmation { background: #FDE047; box-shadow: 0 0 6px #FDE047; }
.dot-improvement { background: #6EE7B7; box-shadow: 0 0 6px #6EE7B7; }
.dot-satisfaction { background: #93C5FD; box-shadow: 0 0 6px #93C5FD; }

/* 下部天体エリア */
.galaxy-viewport {
  width: 100%;
  height: 250px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.aura-center-group {
  position: absolute;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.aura-circle-1 {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.45) 0%, rgba(30, 27, 75, 0) 75%);
  filter: blur(10px);
  left: 6px;
}

.aura-circle-2 {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.45) 0%, rgba(46, 16, 101, 0) 75%);
  filter: blur(10px);
  right: 6px;
}

#galaxy-dots-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.mock-tab-bar {
  display: flex;
  justify-content: space-around;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-icon {
  font-size: 16px;
  opacity: 0.3;
}

.tab-icon.active {
  opacity: 1;
  filter: drop-shadow(0 0 6px var(--accent-purple));
}

/* ==========================================================================
   プレミアム機能の説明セクション (実アプリ PremiumOffer.tsx と100%一致)
   ========================================================================== */
.premium-section {
  padding: 80px 0 100px;
  position: relative;
}

.premium-container-box {
  background: linear-gradient(135deg, rgba(31, 26, 46, 0.8), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(192, 132, 252, 0.25);
  border-radius: 32px;
  padding: 60px 48px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(192, 132, 252, 0.15);
  text-align: center;
}

.premium-badge-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.2), rgba(96, 165, 250, 0.2));
  border: 1px solid var(--accent-purple);
  color: var(--accent-purple);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.premium-desc-lead {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.9;
}

/* 実アプリ同様の2特典カードグリッド */
.premium-card-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 840px;
  margin: 0 auto 44px;
}

@media (max-width: 768px) {
  .premium-card-grid-2 {
    grid-template-columns: 1fr;
  }
}

.premium-feature-card {
  background: rgba(8, 11, 17, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: left;
  transition: all 0.3s ease;
}

.premium-feature-card:hover {
  border-color: rgba(192, 132, 252, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(192, 132, 252, 0.15);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(192, 132, 252, 0.15);
  border: 1px solid rgba(192, 132, 252, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-card-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.feature-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.8;
}

.premium-price-box {
  border-top: 1px solid var(--border-glass);
  padding-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.price-tag-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1px;
}

.price-sub-notice {
  font-size: 12px;
  color: var(--text-subtle);
}

/* 最後に Apple Store への誘導セクション (Final CTA) */
.final-cta-section {
  padding: 80px 0 120px;
  text-align: center;
}

.final-cta-card {
  background: radial-gradient(circle at 50% 50%, rgba(31, 26, 46, 0.95) 0%, rgba(11, 15, 25, 0.95) 100%);
  border: 1px solid var(--border-glass);
  border-radius: 32px;
  padding: 64px 36px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.cta-text {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.9;
}

/* Legal Documents Layout */
.legal-page { padding: 140px 0 100px; }
.legal-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 56px;
  backdrop-filter: blur(16px);
}
.legal-title { font-family: var(--font-serif); font-size: 32px; margin-bottom: 12px; letter-spacing: 2px; }
.legal-date { font-size: 12px; color: var(--text-subtle); margin-bottom: 40px; }
.legal-body section { margin-bottom: 36px; }
.legal-body h2 { font-family: var(--font-serif); font-size: 20px; color: var(--accent-purple); margin-bottom: 16px; letter-spacing: 1px; }
.legal-body p, .legal-body li { font-size: 14px; color: var(--text-muted); line-height: 1.9; margin-bottom: 12px; }
.legal-body ul { padding-left: 20px; }

/* Footer */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border-glass);
  background: rgba(8, 11, 17, 0.95);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-copy { font-size: 13px; color: var(--text-subtle); }
.footer-links { display: flex; gap: 24px; }
.footer-link { color: var(--text-muted); font-size: 13px; text-decoration: none; transition: color 0.3s ease; }
.footer-link:hover { color: var(--text-light); }

.disclaimer-box {
  border-top: 1px dashed var(--border-glass);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: var(--text-subtle);
  line-height: 1.7;
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Media Queries
   ========================================================================== */
@media (max-width: 768px) {
  /* Navigation Bar Mobile Layout */
  .navbar {
    padding: 14px 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 64px);
    background: rgba(11, 15, 25, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 17px;
    letter-spacing: 1.5px;
    padding: 8px 16px;
  }

  .btn-primary {
    font-size: 16px;
    padding: 12px 32px;
    margin-top: 12px;
  }

  /* Global Container Padding */
  .container {
    padding: 0 18px;
  }

  /* Hero Section */
  .hero {
    padding: 110px 0 40px;
  }

  .hero-subtitle {
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: clamp(22px, 6vw, 32px);
    margin-bottom: 28px;
    line-height: 1.55;
    letter-spacing: 2px;
  }

  .solitude-card {
    padding: 28px 20px;
    border-radius: 20px;
    margin-bottom: 36px;
  }

  .solitude-title {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .solitude-text {
    font-size: 13.5px;
    line-height: 1.85;
  }

  .hero-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
  }

  .store-badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 12px 24px;
  }

  /* Experience & Record Section */
  .experience-dual-section {
    padding: 50px 0 60px;
  }

  .section-header-center {
    margin-bottom: 36px;
  }

  .speech-card {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .card-subtitle {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .stardust-textarea {
    height: 140px;
    padding: 16px;
    font-size: 13.5px;
  }

  .app-mock-container {
    max-width: 100%;
    padding: 22px 14px 16px;
    border-radius: 32px;
  }

  .calendar-header-title {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .calendar-days-grid {
    gap: 6px 2px;
  }

  .day-cell {
    font-size: 11px;
    height: 28px;
  }

  .day-cell.active-day {
    width: 28px;
  }

  /* Premium Section */
  .premium-section {
    padding: 50px 0 60px;
  }

  .premium-container-box {
    padding: 32px 20px;
    border-radius: 24px;
  }

  .premium-badge-tag {
    font-size: 11px;
    padding: 4px 14px;
    margin-bottom: 14px;
  }

  .premium-desc-lead {
    font-size: 13.5px;
    margin-bottom: 28px;
    line-height: 1.8;
  }

  .premium-card-grid-2 {
    gap: 16px;
    margin-bottom: 28px;
  }

  .premium-feature-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .feature-icon-box {
    width: 42px;
    height: 42px;
    font-size: 18px;
    margin-bottom: 14px;
    border-radius: 12px;
  }

  .feature-card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .feature-card-desc {
    font-size: 13px;
    line-height: 1.75;
  }

  .premium-price-box {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding-top: 20px;
  }

  .price-tag-text {
    font-size: 18px;
  }

  .price-sub-notice {
    font-size: 11px;
  }

  /* Final CTA Section */
  .final-cta-section {
    padding: 50px 0 80px;
  }

  .final-cta-card {
    padding: 36px 20px;
    border-radius: 24px;
  }

  .cta-title {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .cta-text {
    font-size: 13.5px;
    margin-bottom: 24px;
    line-height: 1.8;
  }

  /* Legal Pages (terms.html / privacy.html) */
  .legal-page {
    padding: 90px 0 60px;
  }

  .legal-card {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .legal-title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .legal-date {
    margin-bottom: 24px;
  }

  .legal-body section {
    margin-bottom: 24px;
  }

  .legal-body h2 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .legal-body p, .legal-body li {
    font-size: 13px;
    line-height: 1.8;
  }

  /* Footer */
  .footer {
    padding: 40px 0 30px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 22px;
    letter-spacing: 1px;
  }

  .btn-stardust {
    width: 100%;
    padding: 12px 20px;
  }
}

