    :root {
        --teal-50: #f0fdfa;
        --teal-100: #ccfbf1;
        --teal-200: #99f6e4;
        --teal-300: #5eead4;
        --teal-400: #2dd4bf;
        --teal-500: #14b8a6;
        --teal-600: #0d9488;
        --teal-700: #0f766e;
        --amber-400: #fbbf24;
        --amber-500: #f59e0b;
        --amber-600: #d97706;
        --slate-900: #0f172a;
        --slate-800: #1e293b;
        --slate-700: #334155;
        --slate-600: #475569;
        --slate-400: #94a3b8;
        --slate-300: #cbd5e1;
    }

    /* Emoji images - inline with text */
    .emoji {
        display: inline-block;
        width: 1.2em;
        height: 1.2em;
        vertical-align: -0.15em;
        object-fit: contain;
    }

    /* Larger emoji in feature icons */
    .feature-icon .emoji,
    .pricing-icon .emoji,
    .story-feature-icon .emoji {
        width: 100%;
        height: 100%;
    }

    /* Hero background on body - same approach as child dashboard */
    body:has(.landing) {
        background-color: var(--slate-900);
        background-image: url('/images/hero_vertical.png');
        background-size: cover;
        background-position: center top;
        background-attachment: fixed;
    }

    @media (orientation: landscape) {
        body:has(.landing) {
            background-image: url('/images/hero_horizontal.png');
            background-position: center center;
        }
    }

    @media (min-width: 768px) {
        body:has(.landing) {
            background-image: url('/images/hero_horizontal.png');
            background-position: center center;
        }
    }

    .landing {
        font-family: 'Nunito', sans-serif;
        min-height: 100vh;
        overflow-x: hidden;
        position: relative;
    }

    /* Dark overlay for better text readability (below header) */
    .landing::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--slate-900);
        opacity: 0.55;
        z-index: 0;
        pointer-events: none;
    }

    /* Hero Section */
    .hero {
        position: relative;
        z-index: 2;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    /* Hero Mon Showcase */
    .hero-showcase {
        position: relative;
        width: 230px;
        height: 230px;
        margin: 0 auto 1.25rem;
    }

    @media (min-width: 640px) {
        .hero-showcase {
            width: 460px;
            height: 460px;
        }
    }

    .hero-showcase-item {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 0.6s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-showcase-item.active {
        opacity: 1;
    }

    .hero-showcase-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 8px 24px rgba(20, 184, 166, 0.35));
        animation: gentleFloat 3s ease-in-out infinite;
    }

    .hero-showcase-item.premium img {
        filter: drop-shadow(0 8px 24px rgba(245, 158, 11, 0.35));
    }

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

    /* Showcase dots */
    .hero-showcase-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 0.75rem;
    }

    .hero-showcase-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(148, 163, 184, 0.4);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .hero-showcase-dot:hover {
        background: rgba(148, 163, 184, 0.7);
    }

    .hero-showcase-dot.active {
        background: #14b8a6;
        transform: scale(1.3);
    }

    .hero-showcase-dot.premium.active {
        background: #f59e0b;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
        color: var(--teal-100);
        padding: 0.5rem 1rem;
        border-radius: 2rem;
        font-size: 0.8125rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 1.25rem;
        animation: fadeSlideUp 0.6s ease both;
        animation-delay: 0.1s;
        border: 1px solid var(--teal-500);
    }

    .hero-title {
        font-family: 'Fredoka', sans-serif;
        font-size: 3.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--teal-300), var(--teal-400), var(--teal-200));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.5rem;
        line-height: 1.1;
        animation: fadeSlideUp 0.6s ease both;
        animation-delay: 0.2s;
    }

    @media (min-width: 640px) {
        .hero-title { font-size: 5rem; }
    }

    .hero-tagline {
        font-family: 'Fredoka', sans-serif;
        font-size: 1.25rem;
        font-weight: 500;
        color: var(--amber-400);
        margin-bottom: 1.5rem;
        animation: fadeSlideUp 0.6s ease both;
        animation-delay: 0.3s;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        color: var(--slate-400);
        margin-bottom: 2.5rem;
        max-width: 26rem;
        line-height: 1.7;
        animation: fadeSlideUp 0.6s ease both;
        animation-delay: 0.4s;
    }

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

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 22rem;
        animation: fadeSlideUp 0.6s ease both;
        animation-delay: 0.5s;
    }

    @media (min-width: 480px) {
        .cta-buttons {
            flex-direction: row;
            max-width: 26rem;
        }
    }

    .cta-btn {
        flex: 1;
        padding: 1.125rem 1.5rem;
        border-radius: 1rem;
        font-family: 'Fredoka', sans-serif;
        font-weight: 600;
        font-size: 1.0625rem;
        text-decoration: none;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.625rem;
        cursor: pointer;
        border: none;
        position: relative;
        overflow: hidden;
    }

    .cta-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .cta-btn:hover::before {
        left: 100%;
    }

    .cta-btn-parent {
        background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
        color: white;
        box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    }

    .cta-btn-parent:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 12px 32px rgba(13, 148, 136, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    }

    .cta-btn-child {
        background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
        color: white;
        box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    }

    .cta-btn-child:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 12px 32px rgba(245, 158, 11, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    }

    .login-link {
        margin-top: 2rem;
        font-size: 0.9375rem;
        color: var(--slate-400);
        animation: fadeSlideUp 0.6s ease both;
        animation-delay: 0.6s;
    }

    .login-link a {
        color: var(--teal-400);
        font-weight: 700;
        text-decoration: none;
        transition: all 0.2s;
        position: relative;
    }

    .login-link a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--teal-400);
        transition: width 0.3s;
    }

    .login-link a:hover::after {
        width: 100%;
    }

    /* Features Section */
    .features-section {
        position: relative;
        z-index: 2;
        padding: 5rem 0;
    }

    @media (min-width: 768px) {
        .features-section {
            padding: 5rem 1.5rem;
        }
    }

    .features-container {
        position: relative;
        max-width: 56rem;
        margin: 0 auto;
        background: linear-gradient(165deg, rgba(13, 148, 136, 0.1), rgba(15, 23, 42, 0.9));
        border-radius: 2rem;
        border: 2px solid rgba(20, 184, 166, 0.2);
        padding: 2.5rem 1.5rem;
        overflow: hidden;
    }

    @media (min-width: 768px) {
        .features-container {
            padding: 3rem 2.5rem;
        }
    }

    /* Glass orbs for features */
    .features-container::before {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        background: var(--teal-500);
        border-radius: 50%;
        filter: blur(80px);
        top: -100px;
        right: -50px;
        opacity: 0.2;
        pointer-events: none;
    }

    .features-container::after {
        content: '';
        position: absolute;
        width: 150px;
        height: 150px;
        background: var(--amber-500);
        border-radius: 50%;
        filter: blur(60px);
        bottom: -80px;
        left: -30px;
        opacity: 0.15;
        pointer-events: none;
    }

    .section-header {
        text-align: center;
        margin-bottom: 2rem;
        position: relative;
        z-index: 1;
    }

    .section-label {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: var(--teal-400);
        margin-bottom: 0.75rem;
    }

    .section-title {
        font-family: 'Fredoka', sans-serif;
        font-size: 2rem;
        font-weight: 600;
        color: var(--slate-300);
        margin-bottom: 0.5rem;
    }

    @media (min-width: 640px) {
        .section-title { font-size: 2.5rem; }
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 48rem;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    @media (min-width: 640px) {
        .features-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
    }

    .feature-card {
        background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
        backdrop-filter: blur(8px);
        border-radius: 1.5rem;
        padding: 1.5rem 1rem;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        border: 1px solid rgba(148, 163, 184, 0.15);
        position: relative;
        overflow: hidden;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--teal-400), var(--teal-500));
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        border-color: rgba(20, 184, 166, 0.4);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(20, 184, 166, 0.1);
    }

    .feature-card:hover::before {
        transform: scaleX(1);
    }

    .feature-icon {
        font-size: 2.75rem;
        display: block;
        margin-bottom: 0.75rem;
        transition: transform 0.3s;
    }

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

    .feature-name {
        font-family: 'Fredoka', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--slate-300);
        margin-bottom: 0.25rem;
    }

    .feature-desc {
        font-size: 0.8125rem;
        color: var(--slate-400);
        line-height: 1.4;
    }

    /* How It Works Section */
    .how-section {
        position: relative;
        z-index: 2;
        padding: 5rem 0;
    }

    @media (min-width: 768px) {
        .how-section {
            padding: 5rem 1.5rem;
        }
    }

    .how-container {
        position: relative;
        max-width: 56rem;
        margin: 0 auto;
        background: linear-gradient(165deg, rgba(245, 158, 11, 0.08), rgba(15, 23, 42, 0.9));
        border-radius: 2rem;
        border: 2px solid rgba(245, 158, 11, 0.2);
        padding: 2.5rem 1.5rem;
        overflow: hidden;
    }

    @media (min-width: 768px) {
        .how-container {
            padding: 3rem 2.5rem;
        }
    }

    /* Glass orbs for how section */
    .how-container::before {
        content: '';
        position: absolute;
        width: 180px;
        height: 180px;
        background: var(--amber-500);
        border-radius: 50%;
        filter: blur(80px);
        top: -80px;
        left: -40px;
        opacity: 0.15;
        pointer-events: none;
    }

    .how-container::after {
        content: '';
        position: absolute;
        width: 160px;
        height: 160px;
        background: var(--teal-500);
        border-radius: 50%;
        filter: blur(60px);
        bottom: -60px;
        right: -40px;
        opacity: 0.15;
        pointer-events: none;
    }

    .steps-container {
        max-width: 48rem;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .step {
        display: flex;
        gap: 1.25rem;
        margin-bottom: 2rem;
        position: relative;
    }

    .step:last-child {
        margin-bottom: 0;
    }

    .step::before {
        content: '';
        position: absolute;
        left: 1.5rem;
        top: 3.5rem;
        bottom: -2rem;
        width: 3px;
        background: linear-gradient(180deg, var(--amber-500), transparent);
        border-radius: 2px;
    }

    .step:last-child::before {
        display: none;
    }

    .step-number {
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Fredoka', sans-serif;
        font-size: 1.25rem;
        font-weight: 700;
        color: white;
        flex-shrink: 0;
        box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
        position: relative;
        z-index: 1;
    }

    .step-content {
        flex: 1;
        padding-top: 0.25rem;
    }

    .step-title {
        font-family: 'Fredoka', sans-serif;
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--slate-300);
        margin-bottom: 0.375rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .step-desc {
        font-size: 0.9375rem;
        color: var(--slate-400);
        line-height: 1.6;
    }

    /* Mons Preview Section - Mystical Carousel */
    .mons-section {
        position: relative;
        z-index: 2;
        padding: 3rem 1rem 2.5rem;
        background: radial-gradient(ellipse at center bottom, rgba(13, 148, 136, 0.12) 0%, transparent 60%);
        overflow: hidden;
    }

    .mons-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 400px;
        height: 400px;
        transform: translate(-50%, -40%);
        background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

    /* Carousel Container */
    .mon-carousel {
        position: relative;
        height: 200px;
        max-width: 100%;
        margin: 0 auto;
        perspective: 1000px;
        touch-action: pan-y pinch-zoom;
    }

    @media (min-width: 640px) {
        .mon-carousel {
            height: 320px;
        }
    }

    /* The rotating stage */
    .mon-stage {
        position: absolute;
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Individual Mon Card */
    .mon-card {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 120px;
        height: 150px;
        margin-left: -60px;
        margin-top: -75px;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        transform-style: preserve-3d;
    }

    @media (min-width: 640px) {
        .mon-card {
            width: 200px;
            height: 250px;
            margin-left: -100px;
            margin-top: -125px;
        }
    }

    .mon-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        background: linear-gradient(165deg, #1e293b 0%, #0f172a 100%);
        border-radius: 1rem;
        border: 2px solid #334155;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        transition: all 0.4s ease;
    }

    .mon-card.active .mon-card-inner {
        border-color: #14b8a6;
        box-shadow:
            0 0 30px rgba(20, 184, 166, 0.3),
            0 0 60px rgba(20, 184, 166, 0.15),
            0 20px 50px rgba(0, 0, 0, 0.5);
    }

    .mon-card.premium.active .mon-card-inner {
        border-color: #f59e0b;
        box-shadow:
            0 0 30px rgba(245, 158, 11, 0.3),
            0 0 60px rgba(245, 158, 11, 0.15),
            0 20px 50px rgba(0, 0, 0, 0.5);
    }

    /* Magical glow ring for active card */
    .mon-card.active::before {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 1.25rem;
        background: conic-gradient(from 0deg, #14b8a6, #0d9488, #14b8a6);
        opacity: 0.6;
        animation: spin-glow 3s linear infinite;
        z-index: -1;
    }

    .mon-card.premium.active::before {
        background: conic-gradient(from 0deg, #f59e0b, #d97706, #f59e0b);
    }

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

    /* Mon Image */
    .mon-card-image {
        width: 100%;
        height: 70%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        background: linear-gradient(180deg, rgba(20, 184, 166, 0.05) 0%, transparent 100%);
    }

    .mon-card.premium .mon-card-image {
        background: linear-gradient(180deg, rgba(245, 158, 11, 0.05) 0%, transparent 100%);
    }

    .mon-card-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        transition: transform 0.4s ease;
    }

    .mon-card.active .mon-card-image img {
        animation: float-mon 2s ease-in-out infinite;
    }

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

    /* Mon Info */
    .mon-card-info {
        padding: 0.5rem 0.75rem;
        text-align: center;
        background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
    }

    .mon-card-name {
        font-family: 'Fredoka', system-ui, sans-serif;
        font-size: 0.9375rem;
        font-weight: 600;
        color: #f1f5f9;
        margin-bottom: 0.25rem;
        text-transform: capitalize;
    }

    .mon-card-tier {
        display: inline-block;
        font-size: 0.625rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 0.125rem 0.5rem;
        border-radius: 1rem;
        background: linear-gradient(135deg, #0d9488, #14b8a6);
        color: white;
    }

    .mon-card.premium .mon-card-tier {
        background: linear-gradient(135deg, #d97706, #f59e0b);
    }

    /* Navigation Dots */
    .mon-nav {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 0.75rem;
        flex-wrap: wrap;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .mon-nav-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #334155;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .mon-nav-dot:hover {
        background: #475569;
        transform: scale(1.2);
    }

    .mon-nav-dot.active {
        background: #14b8a6;
        box-shadow: 0 0 10px rgba(20, 184, 166, 0.5);
    }

    .mon-nav-dot.premium {
        background: #92400e;
    }

    .mon-nav-dot.premium:hover {
        background: #b45309;
    }

    .mon-nav-dot.premium.active {
        background: #f59e0b;
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    }

    /* Swipe hint */
    .swipe-hint {
        text-align: center;
        margin-top: 1rem;
        color: #64748b;
        font-size: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        animation: hint-pulse 2s ease-in-out infinite;
    }

    @keyframes hint-pulse {
        0%, 100% { opacity: 0.6; }
        50% { opacity: 1; }
    }

    .swipe-hint svg {
        animation: swipe-anim 1.5s ease-in-out infinite;
    }

    @keyframes swipe-anim {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(5px); }
    }

    /* Navigation Arrows */
    .mon-nav-arrows {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        padding: 0 0.5rem;
        pointer-events: none;
        z-index: 10;
    }

    @media (min-width: 640px) {
        .mon-nav-arrows {
            padding: 0 1rem;
        }
    }

    .mon-arrow {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(30, 41, 59, 0.9);
        border: 1px solid #475569;
        color: #94a3b8;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        pointer-events: auto;
        transition: all 0.3s ease;
        backdrop-filter: blur(4px);
    }

    .mon-arrow:hover {
        background: rgba(51, 65, 85, 0.95);
        color: #f1f5f9;
        border-color: #14b8a6;
        transform: scale(1.1);
    }

    .mon-arrow:active {
        transform: scale(0.95);
    }

    .mons-caption {
        text-align: center;
        margin-top: 0.75rem;
        color: var(--slate-400);
        font-size: 0.9375rem;
    }

    .mons-caption strong {
        color: var(--teal-400);
    }

    /* Pricing Section */
    .pricing-section {
        position: relative;
        z-index: 2;
        padding: 5rem 0;
    }

    @media (min-width: 768px) {
        .pricing-section {
            padding: 5rem 1.5rem;
        }
    }

    .pricing-container {
        position: relative;
        max-width: 56rem;
        margin: 0 auto;
        background: linear-gradient(165deg, rgba(100, 116, 139, 0.08), rgba(15, 23, 42, 0.9));
        border-radius: 2rem;
        border: 2px solid rgba(148, 163, 184, 0.15);
        padding: 2.5rem 1.5rem;
        overflow: hidden;
    }

    @media (min-width: 768px) {
        .pricing-container {
            padding: 3rem 2.5rem;
        }
    }

    /* Glass orbs for pricing */
    .pricing-container::before {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        background: var(--teal-500);
        border-radius: 50%;
        filter: blur(80px);
        top: -80px;
        left: 20%;
        opacity: 0.12;
        pointer-events: none;
    }

    .pricing-container::after {
        content: '';
        position: absolute;
        width: 180px;
        height: 180px;
        background: var(--amber-500);
        border-radius: 50%;
        filter: blur(70px);
        bottom: -60px;
        right: 20%;
        opacity: 0.15;
        pointer-events: none;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 48rem;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    @media (min-width: 768px) {
        .pricing-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    .pricing-card {
        background: linear-gradient(165deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.85));
        backdrop-filter: blur(8px);
        border-radius: 1.5rem;
        padding: 2rem;
        border: 1px solid rgba(148, 163, 184, 0.15);
        position: relative;
        transition: all 0.3s ease;
    }

    .pricing-card:hover {
        transform: translateY(-4px);
        border-color: rgba(20, 184, 166, 0.3);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(20, 184, 166, 0.08);
    }

    .pricing-card.premium {
        border-color: rgba(245, 158, 11, 0.4);
        background: linear-gradient(165deg, rgba(30, 41, 59, 0.8), rgba(26, 26, 46, 0.9));
    }

    .pricing-card.premium:hover {
        border-color: rgba(245, 158, 11, 0.5);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(245, 158, 11, 0.1);
    }

    .pricing-card.premium::before {
        content: '';
        position: absolute;
        top: 1rem;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--amber-400), var(--amber-500), var(--amber-400));
        border-radius: 1.5rem 1.5rem 0 0;
    }

    .pricing-badge {
        position: absolute;
        top: 0.25rem;
        right: 1.5rem;
        background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
        color: white;
        font-size: 0.6875rem;
        font-weight: 700;
        padding: 0.375rem 0.875rem;
        border-radius: 2rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .pricing-header {
        text-align: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--slate-600);
    }

    .pricing-icon {
        font-size: 2.5rem;
        display: block;
        margin-bottom: 0.5rem;
    }

    .pricing-name {
        font-family: 'Fredoka', sans-serif;
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--slate-300);
        margin-bottom: 0.5rem;
    }

    .pricing-card.premium .pricing-name {
        color: var(--amber-400);
    }

    .pricing-price {
        font-family: 'Fredoka', sans-serif;
        font-size: 2.5rem;
        font-weight: 700;
        color: white;
    }

    .pricing-price span {
        font-size: 1rem;
        font-weight: 500;
        color: var(--slate-400);
    }

    .pricing-note {
        font-size: 0.8125rem;
        color: var(--teal-400);
        margin-top: 0.25rem;
    }

    .pricing-features {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .pricing-features li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.625rem 0;
        color: var(--slate-300);
        font-size: 0.9375rem;
    }

    .pricing-features li span:first-child {
        flex-shrink: 0;
        font-size: 1.125rem;
    }

    .pricing-features li.disabled {
        color: var(--slate-500);
    }

    .pricing-features li.disabled span:first-child {
        opacity: 0.5;
    }

    /* Pricing CTA Buttons */
    .pricing-cta-btn {
        display: block;
        width: 100%;
        margin-top: 1.5rem;
        padding: 0.875rem 1.5rem;
        background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
        color: white;
        font-family: 'Nunito', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        border-radius: 0.75rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
    }

    .pricing-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
    }

    .pricing-cta-btn.premium {
        background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    }

    .pricing-cta-btn.premium:hover {
        box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    }

    .pricing-current-plan {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
        padding: 0.875rem 1.5rem;
        background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.1));
        color: var(--green-400);
        font-family: 'Nunito', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 0.75rem;
        border: 1px solid rgba(34, 197, 94, 0.3);
    }

    .pricing-current-plan span {
        font-size: 1.125rem;
    }

    .pricing-cta-section {
        margin-top: 2.5rem;
        text-align: center;
    }

    .pricing-main-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 2.5rem;
        background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
        color: white;
        font-family: 'Nunito', sans-serif;
        font-size: 1.125rem;
        font-weight: 700;
        text-decoration: none;
        border-radius: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(20, 184, 166, 0.35);
    }

    .pricing-main-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(20, 184, 166, 0.45);
    }

    /* Footer */
    .footer {
        position: relative;
        z-index: 2;
        padding: 3rem 1.5rem;
        text-align: center;
        border-top: 1px solid var(--slate-700);
    }

    .footer-logo {
        font-family: 'Fredoka', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--teal-400);
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .footer-text {
        color: var(--slate-400);
        font-size: 0.875rem;
    }

    .footer-link {
        display: inline-block;
        margin-top: 1rem;
        color: var(--slate-400);
        font-size: 0.8125rem;
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-link:hover {
        color: var(--teal-400);
    }

    /* PWA Install Banner */
    .pwa-section {
        position: relative;
        z-index: 2;
        padding: 3rem 0;
    }

    @media (min-width: 768px) {
        .pwa-section {
            padding: 3rem 1rem;
        }
    }

    .pwa-banner {
        position: relative;
        max-width: 56rem;
        margin: 0 auto;
        background: linear-gradient(165deg, rgba(13, 148, 136, 0.15), rgba(15, 23, 42, 0.95));
        border-radius: 2rem;
        border: 2px solid rgba(20, 184, 166, 0.3);
        overflow: hidden;
        padding: 2rem 1.5rem;
    }

    @media (min-width: 768px) {
        .pwa-banner {
            padding: 2.5rem 3rem;
        }
    }

    /* Floating decorative elements */
    .pwa-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
        pointer-events: none;
        opacity: 0.4;
    }

    .pwa-orb--1 {
        width: 200px;
        height: 200px;
        background: var(--teal-500);
        top: -100px;
        right: -50px;
        animation: orbFloat1 8s ease-in-out infinite;
    }

    .pwa-orb--2 {
        width: 150px;
        height: 150px;
        background: var(--amber-500);
        bottom: -80px;
        left: -30px;
        animation: orbFloat2 10s ease-in-out infinite;
    }

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

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

    /* Floating gems */
    .pwa-gems {
        position: absolute;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
    }

    .pwa-gem {
        position: absolute;
        width: 24px;
        height: 24px;
        background: url('/images/gem.png') center/contain no-repeat;
        opacity: 0.6;
        animation: gemFloat 4s ease-in-out infinite;
    }

    .pwa-gem--1 {
        top: 15%;
        left: 8%;
        animation-delay: 0s;
    }

    .pwa-gem--2 {
        top: 25%;
        right: 12%;
        width: 18px;
        height: 18px;
        animation-delay: 1s;
    }

    .pwa-gem--3 {
        bottom: 20%;
        left: 15%;
        width: 20px;
        height: 20px;
        animation-delay: 2s;
    }

    .pwa-gem--4 {
        bottom: 30%;
        right: 8%;
        animation-delay: 0.5s;
    }

    @keyframes gemFloat {
        0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
        50% { transform: translateY(-12px) rotate(15deg); opacity: 0.9; }
    }

    /* Sparkles */
    .pwa-sparkle {
        position: absolute;
        width: 8px;
        height: 8px;
        background: var(--amber-400);
        border-radius: 50%;
        animation: sparkle 2s ease-in-out infinite;
    }

    .pwa-sparkle--1 { top: 20%; left: 20%; animation-delay: 0s; }
    .pwa-sparkle--2 { top: 40%; right: 15%; animation-delay: 0.6s; width: 6px; height: 6px; }
    .pwa-sparkle--3 { bottom: 25%; left: 25%; animation-delay: 1.2s; width: 5px; height: 5px; }
    .pwa-sparkle--4 { top: 60%; right: 25%; animation-delay: 0.3s; }

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

    .pwa-content {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    @media (min-width: 768px) {
        .pwa-content {
            flex-direction: row;
            gap: 3rem;
        }
    }

    /* Phone mockup */
    .pwa-phone {
        position: relative;
        flex-shrink: 0;
    }

    .pwa-phone-glow {
        position: absolute;
        inset: -20px;
        background: radial-gradient(circle, rgba(20, 184, 166, 0.4) 0%, transparent 70%);
        animation: phoneGlow 3s ease-in-out infinite;
    }

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

    .pwa-phone-device {
        position: relative;
        width: 140px;
        height: 280px;
        background: linear-gradient(165deg, #1e293b, #0f172a);
        border-radius: 28px;
        border: 3px solid #334155;
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        overflow: hidden;
    }

    @media (min-width: 768px) {
        .pwa-phone-device {
            width: 160px;
            height: 320px;
            border-radius: 32px;
        }
    }

    .pwa-phone-notch {
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 20px;
        background: #0f172a;
        border-radius: 12px;
        z-index: 2;
    }

    .pwa-phone-screen {
        position: absolute;
        inset: 4px;
        background: linear-gradient(180deg, rgba(20, 184, 166, 0.1) 0%, rgba(15, 23, 42, 0.9) 100%);
        border-radius: 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 1rem 1rem;
        overflow: hidden;
    }

    .pwa-phone-mon {
        width: 100%;
        height: auto;
        max-height: 140px;
        object-fit: contain;
        filter: drop-shadow(0 4px 12px rgba(20, 184, 166, 0.4));
        animation: monBounce 2s ease-in-out infinite;
    }

    @media (min-width: 768px) {
        .pwa-phone-mon {
            max-height: 160px;
        }
    }

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

    .pwa-phone-gems {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        margin-top: 0.5rem;
        background: rgba(0, 0, 0, 0.4);
        padding: 0.25rem 0.75rem;
        border-radius: 1rem;
    }

    .pwa-phone-gems img {
        width: 16px;
        height: 16px;
    }

    .pwa-phone-gems span {
        font-family: 'Fredoka', sans-serif;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--amber-400);
    }

    /* Text content */
    .pwa-text {
        text-align: center;
        flex: 1;
    }

    @media (min-width: 768px) {
        .pwa-text {
            text-align: left;
        }
    }

    .pwa-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
        color: var(--teal-100);
        padding: 0.375rem 0.875rem;
        border-radius: 2rem;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 1rem;
        border: 1px solid var(--teal-500);
    }

    .pwa-title {
        font-family: 'Fredoka', sans-serif;
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--slate-300);
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    @media (min-width: 768px) {
        .pwa-title {
            font-size: 1.875rem;
        }
    }

    .pwa-title em {
        font-style: normal;
        background: linear-gradient(135deg, var(--teal-300), var(--teal-400));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .pwa-subtitle {
        font-size: 0.9375rem;
        color: var(--slate-400);
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    @media (min-width: 768px) {
        .pwa-subtitle {
            font-size: 1rem;
        }
    }

    /* Install button */
    .pwa-install-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.625rem;
        background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
        color: white;
        padding: 0.875rem 1.75rem;
        border-radius: 1rem;
        font-family: 'Fredoka', sans-serif;
        font-weight: 600;
        font-size: 1rem;
        border: none;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
        position: relative;
        overflow: hidden;
    }

    .pwa-install-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .pwa-install-btn:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 12px 32px rgba(13, 148, 136, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    }

    .pwa-install-btn:hover::before {
        left: 100%;
    }

    .pwa-install-btn svg {
        width: 20px;
        height: 20px;
    }

    /* iOS Instructions */
    .pwa-ios-steps {
        display: none;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(148, 163, 184, 0.2);
    }

    .pwa-ios-steps.show {
        display: block;
    }

    .pwa-ios-header {
        font-family: 'Fredoka', sans-serif;
        font-size: 0.9375rem;
        font-weight: 600;
        color: var(--slate-300);
        margin-bottom: 1rem;
        text-align: center;
    }

    .pwa-ios-list {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    @media (min-width: 480px) {
        .pwa-ios-list {
            gap: 0.75rem;
        }
    }

    .pwa-ios-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.375rem;
        background: rgba(0, 0, 0, 0.3);
        padding: 0.75rem 1rem;
        border-radius: 1rem;
        min-width: 70px;
    }

    .pwa-ios-step__number {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
        color: white;
        font-family: 'Fredoka', sans-serif;
        font-size: 0.6875rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pwa-ios-step__icon {
        font-size: 1.25rem;
        color: var(--teal-400);
    }

    .pwa-ios-step__label {
        font-size: 0.6875rem;
        color: var(--slate-400);
        text-align: center;
        line-height: 1.3;
    }

    .pwa-ios-arrow {
        color: var(--slate-600);
        font-size: 0.875rem;
    }

    /* Coming Soon Modal */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(8px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        padding: 1.5rem;
    }

    .modal-overlay.active {
        display: flex;
    }

    .modal {
        background: linear-gradient(145deg, var(--slate-800), var(--slate-700));
        border-radius: 2rem;
        padding: 2.5rem 2rem;
        max-width: 22rem;
        width: 100%;
        text-align: center;
        animation: modalPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;
    }

    .modal::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--teal-400), var(--amber-400), var(--teal-400));
        background-size: 200% 100%;
        animation: shimmer 2s linear infinite;
    }

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

    @keyframes modalPop {
        from { opacity: 0; transform: scale(0.8) translateY(20px); }
        to { opacity: 1; transform: scale(1) translateY(0); }
    }

    .modal-icon {
        font-size: 4.5rem;
        display: block;
        margin-bottom: 1rem;
        animation: iconWiggle 1s ease-in-out infinite;
    }

    @keyframes iconWiggle {
        0%, 100% { transform: rotate(-5deg); }
        50% { transform: rotate(5deg); }
    }

    .modal-title {
        font-family: 'Fredoka', sans-serif;
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .modal-title.teal { color: var(--teal-400); }
    .modal-title.amber { color: var(--amber-400); }

    .modal-subtitle {
        color: var(--slate-400);
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .modal-features {
        background: rgba(0,0,0,0.3);
        border-radius: 1.25rem;
        padding: 1rem 1.25rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .modal-feature {
        display: flex;
        align-items: center;
        gap: 0.875rem;
        padding: 0.75rem 0;
        color: var(--slate-300);
        font-size: 0.9375rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .modal-feature:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .modal-feature:first-child {
        padding-top: 0;
    }

    .modal-feature span:first-child {
        font-size: 1.375rem;
        flex-shrink: 0;
    }

    .modal-btn {
        width: 100%;
        padding: 1rem;
        border-radius: 1rem;
        font-family: 'Fredoka', sans-serif;
        font-weight: 600;
        font-size: 1.0625rem;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        border: none;
        color: white;
    }

    .modal-btn.teal {
        background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
        box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
    }

    .modal-btn.amber {
        background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
        box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
    }

    .modal-btn:hover {
        transform: translateY(-3px);
    }

    .modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
        border: none;
        color: var(--slate-400);
        font-size: 1.25rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
    }

    .modal-close:hover {
        background: rgba(255,255,255,0.2);
        color: white;
    }

    /* FAQ Section */
    .faq-section {
        position: relative;
        z-index: 2;
        padding: 5rem 0;
    }

    @media (min-width: 768px) {
        .faq-section {
            padding: 5rem 1.5rem;
        }
    }

    .faq-container {
        position: relative;
        max-width: 56rem;
        margin: 0 auto;
        background: linear-gradient(165deg, rgba(100, 116, 139, 0.08), rgba(15, 23, 42, 0.9));
        border-radius: 2rem;
        border: 2px solid rgba(148, 163, 184, 0.15);
        padding: 2.5rem 1.5rem;
        overflow: hidden;
    }

    @media (min-width: 768px) {
        .faq-container {
            padding: 3rem 2.5rem;
        }
    }

    .faq-list {
        max-width: 48rem;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .faq-item {
        background: linear-gradient(145deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8));
        border: 1px solid rgba(148, 163, 184, 0.15);
        border-radius: 1rem;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: rgba(20, 184, 166, 0.3);
    }

    .faq-item[open] {
        border-color: rgba(20, 184, 166, 0.4);
        background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-family: 'Fredoka', sans-serif;
        font-size: 1rem;
        font-weight: 500;
        color: var(--slate-300);
        cursor: pointer;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .faq-question::-webkit-details-marker {
        display: none;
    }

    .faq-question::after {
        content: '+';
        font-size: 1.5rem;
        font-weight: 400;
        color: var(--teal-400);
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .faq-item[open] .faq-question::after {
        transform: rotate(45deg);
    }

    .faq-question:hover {
        color: var(--teal-300);
    }

    .faq-answer {
        padding: 0 1.5rem 1.25rem;
        color: var(--slate-400);
        font-size: 0.9375rem;
        line-height: 1.7;
        margin: 0;
    }

    /* ===== Stories Section ===== */
    .stories-section {
        position: relative;
        z-index: 2;
        padding: 5rem 0;
    }

    @media (min-width: 768px) {
        .stories-section {
            padding: 5rem 1.5rem;
        }
    }

    .stories-container {
        position: relative;
        max-width: 56rem;
        margin: 0 auto;
        background: linear-gradient(165deg, rgba(139, 92, 246, 0.08), rgba(15, 23, 42, 0.9));
        border-radius: 2rem;
        border: 2px solid rgba(139, 92, 246, 0.2);
        padding: 2.5rem 1.5rem;
        overflow: hidden;
    }

    .stories-subtitle {
        color: var(--slate-400);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 1rem auto 0;
        line-height: 1.6;
    }

    .stories-preview {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        margin-top: 3rem;
    }

    @media (min-width: 768px) {
        .stories-preview {
            flex-direction: row;
            justify-content: center;
            align-items: flex-start;
            gap: 5rem;
        }
    }

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

    .story-book {
        position: relative;
        width: 200px;
        height: 250px;
        perspective: 1000px;
    }

    .book-cover {
        position: relative;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #5b21b6, #7c3aed);
        border-radius: 0.5rem 1rem 1rem 0.5rem;
        box-shadow:
            0 0 0 3px rgba(139, 92, 246, 0.3),
            0 15px 35px -10px rgba(139, 92, 246, 0.5),
            -5px 0 15px -5px rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: rotateY(-5deg);
        transition: transform 0.4s ease;
    }

    .story-book:hover .book-cover {
        transform: rotateY(5deg);
    }

    .book-cover::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 15px;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent);
        border-radius: 0.5rem 0 0 0.5rem;
    }

    .book-mon {
        width: 140px;
        height: 140px;
        object-fit: contain;
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
        animation: bookMonFloat 3s ease-in-out infinite;
    }

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

    .book-sparkles {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
        animation: sparkleGlow 2s ease-in-out infinite;
    }

    @keyframes sparkleGlow {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.6; transform: scale(1.2); }
    }

    .audio-waves {
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 4px;
        align-items: flex-end;
        height: 20px;
    }

    .audio-waves .wave {
        width: 4px;
        background: var(--teal-400);
        border-radius: 2px;
        animation: audioWave 1.2s ease-in-out infinite;
    }

    .audio-waves .wave:nth-child(1) { height: 8px; animation-delay: 0s; }
    .audio-waves .wave:nth-child(2) { height: 14px; animation-delay: 0.1s; }
    .audio-waves .wave:nth-child(3) { height: 20px; animation-delay: 0.2s; }
    .audio-waves .wave:nth-child(4) { height: 14px; animation-delay: 0.3s; }
    .audio-waves .wave:nth-child(5) { height: 8px; animation-delay: 0.4s; }

    @keyframes audioWave {
        0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
        50% { transform: scaleY(1); opacity: 1; }
    }

    .stories-features {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .story-feature {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.875rem 1.25rem;
        background: linear-gradient(145deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8));
        border: 1px solid rgba(148, 163, 184, 0.15);
        border-radius: 0.75rem;
        transition: all 0.3s ease;
    }

    .story-feature:hover {
        border-color: rgba(139, 92, 246, 0.4);
        background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
        transform: translateX(5px);
    }

    .story-feature-icon {
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .story-feature-text {
        font-family: 'Fredoka', sans-serif;
        font-size: 1rem;
        font-weight: 500;
        color: var(--slate-300);
    }

    /* ===== YouTube Subscribe (Glassy Style) ===== */
    .stories-youtube {
        margin-top: 2.5rem;
        display: flex;
        justify-content: center;
    }

    .youtube-glassy {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.5rem;
        background: linear-gradient(165deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.95));
        border: 1px solid rgba(255, 0, 0, 0.2);
        border-radius: 1rem;
        backdrop-filter: blur(8px);
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .youtube-glassy::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #ff0000, transparent);
        opacity: 0.8;
    }

    .youtube-glassy:hover {
        border-color: rgba(255, 0, 0, 0.4);
        box-shadow: 0 10px 40px rgba(255, 0, 0, 0.15);
        transform: translateY(-2px);
    }

    .youtube-icon {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ff0000;
    }

    .youtube-icon svg {
        width: 32px;
        height: 32px;
    }

    .youtube-content {
        display: flex;
        flex-direction: column;
        gap: 0.125rem;
    }

    .youtube-label {
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--slate-400);
    }

    .youtube-title {
        font-family: 'Fredoka', sans-serif;
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--slate-200);
    }

    .youtube-subscribe-btn {
        margin-left: auto;
        padding: 0.625rem 1.25rem;
        background: #ff0000;
        color: white;
        font-family: 'Fredoka', sans-serif;
        font-size: 0.9375rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
    }

    .youtube-subscribe-btn:hover {
        background: #cc0000;
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(255, 0, 0, 0.4);
    }

    @media (max-width: 480px) {
        .youtube-glassy {
            flex-wrap: wrap;
            justify-content: center;
            text-align: center;
            gap: 0.75rem;
            padding: 1rem;
        }

        .youtube-content {
            flex: 1 1 100%;
            align-items: center;
        }

        .youtube-subscribe-btn {
            margin-left: 0;
            width: 100%;
            text-align: center;
        }
    }

    /* ===== Our Story Teaser Section ===== */
    .story-teaser-section {
        position: relative;
        z-index: 2;
        padding: 5rem 0;
    }

    @media (min-width: 768px) {
        .story-teaser-section {
            padding: 5rem 1.5rem;
        }
    }

    .story-teaser-container {
        position: relative;
        max-width: 56rem;
        margin: 0 auto;
        background: linear-gradient(165deg, rgba(20, 184, 166, 0.08), rgba(15, 23, 42, 0.9));
        border-radius: 2rem;
        border: 2px solid rgba(20, 184, 166, 0.2);
        padding: 2rem 1.5rem;
        overflow: hidden;
    }

    @media (min-width: 768px) {
        .story-teaser-container {
            padding: 2.5rem;
        }
    }

    .story-teaser-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    @media (min-width: 768px) {
        .story-teaser-content {
            flex-direction: row;
            gap: 3rem;
        }
    }

    .story-teaser-image {
        flex-shrink: 0;
        width: 100%;
        max-width: 280px;
    }

    @media (min-width: 768px) {
        .story-teaser-image {
            width: 280px;
        }
    }

    .story-teaser-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        object-fit: cover;
        border-radius: 1rem;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        border: 2px solid rgba(20, 184, 166, 0.3);
        transition: transform 0.3s ease;
    }

    .story-teaser-image img:hover {
        transform: scale(1.02);
    }

    .story-teaser-text {
        flex: 1;
        text-align: center;
    }

    @media (min-width: 768px) {
        .story-teaser-text {
            text-align: left;
        }
    }

    .story-teaser-desc {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: var(--slate-400);
        margin-bottom: 1.5rem;
    }

    .story-teaser-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-family: 'Fredoka', sans-serif;
        font-size: 1.0625rem;
        font-weight: 600;
        color: var(--teal-400);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .story-teaser-link:hover {
        color: var(--teal-300);
        gap: 0.75rem;
    }

    .story-teaser-link span {
        transition: transform 0.3s ease;
    }

    .story-teaser-link:hover span {
        transform: translateX(4px);
    }
