/* ============================================================
   つづける — 習慣の果実  Official Website Stylesheet
   世界観: 不思議の国のアリス × 日本の魔法の庭
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@300;400;600;700&family=Shippori+Mincho:wght@400;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-deepest:   #030908;
  --bg-dark:      #070f0a;
  --bg-mid:       #0d1a10;
  --bg-card:      #111c14;
  --forest-green: #1a3320;
  --emerald:      #1db954;
  --emerald-dim:  #166534;
  --gold:         #d4a017;
  --gold-light:   #fbbf24;
  --gold-pale:    #fef3c7;
  --purple:       #7c3aed;
  --purple-light: #a78bfa;
  --purple-pale:  #ede9fe;
  --pink:         #ec4899;
  --pink-light:   #f9a8d4;
  --teal:         #0d9488;
  --text-primary: #f0fdf4;
  --text-dim:     #a7c4a0;
  --text-muted:   #4b7a52;
  --border-magic: rgba(212, 160, 23, 0.25);
  --glow-green:   0 0 40px rgba(29, 185, 84, 0.3);
  --glow-gold:    0 0 40px rgba(212, 160, 23, 0.4);
  --glow-purple:  0 0 40px rgba(124, 58, 237, 0.4);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: var(--bg-deepest);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: default;
}

::selection {
  background: rgba(212, 160, 23, 0.3);
  color: var(--gold-pale);
}

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deepest); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--emerald));
  border-radius: 3px;
}

/* ============================================================
   MAGICAL PARTICLES CANVAS
   ============================================================ */
#magic-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(3, 9, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-magic);
  padding: 12px 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--emerald-dim), var(--forest-green));
  border-radius: 10px;
  border: 1px solid var(--border-magic);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--glow-green);
}

.nav-logo-text {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.nav-logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  font-family: 'Cinzel Decorative', cursive;
}

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

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--emerald));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--emerald-dim), #0f5132);
  border: 1px solid rgba(29, 185, 84, 0.4);
  color: var(--text-primary) !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 20px rgba(29, 185, 84, 0.2);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: linear-gradient(135deg, var(--emerald), #1a7a4a) !important;
  box-shadow: 0 0 35px rgba(29, 185, 84, 0.5) !important;
  transform: translateY(-1px);
  color: #fff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dim);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  z-index: 1;
}

/* 背景グラデーション層 */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(29, 185, 84, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(124, 58, 237, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(212, 160, 23, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* 森のシルエット */
.hero-forest {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background:
    radial-gradient(ellipse 30% 80% at 5% 100%, #0a1a0a 0%, transparent 70%),
    radial-gradient(ellipse 25% 70% at 15% 100%, #0c1f0c 0%, transparent 70%),
    radial-gradient(ellipse 20% 60% at 30% 100%, #081508 0%, transparent 70%),
    radial-gradient(ellipse 35% 90% at 50% 100%, #0a1a0a 0%, transparent 80%),
    radial-gradient(ellipse 25% 70% at 70% 100%, #0c1f0c 0%, transparent 70%),
    radial-gradient(ellipse 30% 80% at 85% 100%, #081508 0%, transparent 70%),
    radial-gradient(ellipse 20% 60% at 95% 100%, #0a1a0a 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-title-main {
  display: block;
  background: linear-gradient(135deg, #f0fdf4 0%, var(--gold-light) 50%, var(--emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(212, 160, 23, 0.3));
}

.hero-title-sub {
  display: block;
  font-size: 0.42em;
  font-family: 'Cinzel Decorative', cursive;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
  margin-top: 8px;
  font-weight: 400;
}

.hero-catch {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-catch em {
  font-style: normal;
  color: var(--gold-light);
}

/* Mockup phones */
.hero-phones {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.phone-mockup {
  position: relative;
  border-radius: 44px;
  overflow: hidden;
  border: 2px solid rgba(212, 160, 23, 0.25);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 40px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(29, 185, 84, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.phone-mockup:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 60px 100px rgba(0,0,0,0.8),
    0 0 80px rgba(212, 160, 23, 0.2);
}

.phone-main {
  width: min(240px, 48vw);
  z-index: 3;
}

.phone-side {
  width: min(180px, 36vw);
  opacity: 0.7;
  filter: brightness(0.7);
}

.phone-side:first-child {
  transform: rotate(-6deg) translateY(20px);
}

.phone-side:last-child {
  transform: rotate(6deg) translateY(20px);
}

.phone-mockup img {
  width: 100%;
  display: block;
}

/* ── 下部オーブ光 ── */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.orb-1 {
  width: 500px; height: 500px;
  background: var(--emerald);
  top: -100px; left: -100px;
  animation: orbFloat1 12s ease-in-out infinite;
}

.orb-2 {
  width: 400px; height: 400px;
  background: var(--purple);
  bottom: -50px; right: -100px;
  animation: orbFloat2 15s ease-in-out infinite;
}

.orb-3 {
  width: 300px; height: 300px;
  background: var(--gold);
  top: 30%; left: 50%;
  transform: translateX(-50%);
  animation: orbFloat3 10s ease-in-out infinite;
}

/* Hero CTA */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1a6b35, var(--emerald-dim));
  border: 1px solid rgba(29, 185, 84, 0.5);
  color: var(--text-primary);
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(29, 185, 84, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--emerald), #1a7a4a);
  box-shadow: 0 0 50px rgba(29, 185, 84, 0.5), inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

.btn-primary svg { width: 22px; height: 22px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-dim);
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: fadeIn 1s ease 2s forwards;
}

.scroll-hint span {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.scroll-hint-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { position: relative; z-index: 1; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-title .accent {
  background: linear-gradient(135deg, var(--gold-light), var(--emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-body {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-dim);
  max-width: 540px;
}

/* 装飾区切り線 */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-magic), transparent);
  margin: 0;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   WORLD / STORY SECTION
   ============================================================ */
.world-section {
  padding: 120px 0 100px;
  background:
    radial-gradient(ellipse 100% 50% at 50% 0%, rgba(29, 185, 84, 0.04) 0%, transparent 60%);
}

.world-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.world-text { }

.world-quote {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.15rem;
  line-height: 2;
  color: var(--text-dim);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
}

.world-quote strong {
  color: var(--gold-light);
  font-style: normal;
}

.world-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.world-card {
  background: linear-gradient(135deg, rgba(17, 28, 20, 0.8), rgba(10, 20, 14, 0.6));
  border: 1px solid var(--border-magic);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.world-card:hover {
  border-color: rgba(212, 160, 23, 0.45);
  transform: translateX(6px);
  box-shadow: var(--glow-gold);
}

.world-card-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 160, 23, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(212, 160, 23, 0.15);
}

.world-card h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.world-card p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ============================================================
   KERO CHARACTER SECTION
   ============================================================ */
.kero-section {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.04), transparent);
}

.kero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.kero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 32px;
  font-family: 'Cinzel Decorative', cursive;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--purple-light);
}

.kero-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
}

.kero-desc {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-dim);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.kero-states {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.kero-state {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
  padding: 28px 20px;
  background: rgba(17, 28, 20, 0.6);
  border: 1px solid var(--border-magic);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: default;
}

.kero-state:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 160, 23, 0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--glow-gold);
}

.kero-state-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.kero-state h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.kero-state p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  padding: 80px 0 100px;
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid rgba(212, 160, 23, 0.1);
}

.feature-block:last-child {
  border-bottom: 1px solid rgba(212, 160, 23, 0.1);
}

.feature-block.reverse {
  direction: rtl;
}

.feature-block.reverse > * {
  direction: ltr;
}

.feature-number {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 16px;
}

.feature-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.12), rgba(29, 185, 84, 0.06));
  border: 1px solid rgba(29, 185, 84, 0.2);
  color: var(--emerald);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.feature-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.feature-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.feature-points li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Phone in feature */
.feature-phone-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.feature-phone-wrap::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.feature-phone {
  width: min(260px, 50vw);
  border-radius: 44px;
  overflow: hidden;
  border: 2px solid rgba(212, 160, 23, 0.2);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(29, 185, 84, 0.1);
  transition: all 0.4s ease;
}

.feature-phone:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 60px 100px rgba(0,0,0,0.7),
    0 0 80px rgba(212, 160, 23, 0.2);
}

/* ============================================================
   FRUITS SECTION
   ============================================================ */
.fruits-section {
  padding: 100px 0 120px;
  background:
    radial-gradient(ellipse 100% 60% at 50% 50%, rgba(212, 160, 23, 0.04) 0%, transparent 70%),
    linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.03), transparent);
}

.fruits-header {
  text-align: center;
  margin-bottom: 70px;
}

.fruits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto 60px;
}

.fruit-card {
  background: linear-gradient(135deg, rgba(17, 28, 20, 0.9), rgba(10, 15, 11, 0.7));
  border: 1px solid var(--border-magic);
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.fruit-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--fruit-color, rgba(212, 160, 23, 0.06)) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fruit-card:hover::before { opacity: 1; }

.fruit-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--fruit-border, rgba(212, 160, 23, 0.4));
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 40px var(--fruit-glow, rgba(212, 160, 23, 0.2));
}

.fruit-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
  transition: transform 0.4s ease;
}

.fruit-card:hover .fruit-emoji {
  transform: scale(1.15) rotate(-5deg);
}

.fruit-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.fruit-hint {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.fruit-number {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: 'Cinzel Decorative', cursive;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.fruits-mystery {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(212, 160, 23, 0.06));
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 24px;
  max-width: 620px;
  margin: 0 auto;
}

.fruits-mystery p {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--purple-light);
  margin-bottom: 8px;
}

.fruits-mystery small {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   BOOK SECTION
   ============================================================ */
.book-section {
  padding: 100px 0;
  border-top: 1px solid rgba(212, 160, 23, 0.08);
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.book-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.book-phone {
  width: min(260px, 48vw);
  border-radius: 44px;
  overflow: hidden;
  border: 2px solid rgba(212, 160, 23, 0.2);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(212, 160, 23, 0.15);
}

.habits-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.habit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(17, 28, 20, 0.7);
  border: 1px solid var(--border-magic);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.habit-item:hover {
  border-color: rgba(212, 160, 23, 0.4);
  transform: translateX(6px);
}

.habit-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--emerald-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--bg-deepest);
  flex-shrink: 0;
}

.habit-item h4 {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 2px;
}

.habit-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   DOWNLOAD / CTA SECTION
   ============================================================ */
.cta-section {
  padding: 120px 0 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(29, 185, 84, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 50%, rgba(212, 160, 23, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 50%, rgba(124, 58, 237, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cta-magic-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 40px;
}

.cta-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.cta-sub {
  font-size: 1rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  margin-bottom: 50px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #1c1c1e, #2c2c2e);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-primary);
  padding: 14px 30px;
  border-radius: 16px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.appstore-btn:hover {
  background: linear-gradient(135deg, #2c2c2e, #3c3c3e);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 30px rgba(255,255,255,0.05);
}

.appstore-btn svg { width: 28px; height: 28px; }

.appstore-btn-text small {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.appstore-btn-text strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cta-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.cta-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid rgba(212, 160, 23, 0.1);
  padding: 60px 24px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.footer-logo-text {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 32px;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.footer-copy a {
  color: var(--gold);
  transition: color 0.3s;
}

.footer-copy a:hover { color: var(--gold-light); }

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-page {
  min-height: 100vh;
  padding: 120px 24px 80px;
}

.privacy-inner {
  max-width: 780px;
  margin: 0 auto;
}

.privacy-header {
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border-magic);
  padding-bottom: 40px;
}

.privacy-content h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.privacy-content h2:first-child { margin-top: 0; }

.privacy-content p,
.privacy-content li {
  font-size: 0.88rem;
  line-height: 1.95;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.privacy-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.privacy-content ul li { margin-bottom: 6px; }

.privacy-content a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.privacy-content a:hover { color: var(--gold); }

.privacy-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.06em;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(60px, 40px); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-50px, -60px); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-30px); }
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  70%  { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 10px 24px; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(3, 9, 8, 0.97);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 999;
  }

  .nav-links.open a {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
  }

  .hamburger { display: flex; z-index: 1001; }

  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-phones { gap: 12px; }
  .phone-side { display: none; }

  .world-grid, .book-grid { grid-template-columns: 1fr; gap: 48px; }

  .feature-block { grid-template-columns: 1fr; gap: 40px; }
  .feature-block.reverse { direction: ltr; }

  .fruits-grid { grid-template-columns: repeat(2, 1fr); }

  .section-inner { padding: 0 20px; }
}

@media (max-width: 600px) {
  .fruits-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .kero-states { gap: 16px; }
  .kero-state { min-width: 130px; }
  .hero { padding: 100px 20px 60px; }
}
