/* =================================================================
   COMMON NAVIGATION & HEADER STYLES
   Shared navigation elements across all pages (landing, app, select)
   ================================================================= */

/* Skip to main content - accessible but visually hidden until focused */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-to-main:focus {
    top: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .nav-container {
    background: rgba(15, 15, 15, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
    .nav-container {
        padding: 0.75rem 1rem; /* Less padding on mobile */
    }
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981, #f59e0b, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.8;
}

/* Nav text links (Blog, FAQ) — sit between logo and CTA */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin: 0 auto 0 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--color-yes);
}

@media (max-width: 600px) {
    .nav-links {
        display: none; /* Hidden on mobile — links still in footer */
    }
}

/* Footer sitemap link */
.footer-bottom a {
    color: var(--color-text-muted);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--color-yes);
    text-decoration: underline;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--color-yes);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

/* Theme toggle button - neutral utility styling */
.theme-toggle {
    background: transparent;
    border: 2px solid var(--color-text-muted);
    color: var(--color-text);
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: 1rem;
}

.theme-toggle:hover {
    border-color: var(--color-text); /* Changed from --color-accent to neutral */
    background: rgba(148, 163, 184, 0.1); /* Subtle gray background on hover */
    transform: rotate(180deg);
}

.theme-toggle:active {
    transform: rotate(180deg) scale(0.9);
}

/* Theme toggle icons */
.theme-icon {
    font-size: 1.2rem;
    display: none;
}

/* Show sun in dark mode, moon in light mode */
[data-theme="dark"] .theme-icon.sun,
:root:not([data-theme]) .theme-icon.sun {
    display: block;
}

[data-theme="light"] .theme-icon.moon {
    display: block;
}

/* Responsive navigation */
@media (max-width: 600px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-cta {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* =================================================================
   APP-SPECIFIC NAV WITH PACK INFO
   Used on /app/index.html to show pack name and tier in nav
   ================================================================= */

.nav-container.app-nav {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
}

.nav-container.app-nav .nav-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    flex: 1;
}

.nav-container.app-nav .logo {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Pack info in nav */
.pack-info-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.pack-info-nav .pack-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    opacity: 0.9;
}

/* Quiz status in nav (partner, progress, undo) */
.quiz-status-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.quiz-status-nav .quiz-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.quiz-status-nav .step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.quiz-status-nav .progress {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-text);
    opacity: 0.7;
}

/* =================================================================
   UTILITY BUTTONS - Unified system for icon+text buttons
   Used by: Undo, Theme Toggle, Change Pack
   ================================================================= */

/* Base utility button style - Bootstrap-aligned */
.util-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--muted);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full, 999px);
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 100px;
}

/* Light mode: white background for better visibility */
[data-theme="light"] .util-btn {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #1e293b;
}

[data-theme="light"] .util-btn:hover {
    border-color: #6366f1;
    background: #f8fafc;
}

.util-btn:hover {
    border-color: var(--text);
    background: rgba(148, 163, 184, 0.1);
    transform: translateY(-1px);
}

.util-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Compact variant for nav/header */
.util-btn.compact {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    gap: 4px;
    min-width: 80px;
}

/* Undo button color variant */
.util-btn.undo {
    background: rgba(107, 144, 128, 0.2);
    border-color: rgba(107, 144, 128, 0.4);
    color: var(--yes, #6b9080);
}

.util-btn.undo:hover {
    background: rgba(107, 144, 128, 0.35);
    border-color: rgba(107, 144, 128, 0.6);
    transform: scale(1.05);
}

.util-btn.undo:active {
    transform: scale(0.95);
}

/* Icon and text inside utility buttons - Bootstrap-aligned */
.util-btn .icon {
    font-size: 1rem;
    line-height: 1.5;
}

.util-btn .text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.5;
}

.util-btn.compact .icon {
    font-size: 0.875rem;
}

.util-btn.compact .text {
    font-size: 0.65rem;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .util-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
        min-width: 85px;
    }
        gap: 3px;
        min-width: 85px;
    }
}

/* Mobile adjustments for app nav */
@media (max-width: 600px) {
    .nav-container.app-nav {
        padding: 0.5rem 0.75rem;
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }

    .nav-container.app-nav .nav-left {
        flex-direction: column;
        gap: 0.25rem;
        align-items: flex-start;
    }

    .nav-container.app-nav .logo {
        font-size: 0.95rem;
    }

    .pack-info-nav {
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
    }

    .pack-info-nav .pack-name {
        font-size: 0.85rem;
    }

    /* Quiz status mobile adjustments */
    .quiz-status-nav {
        gap: 0.5rem;
    }

    .quiz-status-nav .step-label {
        font-size: 0.75rem;
    }

    .quiz-status-nav .progress {
        font-size: 0.65rem;
    }

    .quiz-status-nav .undo-btn {
        padding: 4px 8px;
        gap: 3px;
        font-size: 0.75rem;
    }

    .quiz-status-nav .undo-icon {
        font-size: 0.85rem;
    }

    .quiz-status-nav .undo-text {
        font-size: 0.6rem;
    }
}
        padding: 2px 6px;
        gap: 3px;
    }
    
    .quiz-status-nav .undo-icon {
        font-size: 0.85rem;
    }
    
    .quiz-status-nav .undo-text {
        font-size: 0.6rem;
    }
}

/* =================================================================
   UTILITY CLASSES - Replace inline styles throughout templates
   ================================================================= */

/* Text alignment utilities */
.text-center {
    text-align: center;
}

/* Spacing utilities */
.mb-24 {
    margin-bottom: 24px;
}

/* =================================================================
   BACK LINK - Reusable navigation element
   ================================================================= */

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.back-link:hover {
  color: #ffffff;
  opacity: 1;
  transform: translateX(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.back-link span:first-child {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.back-link:hover span:first-child {
  transform: translateX(-3px);
}

/* =================================================================
   SELECT PAGE - Minimal wrapper styles
   ================================================================= */

.select-page-main .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.mt-14 {
    margin-top: 14px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-18 {
    margin-top: 18px;
}

.mt-24 {
    margin-top: 24px;
}

/* Layout utilities */
.flex-center {
    display: flex;
    justify-content: center;
}

.max-width-400 {
    max-width: 400px;
    margin: 0 auto;
}

/* Instruction card styling */
.instruction-card {
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

[data-theme="light"] .instruction-card {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.15);
}

.instruction-card-icon {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 8px;
}

.instruction-card-text {
    text-align: center;
    margin: 0;
    font-size: 0.9rem;
}

/* Logo image styling */
.logo-icon {
    height: 1.6em;
    vertical-align: middle;
    margin-right: 0.5em;
    display: inline-block;
}

/* Nav actions container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary answer colors - shared across landing and app */
    --color-yes: #10b981;
    --color-maybe: #f59e0b;
    --color-never: #ef4444;
    
    /* App-specific muted palette (for app pages) */
    --yes: #6b9080;      /* Muted sage green - softer, more intimate */
    --maybe: #d4a574;    /* Warm caramel - earthy, not loud */
    --no: #b85c5c;       /* Muted terracotta red - boundary without aggression */
    
    /* Background colors - DARK MODE (default) */
    --color-bg: #0f0f0f;
    --color-bg-light: #1a1a1a;
    --color-bg-lighter: #262626;
    
    /* App-specific backgrounds */
    --bg: #1c1c1e;       /* Deep charcoal for app */
    --card: #2c2c2e;     /* Soft black for cards */
    
    /* Text colors - DARK MODE (default) */
    --color-text: #f5f5f5;
    --color-text-muted: #a3a3a3;
    --text: #f4f1ec;     /* Soft ivory for app */
    --muted: #a8a8a8;    /* Warm gray for app */
    
    /* Accent */
    --color-accent: #8b5cf6;
    
    /* Spacing system */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Radii and transitions */
    --radius-full: 999px;
    --transition: 0.2s ease;
}

/* =================================================================
   LIGHT MODE THEME
   Auto-detection + manual override support
   ================================================================= */

/* Auto-detect light mode preference */
@media (prefers-color-scheme: light) {
    :root:not([data-theme="dark"]) {
        /* Backgrounds - LIGHT MODE */
        --color-bg: #f5f5f5;
        --color-bg-light: #fff;
        --color-bg-lighter: #e5e5e5;
        
        /* App-specific backgrounds */
        --bg: #f0f0f0;
        --card: #fff;
        
        /* Text - LIGHT MODE */
        --color-text: #0f0f0f;
        --color-text-muted: #666;
        --text: #1a1a1a;
        --muted: #666;
        
        /* Adjust shadows for light mode */
        --shadow-color: rgb(0 0 0 / 10%);
    }
}

/* Manual light mode override */
[data-theme="light"] {
    /* Backgrounds - LIGHT MODE (improved contrast) */
    --color-bg: #f8fafc;           /* Soft off-white (slate-50) */
    --color-bg-light: #fff;     /* Pure white */
    --color-bg-lighter: #f1f5f9;   /* Very light slate */

    /* App-specific backgrounds */
    --bg: #f8fafc;                 /* Match body */
    --card: #fff;               /* Pure white for cards */
    
    /* Text - LIGHT MODE (high contrast) */
    --color-text: #1e293b;         /* Deep slate gray */
    --color-text-muted: #64748b;   /* Medium slate */
    --text: #1e293b;               /* Deep readable text */
    --muted: #64748b;              /* Muted but readable */
    
    /* Header specific (vibrant accent) */
    --header-from: #6366f1;        /* Indigo */
    --header-to: #8b5cf6;          /* Purple */
    --header-text: #fff;        /* White text on colored header */
    
    /* Borders and shadows */
    --border-color: #e2e8f0;       /* Light border */
    --shadow-color: rgb(0 0 0 / 10%);
}

/* Dark mode theme (GitHub/Discord inspired - proven high contrast) */
:root,
[data-theme="dark"] {
    /* Backgrounds - DARK MODE (much more separation) */
    --color-bg: #0d1117;           /* Almost black (GitHub dark) */
    --color-bg-light: #161b22;     /* Dark gray (GitHub panels) */
    --color-bg-lighter: #21262d;   /* Medium gray */
    
    /* App-specific backgrounds */
    --bg: #0d1117;                 /* Match body - very dark */
    --card: #161b22;               /* Distinct panel color */
    
    /* Text - DARK MODE (bright, readable) */
    --color-text: #c9d1d9;         /* GitHub text gray */
    --color-text-muted: #8b949e;   /* GitHub muted text */
    --text: #c9d1d9;               /* Bright readable text */
    --muted: #8b949e;              /* Muted but visible */
    
    /* Header specific (BRIGHT gradient for maximum contrast) */
    --header-from: #3b82f6;        /* Bright blue (tailwind-500) */
    --header-to: #8b5cf6;          /* Bright purple (tailwind-500) */
    --header-text: #fff;        /* Pure white */
    
    /* Borders and shadows */
    --border-color: #30363d;       /* GitHub border */
    --shadow-color: rgb(0 0 0 / 70%);
}

/* Ensure body background works in both modes */
[data-theme="light"] body {
    background: var(--color-bg) !important;
}

[data-theme="dark"] body,
:root:not([data-theme="light"]) body {
    background: #0d1117 !important; /* Solid dark - GitHub style */
}

/* Light mode: adjust nav background */
[data-theme="light"] .nav-container {
    background: rgb(255 255 255 / 98%);
    backdrop-filter: blur(10px);
}

/* Light mode: adjust card shadows for depth */
[data-theme="light"] .demo-card,
[data-theme="light"] .app-card {
    box-shadow: 0 4px 16px rgb(0 0 0 / 8%), 0 1px 3px rgb(0 0 0 / 6%);
    border: 1px solid var(--border-color);
}

/* Light mode: adjust hero gradient */
[data-theme="light"] .hero::before {
    background: radial-gradient(circle at center, rgb(99 102 241 / 8%) 0%, transparent 70%);
}

/* Light mode: make hero text DARK and bold for high contrast */
[data-theme="light"] .hero-title {
    background: linear-gradient(135deg, #1e293b, #475569); /* Dark gradient */
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none; /* Remove glow effect */
}

[data-theme="light"] .hero-subtitle {
    color: #475569; /* Medium slate - still readable */
    text-shadow: none;
}

/* Dark mode: enhance card depth (but preserve colored button glows) */
[data-theme="dark"] .demo-card,
[data-theme="dark"] .app-card {
    box-shadow: 0 8px 32px rgb(0 0 0 / 40%), 0 2px 8px rgb(0 0 0 / 30%);
    border: 1px solid var(--border-color);
}

/* Dark mode: let answer buttons keep their colored glows */
[data-theme="dark"] .answer-btn {
    /* No box-shadow override - let .btn-yes, .btn-maybe, .btn-never styles apply */
}

/* Dark mode: nav styling */
[data-theme="dark"] .nav-container,
:root:not([data-theme="light"]) .nav-container {
    background: rgb(15 23 42 / 95%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height - adapts to mobile browser chrome */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgb(139 92 246 / 10%) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #fff, var(--color-accent));
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

/* =================================================================
   BUTTON HIERARCHY & COLOR USAGE
   - PRIMARY BUTTONS (.btn-primary, .nav-cta): Emerald green (--color-yes)
     Use for: Main CTAs, "Play Now", "Start" buttons on landing pages
   - UTILITY BUTTONS (.theme-toggle, footer buttons): Neutral grays
     Use for: Theme toggle, navigation, secondary actions in app
   - SECONDARY BUTTONS (.btn-secondary): Neutral with borders
     Use for: "See How It Works", alternative actions
   ================================================================= */

/* =================================================================
   BUTTON SYSTEM - Simplified & Clear
   ================================================================= */

/* 1. HERO BUTTONS - Landing page CTAs */
.hero-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.hero-btn.primary {
    background: var(--color-yes);
    color: white;
    box-shadow: 0 4px 16px rgb(16 185 129 / 30%);
}

.hero-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgb(16 185 129 / 40%);
}

.hero-btn.secondary {
    background: var(--color-bg-lighter);
    color: var(--color-text);
    border: 2px solid var(--color-bg-lighter);
}

.hero-btn.secondary:hover {
    border-color: var(--color-accent);
    background: transparent;
}

.hero-btn.large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

/* Light mode adjustments for hero buttons */
[data-theme="light"] .hero-btn.secondary {
    background: #fff;
    color: #1e293b;
    border-color: #e2e8f0;
}

[data-theme="light"] .hero-btn.secondary:hover {
    background: #f8fafc;
    border-color: #6366f1;
    color: #6366f1;
}

/* Hero Visual - Answer Cards */
.hero-visual {
    margin-top: var(--spacing-lg);
}

.answer-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0 1rem;
}

/* Ensure answer-cards in hero section are always visible */
.hero-visual .answer-cards {
    display: flex !important;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 1rem;
}

/* Answer button cards (YES/MAYBE/NEVER on landing page hero) */
.answer-btn {
    width: 150px;
    height: 200px;
    background: var(--color-bg-light);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    border: 4px solid transparent; /* Thicker border for more impact */
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    cursor: pointer;
    box-shadow: 0 4px 24px rgb(0 0 0 / 12%);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    outline: none;
    position: relative;
    
    /* Fade-in animation */
    opacity: 1;
    animation: fadeInUp 0.4s ease-out forwards;
}

/* Stagger animation for answer cards */
.answer-cards .answer-btn:nth-child(1) {
    animation-delay: 0.1s;
}

.answer-cards .answer-btn:nth-child(2) {
    animation-delay: 0.2s;
}

.answer-cards .answer-btn:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.answer-btn:focus {
    z-index: 2;
    box-shadow: 0 0 0 4px var(--color-accent), 0 4px 24px rgb(0 0 0 / 12%);
}

.answer-btn:hover {
    transform: translateY(-8px) scale(1.05);
}

.answer-btn:active {
    transform: translateY(-4px) scale(0.98);
    transition: transform 0.1s;
}

/* YES button - Green halo (boosted for visibility) */
.btn-yes {
    background: rgb(16 185 129 / 15%); /* Semi-transparent green background */
    border-color: var(--color-yes);
    box-shadow: 0 4px 32px rgb(16 185 129 / 50%), 0 0 60px rgb(16 185 129 / 40%);
}

.btn-yes:hover {
    background: rgb(16 185 129 / 25%); /* Slightly more opaque on hover */
    box-shadow: 0 8px 40px rgb(16 185 129 / 70%), 0 0 80px rgb(16 185 129 / 50%);
}

/* MAYBE button - Amber halo (boosted for visibility) */
.btn-maybe {
    background: rgb(245 158 11 / 15%); /* Semi-transparent amber background */
    border-color: var(--color-maybe);
    box-shadow: 0 4px 32px rgb(245 158 11 / 50%), 0 0 60px rgb(245 158 11 / 40%);
}

.btn-maybe:hover {
    background: rgb(245 158 11 / 25%); /* Slightly more opaque on hover */
    box-shadow: 0 8px 40px rgb(245 158 11 / 70%), 0 0 80px rgb(245 158 11 / 50%);
}

/* NEVER button - Red halo (boosted for visibility) */
.btn-never {
    background: rgb(239 68 68 / 15%); /* Semi-transparent red background */
    border-color: var(--color-never);
    box-shadow: 0 4px 32px rgb(239 68 68 / 50%), 0 0 60px rgb(239 68 68 / 40%);
}

.btn-never:hover {
    background: rgb(239 68 68 / 25%); /* Slightly more opaque on hover */
    box-shadow: 0 8px 40px rgb(239 68 68 / 70%), 0 0 80px rgb(239 68 68 / 50%);
}

/* Override generic button background for landing page answer cards */
.answer-btn.btn-yes,
.answer-btn.btn-maybe,
.answer-btn.btn-never {
    background: inherit !important; /* Let the .btn-yes/maybe/never styles apply */
}

/* Landing page demo - colored backgrounds for answer buttons */
.hero-visual .answer-btn.btn-yes {
    background: rgb(16 185 129 / 15%);
}

.hero-visual .answer-btn.btn-yes:hover {
    background: rgb(16 185 129 / 25%);
}

.hero-visual .answer-btn.btn-maybe {
    background: rgb(245 158 11 / 15%);
}

.hero-visual .answer-btn.btn-maybe:hover {
    background: rgb(245 158 11 / 25%);
}

.hero-visual .answer-btn.btn-never {
    background: rgb(239 68 68 / 15%);
}

.hero-visual .answer-btn.btn-never:hover {
    background: rgb(239 68 68 / 25%);
}

/* Answer direction chevrons (replace dots) */
.answer-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;  /* 200% bigger than previous 5rem (was 2.5rem originally) */
    font-weight: 900;
    width: 120px;  /* Perfect square for proper rotation centering */
    height: 120px;  
    margin-bottom: 0.5rem;
    position: relative;
    transition: transform 0.3s ease;
    overflow: visible;  /* Allow chevrons to animate freely without clipping */
}

/* Individual chevron styling */
.chevron {
    display: inline-block;
    font-size: inherit;
    font-weight: inherit;
    opacity: 0.7;
    transition: all 0.3s ease;
    line-height: 1;  /* Remove extra vertical space - CRITICAL for rotation centering */
    vertical-align: middle;  /* Align consistently on baseline */
    height: 1em;  /* Constrain height to font-size - prevents flex stretching */
    align-self: center;  /* Don't stretch in flex container */
}

/* Color each button's chevrons */
.dot-yes .chevron {
    color: var(--color-yes);
}

.dot-maybe .chevron {
    color: var(--color-maybe);
}

.dot-never .chevron {
    color: var(--color-never);
}

/* MAYBE chevrons: rotate the parent container to point upward */
.dot-maybe
{
    transform: rotate(-90deg); /* Rotate the container */
    transform-origin: center center; /* Explicit center rotation */
    margin-left: -38px; /* Fudge for now to fix centering */
}

/* Spacing between chevrons */
.chevron + .chevron {
    margin-left: -0.15em;  /* Overlap slightly for cohesive look */
}

/* Hover: trigger sequential charge-up animations on individual chevrons */
.answer-btn:hover .dot-yes .chevron-1 {
    animation: chevronChargeRight 1.2s 0s ease-in-out infinite !important;
}

.answer-btn:hover .dot-yes .chevron-2 {
    animation: chevronChargeRight 1.2s 0.15s ease-in-out infinite !important;
}

.answer-btn:hover .dot-yes .chevron-3 {
    animation: chevronChargeRight 1.2s 0.3s ease-in-out infinite !important;
}

.answer-btn:hover .dot-maybe .chevron-1 {
    animation: chevronChargeUp 1.2s 0s ease-in-out infinite !important;
}

.answer-btn:hover .dot-maybe .chevron-2 {
    animation: chevronChargeUp 1.2s 0.15s ease-in-out infinite !important;
}

.answer-btn:hover .dot-maybe .chevron-3 {
    animation: chevronChargeUp 1.2s 0.3s ease-in-out infinite !important;
}

.answer-btn:hover .dot-never .chevron-1 {
    animation: chevronChargeLeft 1.2s 0s ease-in-out infinite !important;
}

.answer-btn:hover .dot-never .chevron-2 {
    animation: chevronChargeLeft 1.2s 0.15s ease-in-out infinite !important;
}

.answer-btn:hover .dot-never .chevron-3 {
    animation: chevronChargeLeft 1.2s 0.3s ease-in-out infinite !important;
}

/* Sequential charge-up animation - RIGHT pointing chevrons (YES button) */
@keyframes chevronChargeRight {
    0%, 100% { 
        transform: scale(1) translateX(0);
        opacity: 0.7;
        filter: brightness(1) drop-shadow(0 0 0 currentcolor);
    }

    50% {  /* Peak: scale up, glow, shift right */
        transform: scale(1.3) translateX(3px);
        opacity: 1;
        filter: brightness(1.5) drop-shadow(0 0 15px currentcolor) drop-shadow(0 0 25px currentcolor);
    }
}

/* Sequential charge-up animation - UP pointing chevrons (MAYBE button, rotated container) */
@keyframes chevronChargeUp {
    0%, 100% { 
        transform: scale(1) translateX(0);  /* translateX becomes translateY after rotation */
        opacity: 0.7;
        filter: brightness(1) drop-shadow(0 0 0 currentcolor);
    }

    50% {  /* Peak: scale up, glow, shift in direction of arrow (right becomes up after rotation) */
        transform: scale(1.3) translateX(3px);  /* After -90deg rotation, +X = upward */
        opacity: 1;
        filter: brightness(1.5) saturate(1.3) drop-shadow(0 0 15px currentcolor) drop-shadow(0 0 25px currentcolor);
    }
}

/* Sequential charge-up animation - LEFT pointing chevrons (NEVER button) */
@keyframes chevronChargeLeft {
    0%, 100% { 
        transform: scale(1) translateX(0);
        opacity: 0.7;
        filter: brightness(1) drop-shadow(0 0 0 currentcolor);
    }

    50% {  /* Peak: scale up, glow, shift left */
        transform: scale(1.3) translateX(-3px);
        opacity: 1;
        filter: brightness(1.5) drop-shadow(0 0 15px currentcolor) drop-shadow(0 0 25px currentcolor);
    }
}

.answer-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
}

/* Demo answer cards on landing page (for visual demonstration only) */
.demo-card {
    width: 140px;
    height: 180px;
    background: var(--color-bg-light);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: 3px solid transparent;
}

.demo-card:hover {
    transform: translateY(-8px) scale(1.05);
}

/* YES card - Green halo */
.demo-card.card-yes {
    border-color: var(--color-yes);
    box-shadow: 0 4px 24px rgb(16 185 129 / 30%), 0 0 40px rgb(16 185 129 / 20%);
}

.demo-card.card-yes:hover {
    box-shadow: 0 8px 32px rgb(16 185 129 / 50%), 0 0 60px rgb(16 185 129 / 30%);
    border-color: #10b981;
}

/* MAYBE card - Amber/Orange halo */
.demo-card.card-maybe {
    border-color: var(--color-maybe);
    box-shadow: 0 4px 24px rgb(245 158 11 / 30%), 0 0 40px rgb(245 158 11 / 20%);
}

.demo-card.card-maybe:hover {
    box-shadow: 0 8px 32px rgb(245 158 11 / 50%), 0 0 60px rgb(245 158 11 / 30%);
    border-color: #f59e0b;
}

/* NEVER card - Red halo */
.demo-card.card-never {
    border-color: var(--color-never);
    box-shadow: 0 4px 24px rgb(239 68 68 / 30%), 0 0 40px rgb(239 68 68 / 20%);
}

.demo-card.card-never:hover {
    box-shadow: 0 8px 32px rgb(239 68 68 / 50%), 0 0 60px rgb(239 68 68 / 30%);
    border-color: #ef4444;
}

/* Card emoji */
.card-emoji {
    font-size: 3rem;
}

/* Card label */
.card-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
}

/* Sections */
.section {
    padding: var(--spacing-xl) var(--spacing-md);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
}

/* How It Works */
.how-it-works {
    background: var(--color-bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: var(--spacing-md);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-yes));
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.step p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.highlight-yes {
    color: var(--color-yes);
    font-weight: 600;
}

.highlight-maybe {
    color: var(--color-maybe);
    font-weight: 600;
}

.highlight-never {
    color: var(--color-never);
    font-weight: 600;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.feature {
    background: var(--color-bg-light);
    padding: var(--spacing-md);
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.feature:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
    box-shadow: 0 8px 32px rgb(139 92 246 / 20%);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.feature p {
    color: var(--color-text-muted);
}

/* Testimonials */
.discoveries {
    background: var(--color-bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial {
    background: var(--color-bg-lighter);
    padding: var(--spacing-md);
    border-radius: 16px;
    border-left: 4px solid var(--color-yes);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
    font-style: italic;
}

.testimonial-author {
    color: var(--color-text-muted);
    font-weight: 600;
}

/* Roadmap */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-item {
    background: var(--color-bg-light);
    padding: var(--spacing-md);
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--color-bg-lighter);
}

.roadmap-item h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
}

.roadmap-item p {
    color: var(--color-text-muted);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-accent), var(--color-yes));
    text-align: center;
}

.cta-content {
    padding: var(--spacing-lg) 0;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-sm);
    color: white;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    color: rgb(255 255 255 / 90%);
}

.cta-section .hero-btn.primary {
    background: white;
    color: var(--color-accent);
    box-shadow: 0 8px 24px rgb(0 0 0 / 20%);
}

.cta-section .hero-btn.primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 32px rgb(0 0 0 / 30%);
}

.cta-note {
    margin-top: var(--spacing-md);
    color: rgb(255 255 255 / 80%);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--color-bg-light);
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    color: var(--color-text-muted);
    margin-top: var(--spacing-xs);
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-bg-lighter);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (width <= 768px) {
    .hero {
        min-height: auto;
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 320px;
        min-height: 44px; /* Touch target minimum */
    }
    
    .answer-cards {
        gap: 1rem;
    }
    
    .answer-btn {
        width: 100px;
        height: 120px;
        font-size: 1rem;
        min-width: 88px; /* Larger touch target */
        min-height: 100px;
    }
    
    .demo-card {
        width: 100px;
        height: 140px;
    }
    
    .card-emoji {
        font-size: 2rem;
    }
    
    .card-label {
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    /* Improve touch targets for mobile */
    .nav-cta {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 20px;
    }
    
    button {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--color-yes);
    color: white;
}

/* =================================================================
   ACCESSIBILITY ENHANCEMENTS
   Focus states, reduced motion, and skip links
   ================================================================= */

/* Focus states for keyboard navigation */
.btn:focus-visible,
.answer-btn:focus-visible,
.nav-cta:focus-visible,
button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
    z-index: 100;
}

/* Skip to main content link for screen readers */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-yes);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 8px;
    transition: top 0.2s ease;
    clip: rect(0, 0, 0, 0); /* Additional hiding for accessibility */
    overflow: hidden;
    white-space: nowrap;
}

.skip-to-main:focus {
    top: 0;
    clip: auto; /* Show when focused */
    overflow: visible;
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

/* Reduced motion support for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .swipe-card,
    .answer-btn,
    .hero::before,
    .btn,
    .card {
        animation: none !important;
    }
}

/* Loading skeleton states */
.loading-skeleton {
    background: linear-gradient(
        90deg,
        var(--color-bg-light) 25%,
        var(--color-bg-lighter) 50%,
        var(--color-bg-light) 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
    border-radius: 8px;
    min-height: 20px;
}

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

/* Print styles */
@media print {
    .nav-container,
    .hero-buttons,
    .nav-cta,
    button,
    .btn,
    .answer-cards,
    .skip-to-main,
    .change-pack-link {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
        padding-top: 0 !important;
    }
    
    .hero,
    .section {
        background: white !important;
        color: black !important;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: black !important;
        break-after: avoid;
    }
    
    .summary-title,
    .strong-matches,
    .soft-matches,
    .testimonial {
        break-inside: avoid;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    a::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }
    
    .logo::after {
        content: "";
    }
}

/* =================================================================
   APP-SPECIFIC SHARED COMPONENTS
   Styles that are shared between app pages but not landing page
   ================================================================= */

/* App Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.25rem;
    font-weight: 700;
}

h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

/* Utility Classes */
.small {
    font-size: 0.65rem; /* Smaller to prevent wrapping */
    margin-top: 0.3rem;
    line-height: 1.3; /* Tighter line height */
}

.center {
    text-align: center;
}

/* Pill badges */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgb(15 23 42 / 85%);
    margin-bottom: 0.75rem;
    color: var(--muted);
}

/* Badge variations */
.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.badge-yes { 
    background: rgb(16 185 129 / 10%); 
    color: #6ee7b7; 
}

.badge-soft { 
    background: rgb(245 158 11 / 10%); 
    color: #fed7aa; 
}

.badge-none { 
    background: rgb(148 163 184 / 15%); 
    color: #cbd5f5; 
}

/* Divider */
.divider {
    margin: 10px 0;
    border-top: 1px solid rgb(148 163 184 / 25%);
}

/* List styles */
.list {
    margin-top: 10px;
    padding-left: 16px;
    font-size: 0.9rem;
    color: var(--muted);
}

/* Progress indicator */
.progress {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.step-label {
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.section-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 4px;
}

/* Tagline */
.tagline {
    font-size: 0.75rem; /* Smaller on mobile */
    text-align: center;
    margin-top: 4px; /* Reduced margin */
    color: var(--muted);
}

/* App footer container */
.app-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

/* Footer buttons container - horizontal layout */
.footer-buttons {
    display: flex;
    flex-flow: row nowrap;
    gap: 10px;
    align-items: center;
    justify-content: center; /* Changed from wrap to prevent wrapping */
}

@media (width <= 600px) {
    .footer-buttons {
        gap: 8px; /* Tighter spacing on mobile */
    }
}

/* NOTE: Footer button styles now unified in common.css as .util-btn */

/* Theme toggle visibility controlled below */

/* Theme toggle icons and text - show only current mode */
.util-btn .theme-icon,
.util-btn .theme-text {
    display: none !important;
}

/* Light mode: show moon icon and "Dark Mode" text */
[data-theme="light"] .util-btn .theme-icon.moon,
[data-theme="light"] .util-btn .theme-text.moon {
    display: inline-block !important;
}

/* Dark mode: show sun icon and "Light Mode" text */
[data-theme="dark"] .util-btn .theme-icon.sun,
[data-theme="dark"] .util-btn .theme-text.sun {
    display: inline-block !important;
}

/* Default (no theme set yet): show moon icon and "Dark Mode" */
:root:not([data-theme]) .util-btn .theme-icon.moon,
:root:not([data-theme]) .util-btn .theme-text.moon {
    display: inline-block !important;
}

/* Match the .text styling for theme toggle text and pack link text */
.util-btn .theme-icon {
    font-size: 1rem;
    line-height: 1;
}

.util-btn .theme-text,
.util-btn .text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1;
}

/* Show sun icon and text in dark mode (to switch TO light) */
[data-theme="dark"] .util-btn .theme-icon.sun,
:root:not([data-theme="light"]) .util-btn .theme-icon.sun {
    display: inline !important;
}

[data-theme="dark"] .util-btn .theme-text.sun,
:root:not([data-theme="light"]) .util-btn .theme-text.sun {
    display: inline !important;
}

/* Show moon icon and text in light mode (to switch TO dark) */
[data-theme="light"] .util-btn .theme-icon.moon {
    display: inline !important;
}

[data-theme="light"] .util-btn .theme-text.moon {
    display: inline !important;
}

/* Always show pack link text */
.util-btn .icon,
.util-btn .text {
    display: inline !important;
}

/* =================================================================
   BUY PAGE - Premium unlock page
   ================================================================= */

body.page-buy {
  background: linear-gradient(135deg, #8b5cf6 0%, #10b981 100%) !important;
  min-height: 100vh;
}

[data-theme="dark"] body.page-buy {
  background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%) !important;
}

.buy-page {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px;
}

.buy-hero {
  text-align: center;
  margin-bottom: 48px;
}

.buy-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.buy-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.price-box {
  background: white;
  border: 3px solid rgba(16, 185, 129, 0.3);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .price-box {
  background: rgba(30, 41, 59, 0.95);
  border-color: rgba(16, 185, 129, 0.4);
}

.price {
  font-size: 5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #10b981, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  text-align: center;
}

.price-desc {
  font-size: 1.1rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 32px;
}

[data-theme="dark"] .price-desc {
  color: #94a3b8;
}

.features-list {
  text-align: left;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.features-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 1.05rem;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 12px;
}

[data-theme="dark"] .features-list li {
  color: #e2e8f0;
  border-bottom-color: rgba(148, 163, 184, 0.1);
}

.features-list li::before {
  content: '✓';
  color: #10b981;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.individual-price {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px dashed rgba(148, 163, 184, 0.3);
  color: #64748b;
  font-size: 0.95rem;
}

[data-theme="dark"] .individual-price {
  color: #94a3b8;
}

.coming-soon {
  background: rgba(139, 92, 246, 0.3);
  border: 3px solid rgba(139, 92, 246, 0.5);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .coming-soon {
  background: rgba(139, 92, 246, 0.4);
  border-color: rgba(139, 92, 246, 0.6);
}

.coming-soon h2 {
  color: white;
  margin-bottom: 16px;
  font-size: 1.8rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.coming-soon p {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 24px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-back {
  display: inline-block;
  padding: 14px 32px;
  background: white;
  color: #8b5cf6;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  color: #7c3aed;
}
