:root {
  --orange: #FF6B35;
  --orange-dark: #E55A2B;
  --cream: #FFF8F0;
  --charcoal: #2D2D2D;
  --bg: #fafafa;
  --bg-elevated: #f0f0f5;
  --bg-card: #ffffff;
  --bg-card-hover: #f8f8fa;
  --border: #e8e8f0;
  --border-light: #d8d8e5;
  --text: #1a1a2e;
  --text-secondary: #555566;
  --text-muted: #888899;
  --periwinkle: #7a8fc4;
  --violet: #9b8ec4;
  --rose: #c49ba8;
  --mint: #3aab9f;
  --amber: #e6c200;
  --coral: #e05a5a;
  --pink: #e05a9e;
  --success: #3d9e40;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 24px); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  transition: all 0.25s ease; border: none; cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,0.35); }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border-light);
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-full { width: 100%; }

/* Navigation */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,250,250,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
}
.nav-logo-icon { width: 32px; height: 32px; }
.nav-logo-text { font-size: 1.25rem; font-weight: 700; }
.nav-mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 5px;
}
.nav-mobile-bar { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }
.nav-links {
  display: flex; align-items: center; gap: 8px; list-style: none;
}
.nav-links a {
  color: var(--text-secondary); text-decoration: none; font-weight: 500;
  font-size: 0.9rem; padding: 8px 14px; border-radius: var(--radius);
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-card); }
.nav-links a.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; padding: 8px 18px;
}
.nav-links a.nav-cta:hover { box-shadow: 0 4px 16px rgba(255,107,53,0.3); }

/* Hero */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh; display: flex; align-items: center;
  justify-content: center; overflow: hidden; padding-top: 64px;
}
.hero-scene {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.08;
}
.hero-glow--orange {
  width: 500px; height: 500px; background: var(--orange);
  top: 10%; left: 60%; animation: glow-pulse 8s ease-in-out infinite;
}
.hero-glow--violet {
  width: 400px; height: 400px; background: var(--violet);
  bottom: 20%; left: 10%; animation: glow-pulse 10s ease-in-out infinite 2s;
}
@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.06; }
  50% { transform: scale(1.2); opacity: 0.1; }
}

/* Hero reminders floating */
.hero-reminder {
  position: absolute; z-index: 2;
  transition: transform 0.1s linear;
}
.hero-reminder--calendar { top: 18%; left: 8%; }
.hero-reminder--water { top: 55%; right: 12%; }
.hero-reminder--stretch { top: 72%; left: 15%; }
.hero-reminder-inner {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 14px 18px;
  box-shadow: var(--shadow); min-width: 160px;
  backdrop-filter: blur(8px);
  animation: float-gentle 6s ease-in-out infinite;
}
.hero-reminder--calendar .hero-reminder-inner { animation-delay: 0s; }
.hero-reminder--water .hero-reminder-inner { animation-delay: -2s; }
.hero-reminder--stretch .hero-reminder-inner { animation-delay: -4s; }
@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-reminder-header {
  display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
}
.hero-reminder-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--mint);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-reminder-time { font-size: 0.75rem; color: var(--text-muted); }
.hero-reminder-icon { font-size: 0.9rem; }
.hero-reminder-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.hero-reminder-meta { font-size: 0.75rem; color: var(--text-muted); }

/* Hero actors */
.hero-actor { position: absolute; z-index: 3; }
.hero-actor-svg { width: 100%; height: auto; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }
.hero-actor--airplane { top: 35%; right: -200px; width: 160px; animation: fly-across-rtl 18s linear infinite; }
.hero-actor--parachute { top: -140px; left: 25%; width: 130px; animation: parachute-drop 22s linear infinite 6s; }
.hero-actor--rocket { bottom: -180px; left: 75%; width: 140px; animation: rocket-launch 20s linear infinite 10s; }
.hero-actor--ufo { top: 12%; right: -180px; width: 150px; animation: ufo-drift-rtl 24s linear infinite 14s; }

@keyframes fly-across {
  0% { left: -200px; }
  40%, 100% { left: calc(100% + 200px); }
}
@keyframes fly-across-rtl {
  0% { right: -200px; }
  40%, 100% { right: calc(100% + 200px); }
}
@keyframes parachute-drop {
  0% { top: -120px; transform: translateX(0); }
  30% { top: 50%; transform: translateX(30px); }
  50% { top: 55%; transform: translateX(-20px); }
  60%, 100% { top: 60%; transform: translateX(0); }
}
@keyframes rocket-launch {
  0% { bottom: -180px; }
  40% { bottom: calc(100% + 180px); }
  100% { bottom: calc(100% + 180px); }
}
@keyframes ufo-drift {
  0% { left: -180px; transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { left: calc(100% + 180px); transform: translateY(0); }
}
@keyframes ufo-drift-rtl {
  0% { right: -180px; transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { right: calc(100% + 180px); transform: translateY(0); }
}

.hero-speech {
  position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
  background: white; color: var(--charcoal); padding: 4px 12px;
  border-radius: 12px; font-size: 0.75rem; font-weight: 700;
  white-space: nowrap; opacity: 0;
  animation: speech-pop 20s linear infinite 3s;
}
@keyframes speech-pop {
  5%, 25% { opacity: 1; transform: translateX(-50%) translateY(0); }
  0%, 30%, 100% { opacity: 0; transform: translateX(-50%) translateY(8px); }
}

.hero-beam-card {
  position: absolute; top: 80px; left: 50%; transform: translateX(-50%);
  background: var(--bg-card); border: 1px solid var(--mint);
  border-radius: var(--radius); padding: 6px 14px;
  opacity: 0; animation: beam-card 24s linear infinite 16s;
}
@keyframes beam-card {
  0%, 60%, 100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
  65%, 75% { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.hero-beam-text { color: var(--mint); font-size: 0.75rem; font-weight: 600; }

/* Calendar in hero */
.hero-calendar {
  position: absolute; top: 25%; right: 6%; z-index: 2;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 14px;
  box-shadow: var(--shadow); min-width: 180px;
  animation: float-gentle 7s ease-in-out infinite -1s;
}
.hero-calendar-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.hero-calendar-header span:first-child { font-weight: 600; font-size: 0.85rem; }
.hero-calendar-header span:last-child { font-size: 0.75rem; color: var(--text-muted); }
.hero-calendar-event {
  display: flex; align-items: center; gap: 8px; padding: 5px 0;
  font-size: 0.8rem;
}
.hero-calendar-event-bar {
  width: 3px; height: 16px; border-radius: 2px; background: var(--event-color, var(--orange));
}
.hero-calendar-event span:last-child { margin-left: auto; color: var(--text-muted); font-size: 0.75rem; }

/* Dots */
.hero-dots { position: absolute; bottom: 15%; left: 8%; z-index: 2; display: flex; gap: 6px; }
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted); }
.hero-dot:nth-child(1) { animation: dot-pulse 2s ease-in-out infinite; }
.hero-dot:nth-child(2) { animation: dot-pulse 2s ease-in-out infinite 0.6s; }
.hero-dot:nth-child(3) { animation: dot-pulse 2s ease-in-out infinite 1.2s; }
@keyframes dot-pulse { 0%, 100% { opacity: 0.3; transform: scale(1); } 50% { opacity: 1; transform: scale(1.3); } }

/* Hero content */
.hero-content {
  position: relative; z-index: 10; max-width: 640px;
  width: 100%; margin: 0 auto; padding: 80px 24px;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 16px; font-size: 0.85rem;
  color: var(--text-secondary); margin-bottom: 24px;
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); }
.hero-title {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.4rem, 5vw + 1rem, 4rem); font-weight: 700;
  line-height: 1.05; margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero-title-accent {
  display: block;
  background: linear-gradient(135deg, var(--orange), var(--rose));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; justify-content: center; }
.hero-caption { font-size: 0.85rem; color: var(--text-muted); }
.hero-cat { width: 100%; max-width: 320px; height: auto; display: block; margin: 20px auto 0; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: var(--text-muted); animation: scroll-bounce 2s ease-in-out infinite;
  z-index: 10;
}
@keyframes scroll-bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* Sections */
.section { padding: clamp(60px, 8vw, 100px) 0; }
.section-eyebrow { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 12px; }
.section-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw + 0.5rem, 2.5rem); font-weight: 700; margin-bottom: 12px; line-height: 1.15; }
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 48px; max-width: 560px; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { position: relative; }
.step-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 3rem; font-weight: 700;
  color: var(--orange); opacity: 0.5; line-height: 1; margin-bottom: 16px;
}
.step-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 10px; }
.step-desc { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 24px; }
.step-visual { margin-top: auto; }

.step-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px;
}
.step-card-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); }
.step-card-row:last-child { border-bottom: none; }
.step-card-label { font-size: 0.8rem; color: var(--text-muted); }
.step-card-value { font-size: 0.85rem; font-weight: 500; }

.step-chars { display: flex; gap: 12px; }
.step-char { text-align: center; }
.step-char-svg { width: 56px; height: 56px; border-radius: var(--radius); background: var(--bg-card); border: 1.5px solid var(--border-light); margin-bottom: 6px; }
.step-char span { font-size: 0.75rem; color: var(--text-muted); }
.step-char--upload .step-char-svg { border: 2px dashed var(--border-light); display: flex; align-items: center; justify-content: center; }

.step-float { padding: 20px 0; }
.step-float-card {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 12px 20px;
  animation: float-gentle 4s ease-in-out infinite;
}
.step-float-icon { font-size: 1.5rem; }
.step-float-text { font-weight: 500; font-size: 0.9rem; }
.step-peacock { width: 100%; max-width: 280px; height: auto; display: block; margin: 0 auto; }

/* Animation showcase */
.anim-tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.anim-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 100px;
  background: var(--bg-card); border: 1.5px solid var(--border);
  color: var(--text-secondary); font-weight: 500; cursor: pointer;
  transition: all 0.2s; font-family: inherit; font-size: 0.9rem;
}
.anim-tab:hover { border-color: var(--border-light); color: var(--text); }
.anim-tab.active { background: var(--orange); border-color: var(--orange); color: white; }
.anim-tab-icon { font-size: 1.1rem; }

.anim-panels { position: relative; }
.anim-panel { display: none; gap: 40px; align-items: center; }
.anim-panel.active { display: flex; }
.anim-panel-stage { flex: 1; position: relative; min-height: 280px; background: var(--bg-elevated); border-radius: var(--radius-xl); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.anim-stage-bg { position: absolute; inset: 0; opacity: 0.3; background: radial-gradient(circle at 50% 50%, var(--orange), transparent 70%); }
.anim-stage-actor { position: relative; z-index: 2; width: 200px; }
.anim-stage-actor svg, .anim-stage-actor .anim-stage-svg { width: 100%; height: auto; }
.anim-stage-card--ufo {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: var(--bg-card); border: 1px solid var(--mint);
  border-radius: var(--radius); padding: 6px 14px; color: var(--mint);
  font-size: 0.8rem; font-weight: 600;
}

.anim-panel-info { flex: 1; }
.anim-panel-info h3 { font-size: 1.5rem; margin-bottom: 12px; }
.anim-panel-info p { color: var(--text-secondary); margin-bottom: 20px; }
.anim-panel-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  display: inline-block; padding: 5px 12px; border-radius: 100px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  font-size: 0.8rem; color: var(--text-secondary);
}

/* Animation replay states */
.anim-stage-actor--airplane { animation: stage-fly 4s ease-in-out infinite; }
.anim-stage-actor--parachute { animation: stage-drop 5s ease-in-out infinite; }
.anim-stage-actor--runner { animation: stage-run 4s ease-in-out infinite; }
.anim-stage-actor--rocket { animation: stage-rocket 4s ease-in-out infinite; }
.anim-stage-actor--ufo { animation: stage-ufo 6s ease-in-out infinite; }

@keyframes stage-fly { 0% { transform: translateX(-80px); opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { transform: translateX(80px); opacity: 0; } }
@keyframes stage-drop { 0% { transform: translateY(-60px); opacity: 0; } 20% { opacity: 1; } 40% { transform: translateY(10px) translateX(15px); } 60% { transform: translateY(0) translateX(-10px); } 80% { opacity: 1; } 100% { transform: translateY(20px); opacity: 0; } }
@keyframes stage-run { 0% { transform: translateX(-60px); opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { transform: translateX(60px); opacity: 0; } }
@keyframes stage-rocket { 0% { transform: translateY(80px); opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { transform: translateY(-80px); opacity: 0; } }
@keyframes stage-ufo { 0% { transform: translateX(-60px); opacity: 0; } 20% { opacity: 1; } 50% { transform: translateX(0) translateY(-10px); } 80% { opacity: 1; } 100% { transform: translateX(60px); opacity: 0; } }

/* Characters */
.char-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.char-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px;
  transition: all 0.3s ease;
}
.char-card:hover { transform: translateY(-4px); border-color: var(--border-light); box-shadow: var(--shadow); }
.char-visual { display: flex; justify-content: center; margin-bottom: 20px; }
.char-svg { width: 100px; height: 100px; }
.char-svg svg { width: 100%; height: 100%; }
.char-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.char-desc { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 14px; }
.char-tag { display: inline-block; padding: 3px 10px; border-radius: 100px; background: var(--bg-elevated); font-size: 0.75rem; color: var(--text-muted); }
.char-tag--pro { background: var(--orange); color: white; }
.char-card--custom { border-style: dashed; }

/* Calendar sync */
.calendar-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.calendar-providers { list-style: none; margin-top: 24px; }
.calendar-providers li { display: flex; align-items: center; gap: 10px; padding: 8px 0; color: var(--text-secondary); }
.calendar-providers svg { color: var(--orange); }

.timeline {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 20px;
}
.timeline-header {
  display: flex; justify-content: space-between; padding-bottom: 14px;
  border-bottom: 1px solid var(--border); margin-bottom: 14px;
}
.timeline-header span:first-child { font-weight: 600; }
.timeline-header span:last-child { color: var(--text-muted); font-size: 0.9rem; }
.timeline-event { display: flex; gap: 14px; padding: 12px 0; }
.timeline-event-time { font-size: 0.8rem; color: var(--text-muted); width: 60px; flex-shrink: 0; padding-top: 4px; }
.timeline-event-card { flex: 1; background: var(--bg-elevated); border-radius: var(--radius); padding: 10px 14px; position: relative; }
.timeline-event-bar { position: absolute; left: 0; top: 8px; bottom: 8px; width: 3px; border-radius: 2px; background: var(--event-color, var(--orange)); }
.timeline-event-title { font-weight: 500; font-size: 0.9rem; margin-bottom: 2px; }
.timeline-event-meta { font-size: 0.75rem; color: var(--text-muted); }
.timeline-nudge { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--text-muted); padding-top: 4px; }
.timeline-nudge-icon { font-size: 0.9rem; }

/* Platforms */
.platform-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.platform-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px;
  position: relative; transition: all 0.3s ease;
}
.platform-card:hover { border-color: var(--border-light); }
.platform-icon { font-size: 2rem; margin-bottom: 14px; }
.platform-card h3 { font-size: 1.1rem; margin-bottom: 14px; }
.platform-features { list-style: none; }
.platform-features li { font-size: 0.85rem; color: var(--text-secondary); padding: 4px 0; }
.platform-badge { display: inline-block; margin-top: 16px; padding: 3px 10px; border-radius: 100px; background: var(--bg-elevated); font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.platform-note {
  display: flex; align-items: flex-start; gap: 8px;
  background: rgba(255,107,53,0.08); border: 1px solid rgba(255,107,53,0.2);
  border-radius: var(--radius); padding: 10px 12px; margin-top: 12px;
  font-size: 0.8rem; color: var(--text-secondary);
}
.platform-note svg { flex-shrink: 0; color: var(--orange); margin-top: 2px; }

/* Pricing */
.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 48px; }
.billing-label { color: var(--text-muted); font-weight: 500; cursor: pointer; transition: color 0.2s; }
.billing-label.active { color: var(--text); }
.billing-discount { background: var(--success); color: white; padding: 2px 8px; border-radius: 100px; font-size: 0.7rem; margin-left: 6px; }
.billing-switch { position: relative; width: 52px; height: 26px; }
.billing-switch input { opacity: 0; width: 0; height: 0; }
.billing-slider {
  position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-card); border: 1.5px solid var(--border); border-radius: 26px;
  transition: 0.3s;
}
.billing-slider::before {
  position: absolute; content: ''; height: 18px; width: 18px;
  left: 3px; bottom: 3px; background: var(--orange); border-radius: 50%;
  transition: 0.3s;
}
input:checked + .billing-slider::before { transform: translateX(26px); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px 28px;
  position: relative; transition: all 0.3s ease;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card--popular { border-color: var(--orange); transform: scale(1.03); }
.pricing-popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: white; padding: 4px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; }
.pricing-name { font-size: 1.3rem; margin-bottom: 12px; }
.pricing-price { margin-bottom: 12px; }
.pricing-currency { font-size: 1.5rem; vertical-align: top; }
.pricing-amount { font-size: 3rem; font-weight: 700; }
.pricing-period { color: var(--text-muted); }
.pricing-desc { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 20px; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li { padding: 7px 0; font-size: 0.9rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-feature--no { color: var(--text-muted); }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 10px; overflow: hidden; }
.faq-question {
  width: 100%; padding: 18px 22px; background: none; border: none;
  color: var(--text); font-size: 1rem; font-weight: 500;
  text-align: left; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; font-family: inherit; transition: color 0.2s;
}
.faq-question:hover { color: var(--orange); }
.faq-icon { transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 22px 18px; color: var(--text-secondary); font-size: 0.95rem; }

/* Download */
.section--download { background: linear-gradient(180deg, var(--bg) 0%, rgba(255,107,53,0.03) 50%, var(--bg) 100%); }
.download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 800px; margin: 0 auto 40px; }
.download-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px 28px;
  transition: all 0.3s ease;
}
.download-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-light); }
.download-icon { color: var(--orange); margin-bottom: 16px; }
.download-name { font-size: 1.3rem; margin-bottom: 8px; }
.download-desc { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 20px; }
.download-features { list-style: none; margin-bottom: 24px; }
.download-features li { padding: 5px 0; font-size: 0.9rem; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.download-features li::before { content: '✓'; color: var(--success); font-weight: 700; }
.download-version { display: block; text-align: center; margin-top: 12px; font-size: 0.8rem; color: var(--text-muted); }
.download-note {
  display: flex; align-items: flex-start; gap: 10px;
  max-width: 600px; margin: 0 auto;
  background: rgba(255,107,53,0.06); border: 1px solid rgba(255,107,53,0.15);
  border-radius: var(--radius-lg); padding: 14px 18px;
  font-size: 0.9rem; color: var(--text-secondary);
}
.download-note svg { flex-shrink: 0; color: var(--orange); margin-top: 2px; }
.download-note a { color: var(--orange); text-decoration: none; }
.download-note a:hover { text-decoration: underline; }

/* CTA */
.section--cta { background: linear-gradient(180deg, var(--bg) 0%, rgba(255,107,53,0.03) 50%, var(--bg) 100%); }
.cta-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.cta-title { font-family: 'Space Grotesk', sans-serif; font-size: 2.8rem; font-weight: 700; margin-bottom: 16px; line-height: 1.1; }
.cta-subtitle { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 32px; }
.cta-actions { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.cta-caption { font-size: 0.85rem; color: var(--text-muted); }

.cta-mascot { position: relative; display: flex; justify-content: center; }
.cta-mascot-svg { width: 200px; height: 200px; filter: drop-shadow(0 8px 24px rgba(255,107,53,0.2)); animation: mascot-bob 4s ease-in-out infinite; }
@keyframes mascot-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.cta-mascot-bubble {
  position: absolute; top: -10px; right: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 10px 16px;
  font-size: 0.85rem; color: var(--text-secondary); max-width: 180px;
  box-shadow: var(--shadow);
}

/* Footer */
.footer { padding: 60px 0 20px; border-top: 1px solid var(--border); }
.footer-layout { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); margin-bottom: 12px; }
.footer-logo-icon { width: 28px; height: 28px; }
.footer-logo-text { font-weight: 700; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; }
.footer-links h4 { font-size: 0.9rem; margin-bottom: 14px; color: var(--text); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.85rem; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero-actor, .hero-speech, .hero-beam-card, .hero-dot { display: none; }
}

/* Responsive */
@media (max-width: 968px) {
  .hero-content { padding: 60px 24px; }
  .hero-reminder, .hero-calendar, .hero-dots, .hero-actor, .hero-speech, .hero-beam-card { display: none; }
  .steps { grid-template-columns: 1fr; }
  .anim-panel.active { flex-direction: column; }
  .anim-panel-stage { width: 100%; min-height: 220px; }
  .char-grid { grid-template-columns: repeat(2, 1fr); }
  .calendar-layout { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card--popular { transform: none; }
  .download-grid { grid-template-columns: 1fr; max-width: 400px; }
  .cta-layout { grid-template-columns: 1fr; text-align: center; }
  .cta-mascot { order: -1; }
  .footer-layout { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 16px 24px; gap: 4px; border-bottom: 1px solid var(--border); }
  .nav-links.active { display: flex; }
  .nav-mobile-toggle { display: flex; }
  .hero-actions { flex-direction: column; align-items: center; }
  .char-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .footer-layout { grid-template-columns: 1fr; }
}

