/* ===================================
   BEE REAL - LANDING PAGE STYLES
   =================================== */

/* === ROOT VARIABLES === */
:root {
    /* Brand Colors */
    --color-primary: #FFD44E;
    --color-primary-dark: #F0B800; /* WCAG AA compliant on white */
    --color-secondary: #6BC1B5;
    --color-secondary-dark: #2D9A88; /* WCAG AA compliant */
    --color-accent: #B4E1FF;
    --color-white: #FFFFFF;
    --color-dark: #2C3E50;
    --color-text-dark: #1A252F; /* Even darker for better contrast */
    --color-gray: #5A6C7D; /* Darker gray for better contrast */
    --color-gray-light: #7F8C8D;
    --color-light-gray: #ECF0F1;
    
    /* Realm Colors */
    --color-kind: #FF6B9D;
    --color-active: #4A90E2;
    --color-creative: #9B59B6;
    --color-aware: #2ECC71;
    --color-brave: #E67E22;
    
    /* Typography */
    --font-primary: 'Nunito', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* === SKIP LINK (ACCESSIBILITY) === */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-text-dark);
    color: var(--color-white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 700;
}

.skip-link:focus {
    top: 0;
}

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

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn:focus {
    outline: 3px solid var(--color-secondary-dark);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-text-dark);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 212, 78, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 212, 78, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.btn-secondary:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-links a:not(.btn):hover {
    color: var(--color-secondary-dark);
}

.nav-links a:not(.btn):focus {
    outline: 2px solid var(--color-secondary-dark);
    outline-offset: 4px;
    border-radius: 4px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 999;
}

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

/* === FLOATING BEE CTA === */
.floating-bee {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--color-primary);
    color: var(--color-text-dark);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    transition: all var(--transition-normal);
    animation: float 3s ease-in-out infinite;
}

.floating-bee:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(255, 212, 78, 0.4);
}

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

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #B4E1FF 0%, #FFFFFF 100%);
    overflow: hidden;
}

.bee-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bee {
    position: absolute;
    width: 30px;
    height: 30px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="20" fill="%23FFD44E"/><ellipse cx="35" cy="40" rx="15" ry="10" fill="%23FFF" opacity="0.8"/><ellipse cx="65" cy="40" rx="15" ry="10" fill="%23FFF" opacity="0.8"/></svg>') no-repeat center;
    background-size: contain;
    animation: fly 20s linear infinite;
}

.bee-1 { animation-delay: 0s; top: 20%; }
.bee-2 { animation-delay: 7s; top: 50%; }
.bee-3 { animation-delay: 14s; top: 80%; }

@keyframes fly {
    0% { left: -50px; transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(10deg); }
    50% { transform: translateY(30px) rotate(-10deg); }
    75% { transform: translateY(-20px) rotate(5deg); }
    100% { left: calc(100% + 50px); transform: translateY(0) rotate(0deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.hero-subheadline {
    font-size: 1.3rem;
    color: var(--color-gray);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--color-secondary-dark);
    font-weight: 700;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Fade In Animations */
.fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.fade-in-delay-1 {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === HERO VISUAL ENHANCEMENTS === */
.hero-visual {
    position: relative;
}

/* Floating Elements Around Phone */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-emoji {
    position: absolute;
    font-size: 2rem;
    animation: floatAround 4s ease-in-out infinite;
    opacity: 0.8;
}

.emoji-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.emoji-2 {
    top: 30%;
    right: -10%;
    animation-delay: 1s;
}

.emoji-3 {
    bottom: 30%;
    left: -15%;
    animation-delay: 2s;
}

.emoji-4 {
    bottom: 15%;
    right: -15%;
    animation-delay: 3s;
}

.float-bee-small {
    position: absolute;
    font-size: 1.5rem;
    animation: beeFloat 5s ease-in-out infinite;
}

.bee-small-1 {
    top: 50%;
    left: -20%;
    animation-delay: 0.5s;
}

.bee-small-2 {
    top: 70%;
    right: -20%;
    animation-delay: 2.5s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -10px) rotate(5deg);
    }
    50% {
        transform: translate(0, -20px) rotate(0deg);
    }
    75% {
        transform: translate(-10px, -10px) rotate(-5deg);
    }
}

@keyframes beeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(-10deg);
    }
    50% {
        transform: translate(15px, -25px) rotate(10deg);
    }
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a1a1a 0%, var(--color-dark) 100%);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    margin: 0 auto;
    animation: phoneFloat 3s ease-in-out infinite;
}

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

.phone-notch {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: var(--color-dark);
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.phone-home-bar {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E3F2FD 0%, #FFFFFF 50%, #FFF9E6 100%);
    border-radius: 30px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

.phone-screen::-webkit-scrollbar {
    width: 0;
}

.app-preview {
    padding: 0.4rem 1.5rem 1.5rem;
}

/* Status Bar */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0 0.4rem;
    font-size: 0.7rem;
    color: var(--color-gray);
    font-weight: 600;
}

.status-icons {
    display: flex;
    gap: 0.5rem;
    font-size: 0.7rem;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    margin-top: 0.3rem;
}

.profile-badge {
    position: relative;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #FFE07F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(255, 212, 78, 0.4);
    animation: profilePulse 2s ease-in-out infinite;
}

@keyframes profilePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.profile-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.tokens {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.token-icon {
    color: var(--color-primary);
    animation: coinSpin 3s linear infinite;
}

@keyframes coinSpin {
    0%, 100% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
}

.token-count-display {
    color: var(--color-text-dark);
}

.token-sparkle {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.8rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Streak Display */
.streak-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: var(--color-white);
    padding: 0.6rem 0.9rem;
    border-radius: 15px;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    animation: streakGlow 2s ease-in-out infinite;
}

@keyframes streakGlow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5);
    }
}

.streak-flame {
    font-size: 1.1rem;
    animation: flameFlicker 1s ease-in-out infinite;
}

@keyframes flameFlicker {
    0%, 100% {
        transform: scale(1) rotate(-5deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

/* Challenge Section */
.preview-challenge {
    background: var(--color-white);
    padding: 0.85rem;
    border-radius: 18px;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.preview-challenge h3 {
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
    color: var(--color-gray);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.challenge-card {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem;
    background: linear-gradient(135deg, #D81B60 0%, #EC407A 100%);
    border-radius: 14px;
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(216, 27, 96, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.challenge-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 27, 96, 0.4);
}

.challenge-icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.challenge-icon-wrapper i {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.challenge-text {
    flex: 1;
    text-align: left;
}

.challenge-title {
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.challenge-desc {
    font-size: 0.8rem;
    opacity: 0.95;
    font-weight: 400;
}

.challenge-arrow {
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.challenge-card:hover .challenge-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Progress Section */
.preview-progress {
    text-align: center;
    margin-bottom: 0.75rem;
}

.progress-container {
    position: relative;
    display: inline-block;
}

.progress-circle {
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: var(--color-light-gray);
    stroke-width: 8;
}

.progress-bar {
    fill: none;
    stroke: url(#progressGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 135.717;
    animation: progressAnimation 2s ease-out forwards;
}

@keyframes progressAnimation {
    from {
        stroke-dashoffset: 339.292;
    }
    to {
        stroke-dashoffset: 135.717;
    }
}

.progress-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-day {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--color-secondary-dark);
    line-height: 1;
}

.progress-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gray);
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Realm Badges */
.realm-badges {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0 0.5rem;
}

.realm-badge {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    animation: badgePop 0.6s ease-out backwards;
}

.realm-badge:nth-child(1) { animation-delay: 0.1s; }
.realm-badge:nth-child(2) { animation-delay: 0.2s; }
.realm-badge:nth-child(3) { animation-delay: 0.3s; }
.realm-badge:nth-child(4) { animation-delay: 0.4s; }
.realm-badge:nth-child(5) { animation-delay: 0.5s; }

@keyframes badgePop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    70% {
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.realm-badge:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.badge-kind {
    background: linear-gradient(135deg, #D81B60 0%, #FF6B9D 100%);
}

.badge-active {
    background: linear-gradient(135deg, #1976D2 0%, #4A90E2 100%);
}

.badge-creative {
    background: linear-gradient(135deg, #7B1FA2 0%, #9B59B6 100%);
}

.badge-aware {
    background: linear-gradient(135deg, #388E3C 0%, #2ECC71 100%);
}

.badge-brave {
    background: linear-gradient(135deg, #D84315 0%, #E67E22 100%);
}

.bee-trail {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 100"><path d="M0 50 Q 300 20, 600 50 T 1200 50" stroke="%23FFD44E" stroke-width="2" fill="none" stroke-dasharray="10,5" opacity="0.3"/></svg>') repeat-x;
    background-size: auto 100%;
}

/* === SECTION SPACING & CONSISTENCY === */
section {
    position: relative;
}

section:not(.hero) {
    padding: 5rem 0;
}

section h2 {
    margin-bottom: 1rem;
}

section .section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.8;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.section-header-center .section-intro {
    font-size: 1.2rem;
}

/* === PROBLEM + SOLUTION === */
.problem-solution {
    padding: 5rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFB 100%);
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.problem-side {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.problem-side:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

.problem-side h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.problem-side h2::before {
    content: '⚠️';
    font-size: 2rem;
    animation: attention 2s ease-in-out infinite;
}

@keyframes attention {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.problem-list {
    list-style: none;
}

.problem-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.problem-list li:last-child {
    margin-bottom: 0;
}

.problem-list i {
    font-size: 2rem;
    color: var(--color-gray);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.solution-side {
    background: linear-gradient(135deg, var(--color-secondary-dark) 0%, var(--color-secondary) 100%);
    padding: 2.5rem;
    border-radius: 24px;
    color: var(--color-white);
    box-shadow: 0 8px 32px rgba(45, 154, 136, 0.25);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.solution-side:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(45, 154, 136, 0.35);
}

.solution-side::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.solution-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.solution-side h2::before {
    content: '✨';
    font-size: 2rem;
    animation: sparkleRotate 3s ease-in-out infinite;
}

@keyframes sparkleRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.15); }
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFE5E5 0%, #FFD5D5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #C62828;
    box-shadow: 0 4px 16px rgba(198, 40, 40, 0.15);
    flex-shrink: 0;
    animation: problemPulse 3s ease-in-out infinite;
}

@keyframes problemPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(198, 40, 40, 0.15); }
    50% { transform: scale(1.05); box-shadow: 0 6px 24px rgba(198, 40, 40, 0.25); }
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--color-secondary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    animation: solutionGlow 3s ease-in-out infinite;
}

@keyframes solutionGlow {
    0%, 100% { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15); }
    50% { box-shadow: 0 4px 24px rgba(107, 193, 181, 0.4), 0 0 40px rgba(107, 193, 181, 0.2); }
}

.solution-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solution-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.solution-content p {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.transformation-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    margin-top: auto;
}

.transformation-visual span {
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.transformation-visual i {
    font-size: 1.5rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* === MISSION SECTION === */
.mission {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%236BC1B5" width="1200" height="800"/></svg>');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    text-align: center;
}

.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 154, 136, 0.95) 0%, rgba(107, 193, 181, 0.95) 100%);
}

.mission-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.mission-text {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.mission-belief {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 500;
}

/* === WHAT IS BEE REAL === */
.what-is {
    padding: 5rem 0;
    background: var(--color-white);
}

.what-is h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
}

.what-is-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.what-is-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.what-is-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-gray);
}

.what-is-text .btn {
    margin-top: 1rem;
}

.feature-phone {
    width: 280px;
    height: 560px;
    background: var(--color-dark);
    border-radius: 35px;
    padding: 12px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.feature-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD44E 0%, #FFF 100%);
    border-radius: 25px;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.progress-tracker {
    display: flex;
    gap: 1rem;
}

.day-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all var(--transition-normal);
}

.day-badge.active {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: scale(1.1);
}

.badge-showcase {
    display: flex;
    gap: 1rem;
}

.badge {
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    animation: pulse 2s ease-in-out infinite;
}

.badge:nth-child(2) {
    animation-delay: 0.3s;
}

.badge:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.token-counter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.token-counter i {
    color: var(--color-primary);
}

/* === HOW IT WORKS === */
.how-it-works {
    padding: 5rem 0;
    background: linear-gradient(180deg, #F8FAFB 0%, #FFFFFF 100%);
}

.how-it-works > .container > h2 {
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.how-it-works h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.timeline {
    position: relative;
}

.bee-path {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 200px;
    opacity: 0.3;
    pointer-events: none;
}

.timeline-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.step {
    flex: 0 1 180px;
    min-width: 160px;
    max-width: 220px;
    text-align: center;
    padding: 2rem 1rem;
    background: var(--color-white);
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-normal);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--color-primary);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #FFE07F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--color-text-dark);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

/* === FIVE REALMS === */
.five-realms {
    padding: 5rem 0;
    background: var(--color-white);
}

.five-realms h2 {
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.five-realms h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

/* Section Dividers */
.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* Card Enhancements */
.card-hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover-lift:hover {
    transform: translateY(-8px);
}

.realms-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.realm-card {
    flex: 0 1 320px;
    width: 100%;
    min-width: 280px;
    max-width: 400px;
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border-top: 6px solid;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.realm-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.realm-kind { border-color: var(--color-kind); }
.realm-active { border-color: var(--color-active); }
.realm-creative { border-color: var(--color-creative); }
.realm-aware { border-color: var(--color-aware); }
.realm-brave { border-color: var(--color-brave); }

.realm-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.realm-kind .realm-icon { background: var(--color-kind); }
.realm-active .realm-icon { background: var(--color-active); }
.realm-creative .realm-icon { background: var(--color-creative); }
.realm-aware .realm-icon { background: var(--color-aware); }
.realm-brave .realm-icon { background: var(--color-brave); }

.realm-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.realm-subtitle {
    font-size: 1rem;
    color: var(--color-gray);
    font-style: italic;
    margin-bottom: 1rem;
}

.realm-description {
    color: var(--color-gray);
    line-height: 1.7;
}

.realm-bee {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="20" fill="%23FFD44E"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.3;
}

/* === GROW TOKEN SYSTEM === */
.grow-token-system {
    padding: 5rem 0;
    background: linear-gradient(135deg, #E8F5FF 0%, #FFFFFF 50%, #FFF9E6 100%);
    position: relative;
    overflow: hidden;
}

.grow-token-system::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23FFD44E" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    pointer-events: none;
}

.grow-token-system h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.token-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.token-loop {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.token-node {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.token-node i {
    font-size: 2rem;
}

.node-challenge {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-active);
}

.node-reflection {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: var(--color-creative);
}

.node-reward {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-primary);
}

.node-contribution {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: var(--color-aware);
}

.token-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.grow-token {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #FFE07F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-text-dark);
    box-shadow: 0 0 30px rgba(255, 212, 78, 0.5);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 212, 78, 0.5); }
    50% { box-shadow: 0 0 50px rgba(255, 212, 78, 0.8); }
}

.token-benefits h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.token-benefits > p {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-normal);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--color-secondary-dark);
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--color-gray);
}

/* === SCIENCE SECTION === */
.science {
    padding: 5rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFB 100%);
}

.science h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.science-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.brain-illustration {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brain-illustration i {
    font-size: 12rem;
    color: var(--color-secondary);
    opacity: 0.9;
}

.brain-particle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: particle-float 3s ease-in-out infinite;
}

.brain-particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.brain-particle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.brain-particle-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-20px); opacity: 1; }
}

.science-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.science-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.science-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #8FD9CE 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-white);
    flex-shrink: 0;
}

.science-point h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.science-point p {
    color: var(--color-gray);
    line-height: 1.7;
}

.science-quote {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #F8FAFB 0%, #FFFFFF 100%);
    border-radius: 24px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--color-primary);
    border-left-width: 6px;
}

.science-quote .fa-quote-left {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.5;
}

.science-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text-dark);
    font-weight: 500;
    line-height: 1.8;
}

/* === FOR PARENTS === */
.for-parents {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2D9A88 0%, #6BC1B5 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.for-parents::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.parents-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.parents-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.safety-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.safety-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-normal);
}

.safety-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.safety-feature i {
    font-size: 2rem;
    flex-shrink: 0;
}

.safety-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.safety-feature p {
    font-weight: 400;
    line-height: 1.6;
}

.parents-tagline {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 500;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}



.dashboard-preview {
    background: var(--color-white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    color: var(--color-dark);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-light-gray);
}

.dashboard-header h4 {
    font-size: 1.5rem;
    color: var(--color-secondary-dark);
    font-weight: 700;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: var(--color-light-gray);
    border-radius: 12px;
}

.stat i {
    font-size: 1.5rem;
    color: var(--color-secondary-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-gray);
}

.dashboard-realms {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.realm-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.realm-name {
    font-weight: 600;
    min-width: 120px;
    font-size: 0.9rem;
}

.realm-bar {
    flex: 1;
    height: 20px;
    background: var(--color-light-gray);
    border-radius: 10px;
    overflow: hidden;
}

.realm-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    border-radius: 10px;
    transition: width 1s ease;
}

/* === TESTIMONIALS === */
.testimonials {
    position: relative;
    padding: 5rem 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23B4E1FF" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
}

.testimonials + .app-store-banner {
    margin-top: 0;
}

.testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(180, 225, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.testimonial-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-text-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 1.2rem;
    color: var(--color-gray);
    font-weight: 600;
}

/* === APP STORE BANNER === */
.app-store-banner {
    position: relative;
    padding: 0;
    background: linear-gradient(135deg, #1a252f 0%, var(--color-dark) 100%);
    overflow: hidden;
}

.app-store-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 212, 78, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(107, 193, 181, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-text h2 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.banner-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.btn-get-notified {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #FFE07F 100%);
    color: var(--color-text-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 212, 78, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-get-notified:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 212, 78, 0.6);
    background: linear-gradient(135deg, #FFE07F 0%, var(--color-primary) 100%);
}

.btn-get-notified i {
    font-size: 1.2rem;
    animation: bellRing 2s ease-in-out infinite;
}

@keyframes bellRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #FFE07F 100%);
    color: var(--color-text-dark);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 16px rgba(255, 212, 78, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(255, 212, 78, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 24px rgba(255, 212, 78, 0.5);
    }
}

.coming-soon-badge i {
    font-size: 1rem;
    animation: rocketLaunch 2s ease-in-out infinite;
}

@keyframes rocketLaunch {
    0%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    50% {
        transform: translateY(-4px) rotate(-45deg);
    }
}

.banner-stores {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-white);
    color: var(--color-text-dark);
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    min-width: 180px;
}

.store-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-color: var(--color-primary);
}

.store-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apple-store .store-icon {
    color: #000000;
}

.google-play .store-icon {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 25%, #FBBC05 50%, #EA4335 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.store-label {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-gray);
    letter-spacing: 0.5px;
}

.store-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

/* Store Button Specific Styles */
.apple-store:hover {
    background: #000000;
}

.apple-store:hover .store-icon {
    color: var(--color-white);
}

.apple-store:hover .store-label,
.apple-store:hover .store-name {
    color: var(--color-white);
}

.google-play:hover {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1) 0%, rgba(52, 168, 83, 0.1) 100%);
}

/* === CTA SECTION === */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #FFE07F 100%);
    overflow: hidden;
}

.hive-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
}

.hexagon {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--color-dark);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: hexFloat 6s ease-in-out infinite;
}

.hex-1 { top: 10%; left: 10%; animation-delay: 0s; }
.hex-2 { top: 30%; right: 15%; animation-delay: 1s; }
.hex-3 { bottom: 20%; left: 20%; animation-delay: 2s; }
.hex-4 { top: 50%; right: 30%; animation-delay: 3s; }
.hex-5 { bottom: 30%; right: 10%; animation-delay: 4s; }
.hex-6 { top: 70%; left: 40%; animation-delay: 5s; }

@keyframes hexFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-dark);
    font-weight: 600;
    margin-bottom: 3rem;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    text-align: left;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all var(--transition-normal);
}

.cta-benefit:hover {
    background: rgba(255, 255, 255, 0.75);
    transform: translateX(5px);
}

.cta-benefit i {
    font-size: 1.5rem;
    color: var(--color-secondary-dark);
}

.cta-benefit span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: var(--font-primary);
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.form-group input:focus {
    outline: 3px solid var(--color-secondary-dark);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(45, 154, 136, 0.2);
}

.waitlist-form .btn {
    margin-top: 1rem;
}

.form-success {
    display: none;
    padding: 2rem;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 20px;
    text-align: center;
    margin-bottom: 2rem;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.form-success i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.form-success p {
    font-size: 1.2rem;
    font-weight: 600;
}

.alternative-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.text-link {
    color: var(--color-text-dark);
    font-weight: 700;
    text-decoration: underline;
    transition: opacity var(--transition-fast);
}

.text-link:hover {
    opacity: 0.7;
}

/* === FOOTER === */
.footer {
    background: linear-gradient(180deg, #1a252f 0%, var(--color-dark) 100%);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.footer-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact a {
    color: var(--color-primary-dark);
    transition: opacity var(--transition-fast);
    font-weight: 600;
}

.footer-contact a:hover {
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-weight: 700;
}

.footer-column a {
    display: block;
    margin-bottom: 0.75rem;
    opacity: 0.9;
    transition: all var(--transition-fast);
    font-weight: 400;
}

.footer-column a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-column a:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 2px;
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition-normal);
    padding: 0;
    margin: 0;
}

.social-links a:hover {
    background: var(--color-primary);
    color: var(--color-text-dark);
    transform: translateY(-3px);
    padding: 0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    opacity: 0.9;
    font-weight: 400;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    opacity: 0.9;
    transition: opacity var(--transition-fast);
    text-decoration: underline;
}

.footer-legal a:hover {
    opacity: 1;
}

.footer-legal a:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 2px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .step {
        flex: 0 1 260px;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 1.5rem;
    }
    
    /* Navigation */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero - Improved Mobile Layout */
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
        background: linear-gradient(180deg, #B4E1FF 0%, #FFFFFF 100%);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 0;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 320px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-visual {
        order: -1;
        display: flex;
        justify-content: center;
    }
    
    /* Hide floating elements on mobile */
    .floating-elements {
        display: none;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .phone-notch {
        width: 100px;
        height: 20px;
    }
    
    .app-preview {
        padding: 0.5rem 1rem 1.5rem;
    }
    
    .status-bar {
        font-size: 0.65rem;
        padding: 0.5rem 0 0.25rem;
    }
    
    .preview-header {
        margin-bottom: 0.75rem;
        margin-top: 0.25rem;
    }
    
    .profile-badge {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .tokens {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .token-sparkle {
        font-size: 0.6rem;
    }
    
    .streak-display {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .streak-flame {
        font-size: 1rem;
    }
    
    .preview-challenge {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .preview-challenge h3 {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
    }
    
    .challenge-card {
        padding: 0.75rem;
        gap: 0.6rem;
    }
    
    .challenge-icon-wrapper {
        width: 35px;
        height: 35px;
    }
    
    .challenge-icon-wrapper i {
        font-size: 1.1rem;
    }
    
    .challenge-title {
        font-size: 0.85rem;
    }
    
    .challenge-desc {
        font-size: 0.75rem;
    }
    
    .progress-circle {
        width: 100px;
        height: 100px;
    }
    
    .progress-day {
        font-size: 1.75rem;
    }
    
    .progress-label {
        font-size: 0.7rem;
    }
    
    .realm-badges {
        gap: 0.35rem;
        padding: 0 0.25rem;
    }
    
    .realm-badge {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    /* Sections */
    .split-content,
    .what-is-content,
    .token-flow,
    .science-content,
    .parents-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        flex: none;
        width: 100%;
        max-width: 400px;
    }
    
    .realms-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .realm-card {
        max-width: 100%;
    }
    
    .token-loop {
        width: 300px;
        height: 300px;
    }
    
    .token-node {
        width: 80px;
        height: 80px;
        font-size: 0.75rem;
    }
    
    .token-node i {
        font-size: 1.5rem;
    }
    
    .grow-token {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Typography */
    h2 {
        font-size: 2rem !important;
    }
    
    .mission-content h2,
    .cta-content h2 {
        font-size: 2.2rem !important;
    }
    
    /* Section Spacing */
    section:not(.hero) {
        padding: 3rem 0 !important;
    }
    
    .mission,
    .for-parents,
    .cta-section {
        padding: 4rem 0 !important;
    }
    
    .app-store-banner {
        padding: 0 !important;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 0;
        text-align: center;
    }
    
    .banner-text h2 {
        font-size: 1.75rem;
    }
    
    .banner-text p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .coming-soon-badge {
        justify-content: center;
    }
    
    .btn-get-notified {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .banner-stores {
        justify-content: center;
        gap: 1rem;
    }
    
    .store-button {
        min-width: 160px;
    }
    
    .section-header-center h2 {
        font-size: 2rem !important;
    }
    
    .section-intro {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Floating Bee */
    /* Bee Animations - Hide on mobile for cleaner look */
    .bee-animation {
        display: none;
    }
    
    .floating-bee {
        bottom: 20px;
        right: 20px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .floating-bee span {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Hero - Small Mobile Optimization */
    .hero {
        padding: 70px 0 50px;
    }
    
    .hero-content {
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-subheadline {
        font-size: 0.95rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
        padding: 12px;
    }
    
    .phone-notch {
        width: 90px;
        height: 18px;
    }
    
    .app-preview {
        padding: 0.4rem 0.875rem 1.25rem;
    }
    
    .status-bar {
        font-size: 0.6rem;
    }
    
    .preview-header {
        gap: 0.4rem;
        margin-bottom: 0.6rem;
    }
    
    .profile-badge {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .tokens {
        font-size: 0.75rem;
        padding: 0.35rem 0.6rem;
    }
    
    .token-sparkle {
        font-size: 0.55rem;
        top: -3px;
        right: -3px;
    }
    
    .streak-display {
        font-size: 0.75rem;
        padding: 0.5rem 0.65rem;
        margin-bottom: 0.6rem;
    }
    
    .streak-flame {
        font-size: 0.9rem;
    }
    
    .preview-challenge {
        padding: 0.65rem;
        margin-bottom: 0.6rem;
    }
    
    .preview-challenge h3 {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    .challenge-card {
        padding: 0.65rem;
        gap: 0.5rem;
    }
    
    .challenge-icon-wrapper {
        width: 30px;
        height: 30px;
    }
    
    .challenge-icon-wrapper i {
        font-size: 1rem;
    }
    
    .challenge-title {
        font-size: 0.8rem;
    }
    
    .challenge-desc {
        font-size: 0.7rem;
    }
    
    .challenge-arrow {
        font-size: 0.75rem;
    }
    
    .progress-circle {
        width: 85px;
        height: 85px;
    }
    
    .progress-bg,
    .progress-bar {
        stroke-width: 6;
    }
    
    .progress-day {
        font-size: 1.5rem;
    }
    
    .progress-label {
        font-size: 0.65rem;
    }
    
    .realm-badges {
        gap: 0.25rem;
        padding: 0 0.15rem;
    }
    
    .realm-badge {
        width: 33px;
        height: 33px;
        font-size: 0.85rem;
    }
    
    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .feature-phone {
        width: 220px;
        height: 440px;
    }
    
    .testimonial-text {
        font-size: 1.3rem;
    }
    
    .banner-content {
        padding: 2rem 0;
    }
    
    .banner-text h2 {
        font-size: 1.5rem;
    }
    
    .btn-get-notified {
        width: 100%;
        max-width: 280px;
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .banner-stores {
        flex-direction: column;
        width: 100%;
    }
    
    .store-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        justify-content: center;
    }
}

/* === SCROLL ANIMATIONS === */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }