/* WeAreArt.AI — Homepage Styles */
/* https://weareart.ai */

:root {
            --coral: #FF6B5A;
            --coral-deep: #E8523F;
            --sunshine: #FFD166;
            --sunshine-light: #FFF0C8;
            --mint: #00D4AA;
            --mint-deep: #00B894;
            --sky: #74B9FF;
            --lavender: #A29BFE;
            --ink: #2D2D3A;
            --ink-light: #5A5A6E;
            --cream: #FEFCF8;
            --warm-white: #FFF9F0;
            --card-shadow: 0 8px 40px rgba(45,45,58,0.08);
            --card-shadow-hover: 0 16px 60px rgba(45,45,58,0.14);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Bricolage Grotesque', sans-serif;
            color: var(--ink);
            background: var(--cream);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .handwritten {
            font-family: 'Caveat', cursive;
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 18px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        nav.scrolled {
            background: rgba(254,252,248,0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 12px 40px;
            box-shadow: 0 1px 30px rgba(45,45,58,0.06);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--ink);
        }

        .nav-logo-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            transform: rotate(-4deg);
            box-shadow: 0 4px 16px rgba(255,107,90,0.3);
            overflow: hidden;
        }

        .nav-logo-icon img {
            width: 100%;
            height: 100%;
            display: block;
        }

        .nav-logo-text {
            font-weight: 700;
            font-size: 1.15rem;
            letter-spacing: -0.02em;
        }

        .nav-logo-text span {
            color: var(--coral);
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--ink-light);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--coral);
            border-radius: 2px;
            transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

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

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--ink) !important;
            color: white !important;
            padding: 10px 24px;
            border-radius: 100px;
            font-weight: 600 !important;
            transition: transform 0.3s, box-shadow 0.3s !important;
        }

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

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(45,45,58,0.2);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 36px;
            height: 36px;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--ink);
            border-radius: 2px;
            transition: all 0.3s;
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 120px 40px 80px;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg-gradient {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 70% 50% at 20% 50%, rgba(255,209,102,0.15) 0%, transparent 70%),
                radial-gradient(ellipse 50% 60% at 80% 30%, rgba(255,107,90,0.1) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 60% 80%, rgba(0,212,170,0.08) 0%, transparent 70%);
        }

        /* Floating drawing elements */
        .hero-doodle {
            position: absolute;
            opacity: 0.08;
            z-index: 0;
            animation: doodleFloat 8s ease-in-out infinite;
        }

        .hero-doodle:nth-child(2) { animation-delay: -2s; }
        .hero-doodle:nth-child(3) { animation-delay: -4s; }
        .hero-doodle:nth-child(4) { animation-delay: -6s; }

        @keyframes doodleFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(3deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1300px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-text {
            animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--warm-white);
            border: 1.5px solid rgba(255,107,90,0.15);
            padding: 8px 18px;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--coral);
            margin-bottom: 28px;
            animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--mint);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

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

        .hero h1 {
            font-size: clamp(3rem, 5.5vw, 4.5rem);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.03em;
            margin-bottom: 10px;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--coral) 0%, var(--sunshine) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-tagline {
            font-family: 'Caveat', cursive;
            font-size: 1.8rem;
            color: var(--coral);
            margin-bottom: 24px;
            opacity: 0.9;
            animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
        }

        .hero-description {
            font-size: 1.15rem;
            line-height: 1.75;
            color: var(--ink-light);
            max-width: 520px;
            margin-bottom: 40px;
            animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--ink);
            color: white;
            text-decoration: none;
            padding: 16px 32px;
            border-radius: 16px;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 8px 30px rgba(45,45,58,0.15);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(45,45,58,0.25);
        }

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

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--ink-light);
            text-decoration: none;
            padding: 16px 24px;
            border-radius: 16px;
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid rgba(45,45,58,0.1);
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            border-color: var(--mint);
            color: var(--mint-deep);
        }

        /* Hero visual — phone mockup area */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
        }

        .phone-mockup {
            position: relative;
            width: 300px;
            height: 600px;
            background: var(--ink);
            border-radius: 44px;
            padding: 12px;
            box-shadow:
                0 40px 80px rgba(45,45,58,0.2),
                0 0 0 1px rgba(255,255,255,0.1) inset;
            transform: rotate(2deg);
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: linear-gradient(160deg, #FFF5E8 0%, #FFE8D6 30%, #FFDDC8 100%);
            border-radius: 34px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .phone-notch {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 28px;
            background: var(--ink);
            border-radius: 0 0 20px 20px;
        }

        .phone-art {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            padding: 40px 24px 24px;
        }

        .phone-art-title {
            font-family: 'Caveat', cursive;
            font-size: 1.5rem;
            color: var(--coral);
        }

        /* Drawing step animation on phone */
        .drawing-canvas {
            width: 200px;
            height: 200px;
            position: relative;
        }

        .drawing-canvas svg {
            width: 100%;
            height: 100%;
        }

        .draw-path {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: drawLine 4s ease-in-out infinite;
        }

        @keyframes drawLine {
            0% { stroke-dashoffset: 1000; opacity: 0.3; }
            40% { stroke-dashoffset: 0; opacity: 1; }
            70% { stroke-dashoffset: 0; opacity: 1; }
            100% { stroke-dashoffset: 1000; opacity: 0.3; }
        }

        .phone-steps {
            display: flex;
            gap: 8px;
            margin-top: 8px;
        }

        .phone-step-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,107,90,0.2);
        }

        .phone-step-dot.active {
            background: var(--coral);
            animation: pulse 2s ease-in-out infinite;
        }

        /* Floating elements around phone */
        .float-element {
            position: absolute;
            border-radius: 16px;
            padding: 12px 18px;
            font-weight: 600;
            font-size: 0.85rem;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            animation: floatBounce 6s ease-in-out infinite;
        }

        .float-element:nth-child(2) { animation-delay: -2s; }
        .float-element:nth-child(3) { animation-delay: -4s; }

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

        .float-tutorials {
            top: 10%;
            right: -30px;
            background: white;
            color: var(--coral);
        }

        .float-tutorials::before {
            content: '🎨';
            margin-right: 6px;
        }

        .float-offline {
            bottom: 25%;
            left: -40px;
            background: white;
            color: var(--mint-deep);
        }

        .float-offline::before {
            content: '✈️';
            margin-right: 6px;
        }

        .float-kids {
            top: 40%;
            right: -50px;
            background: var(--sunshine);
            color: var(--ink);
        }

        .float-kids::before {
            content: '⭐';
            margin-right: 6px;
        }

        /* ============================================
           SCROLLING TICKER
           ============================================ */
        .ticker {
            padding: 24px 0;
            background: var(--ink);
            overflow: hidden;
            position: relative;
        }

        .ticker-track {
            display: flex;
            width: max-content;
            animation: tickerScroll 30s linear infinite;
        }

        @keyframes tickerScroll {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        .ticker-item {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 0 40px;
            color: rgba(255,255,255,0.7);
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .ticker-item .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--coral);
        }

        /* ============================================
           HOW IT WORKS
           ============================================ */
        .section {
            padding: 120px 40px;
        }

        .section-header {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 80px;
        }

        .section-label {
            font-family: 'Caveat', cursive;
            font-size: 1.3rem;
            color: var(--coral);
            margin-bottom: 12px;
            display: block;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 1.15rem;
            line-height: 1.7;
            color: var(--ink-light);
        }

        /* Steps grid */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .step-card {
            background: white;
            border-radius: 28px;
            padding: 48px 36px;
            position: relative;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1.5px solid rgba(45,45,58,0.04);
        }

        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--card-shadow-hover);
        }

        .step-number {
            font-family: 'Caveat', cursive;
            font-size: 4rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 20px;
        }

        .step-card:nth-child(1) .step-number { color: var(--coral); }
        .step-card:nth-child(2) .step-number { color: var(--mint); }
        .step-card:nth-child(3) .step-number { color: var(--lavender); }

        .step-icon-row {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 24px;
        }

        .step-card:nth-child(1) .step-icon-row { background: rgba(255,107,90,0.1); }
        .step-card:nth-child(2) .step-icon-row { background: rgba(0,212,170,0.1); }
        .step-card:nth-child(3) .step-icon-row { background: rgba(162,155,254,0.1); }

        .step-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        .step-card p {
            color: var(--ink-light);
            line-height: 1.7;
            font-size: 1.02rem;
        }

        /* ============================================
           4-IN-1 APP MODES
           ============================================ */
        .modes-section {
            background: white;
            border-radius: 48px;
            margin: 0 24px;
            overflow: hidden;
            position: relative;
        }

        .modes-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--coral), var(--sunshine));
            color: white;
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            margin-bottom: 16px;
        }

        .modes-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            max-width: 960px;
            margin: 0 auto;
        }

        .mode-card {
            border-radius: 28px;
            padding: 40px 32px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1.5px solid transparent;
            cursor: default;
        }

        .mode-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        .mode-card::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.07;
            pointer-events: none;
            background: radial-gradient(circle at 80% 20%, currentColor 0%, transparent 60%);
        }

        .mode-card-1 {
            background: #FFF5ED;
            border-color: rgba(255,107,90,0.12);
            color: var(--coral);
        }

        .mode-card-2 {
            background: #F3EFFF;
            border-color: rgba(162,155,254,0.12);
            color: var(--lavender);
        }

        .mode-card-3 {
            background: #EDFCF5;
            border-color: rgba(0,212,170,0.12);
            color: var(--mint);
        }

        .mode-card-4 {
            background: #EEF4FF;
            border-color: rgba(116,185,255,0.12);
            color: var(--sky);
        }

        .mode-icon {
            width: 64px;
            height: 64px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 24px;
        }

        .mode-card-1 .mode-icon { background: rgba(255,107,90,0.12); }
        .mode-card-2 .mode-icon { background: rgba(162,155,254,0.12); }
        .mode-card-3 .mode-icon { background: rgba(0,212,170,0.12); }
        .mode-card-4 .mode-icon { background: rgba(116,185,255,0.12); }

        .mode-card h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }

        .mode-card p {
            color: var(--ink-light);
            line-height: 1.65;
            font-size: 0.98rem;
        }

        .mode-tag {
            display: inline-block;
            margin-top: 16px;
            font-size: 0.78rem;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: 100px;
            letter-spacing: 0.02em;
        }

        .mode-card-1 .mode-tag { background: rgba(255,107,90,0.1); color: var(--coral); }
        .mode-card-2 .mode-tag { background: rgba(162,155,254,0.1); color: var(--lavender); }
        .mode-card-3 .mode-tag { background: rgba(0,212,170,0.1); color: var(--mint-deep); }
        .mode-card-4 .mode-tag { background: rgba(116,185,255,0.1); color: #3B82F6; }

        @media (max-width: 768px) {
            .modes-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
            }

            .modes-section {
                border-radius: 32px;
                margin: 0 12px;
            }

            .mode-featured-content {
                flex-direction: column;
                text-align: center;
            }

            .mode-featured-themes {
                justify-content: center;
            }
        }

        /* Featured Postcards card */
        .mode-card-featured {
            max-width: 960px;
            margin: 32px auto 0;
            border-radius: 32px;
            padding: 4px;
            background: linear-gradient(135deg, #E8A0BF, #C9B1FF, #74B9FF, #A0E7E5, #FFD166);
            background-size: 300% 300%;
            animation: gradientShift 8s ease infinite;
            position: relative;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .mode-featured-content {
            background: white;
            border-radius: 29px;
            padding: 48px 44px;
            display: flex;
            align-items: flex-start;
            gap: 36px;
        }

        .mode-featured-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #E8523F, #FFD166);
            color: white;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 7px 22px;
            border-radius: 100px;
            letter-spacing: 0.04em;
            white-space: nowrap;
            box-shadow: 0 4px 16px rgba(232,82,63,0.3);
            z-index: 2;
        }

        .mode-featured-icon {
            font-size: 3.2rem;
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #FFF0F5, #FDE8F0);
            border-radius: 22px;
        }

        .mode-featured-content h3 {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--ink);
            margin-bottom: 10px;
            letter-spacing: -0.02em;
        }

        .mode-featured-content p {
            color: var(--ink-light);
            line-height: 1.7;
            font-size: 1.05rem;
            margin-bottom: 20px;
        }

        .mode-featured-themes {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .theme-pill {
            font-size: 0.78rem;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 100px;
            white-space: nowrap;
        }

        .theme-aura {
            background: linear-gradient(135deg, rgba(162,155,254,0.12), rgba(200,180,255,0.15));
            color: #7C6DC8;
        }

        .theme-ocean {
            background: linear-gradient(135deg, rgba(0,212,170,0.1), rgba(116,185,255,0.1));
            color: #1A9B8A;
        }

        .theme-sunset {
            background: linear-gradient(135deg, rgba(255,209,102,0.15), rgba(255,107,90,0.1));
            color: #D47230;
        }

        .theme-bloom {
            background: linear-gradient(135deg, rgba(232,160,191,0.12), rgba(200,130,170,0.1));
            color: #B95882;
        }

        .theme-cosmos {
            background: linear-gradient(135deg, rgba(100,60,180,0.1), rgba(200,100,180,0.08));
            color: #6A3DAA;
        }

        /* ============================================
           FEATURES SECTION
           ============================================ */
        .features-section {
            background: var(--ink);
            color: white;
            border-radius: 48px;
            margin: 0 24px;
            overflow: hidden;
            position: relative;
        }

        .features-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 40% 40% at 10% 10%, rgba(255,107,90,0.12) 0%, transparent 70%),
                radial-gradient(ellipse 30% 30% at 90% 90%, rgba(0,212,170,0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .features-section .section-label {
            color: var(--sunshine);
        }

        .features-section .section-title {
            color: white;
        }

        .features-section .section-subtitle {
            color: rgba(255,255,255,0.6);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .feature-card {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px;
            padding: 36px 28px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            backdrop-filter: blur(8px);
        }

        .feature-card:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.15);
            transform: translateY(-4px);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

        .feature-card:nth-child(1) .feature-icon { background: rgba(255,107,90,0.2); }
        .feature-card:nth-child(2) .feature-icon { background: rgba(255,209,102,0.2); }
        .feature-card:nth-child(3) .feature-icon { background: rgba(0,212,170,0.2); }
        .feature-card:nth-child(4) .feature-icon { background: rgba(116,185,255,0.2); }
        .feature-card:nth-child(5) .feature-icon { background: rgba(162,155,254,0.2); }
        .feature-card:nth-child(6) .feature-icon { background: rgba(255,107,90,0.2); }

        .feature-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }

        .feature-card p {
            color: rgba(255,255,255,0.55);
            line-height: 1.65;
            font-size: 0.95rem;
        }

        /* ============================================
           ABOUT / COMPANY SECTION
           ============================================ */
        .about-section {
            position: relative;
        }

        .about-wrapper {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
        }

        .about-visual {
            position: relative;
        }

        .about-card-stack {
            position: relative;
            height: 420px;
        }

        .about-art-card {
            position: absolute;
            width: 260px;
            background: white;
            border-radius: 24px;
            padding: 20px;
            box-shadow: var(--card-shadow);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .about-art-card:nth-child(1) {
            top: 0;
            left: 20px;
            transform: rotate(-4deg);
        }

        .about-art-card:nth-child(2) {
            top: 60px;
            right: 0;
            transform: rotate(3deg);
        }

        .about-art-card:nth-child(3) {
            bottom: 0;
            left: 40px;
            transform: rotate(-2deg);
        }

        .about-art-card:hover {
            transform: rotate(0deg) scale(1.03) !important;
            z-index: 2;
        }

        .art-card-preview {
            width: 100%;
            height: 160px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            margin-bottom: 12px;
        }

        .about-art-card:nth-child(1) .art-card-preview { background: linear-gradient(135deg, #FFE8D6, #FFDDC8); }
        .about-art-card:nth-child(2) .art-card-preview { background: linear-gradient(135deg, #D6F5ED, #C8F0E5); }
        .about-art-card:nth-child(3) .art-card-preview { background: linear-gradient(135deg, #E8E6FF, #DDD9FF); }

        .art-card-label {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--ink);
        }

        .art-card-sub {
            font-size: 0.8rem;
            color: var(--ink-light);
            margin-top: 2px;
        }

        .about-text h2 {
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
        }

        .about-text h2 .highlight-underline {
            position: relative;
            display: inline-block;
        }

        .about-text h2 .highlight-underline::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 8px;
            background: var(--sunshine);
            opacity: 0.4;
            border-radius: 4px;
            z-index: -1;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--ink-light);
            margin-bottom: 20px;
        }

        .about-text .about-highlight {
            font-weight: 600;
            color: var(--ink);
        }

        .about-stats {
            display: flex;
            gap: 40px;
            margin-top: 36px;
            padding-top: 36px;
            border-top: 1.5px solid rgba(45,45,58,0.06);
        }

        .about-stat h4 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--coral);
            letter-spacing: -0.02em;
        }

        .about-stat p {
            font-size: 0.9rem;
            color: var(--ink-light);
            margin-bottom: 0;
        }

        /* ============================================
           REVIEWS SECTION
           ============================================ */
        .reviews-section {
            position: relative;
            overflow: hidden;
        }

        .reviews-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 50% 40% at 20% 60%, rgba(255,209,102,0.08) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 80% 30%, rgba(162,155,254,0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .reviews-app-store-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 16px;
        }

        .reviews-stars {
            display: flex;
            gap: 3px;
            color: var(--sunshine);
            font-size: 1.3rem;
        }

        .reviews-source {
            font-size: 0.9rem;
            color: var(--ink-light);
            font-weight: 500;
        }

        .reviews-scroll-wrapper {
            position: relative;
            max-width: 1300px;
            margin: 0 auto;
        }

        .reviews-track {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 8px 40px 32px;
        }

        .reviews-track::-webkit-scrollbar {
            display: none;
        }

        .review-card {
            flex: 0 0 340px;
            background: white;
            border-radius: 24px;
            padding: 32px 28px;
            border: 1.5px solid rgba(45,45,58,0.04);
            scroll-snap-align: start;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }

        .review-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--card-shadow-hover);
        }

        .review-card-stars {
            display: flex;
            gap: 2px;
            margin-bottom: 14px;
        }

        .review-star {
            width: 18px;
            height: 18px;
            color: var(--sunshine);
        }

        .review-card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        .review-card-text {
            color: var(--ink-light);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .review-card-author {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 16px;
            border-top: 1px solid rgba(45,45,58,0.05);
        }

        .review-avatar {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            font-weight: 700;
            color: white;
        }

        .review-card:nth-child(1) .review-avatar { background: linear-gradient(135deg, var(--coral), #FF9A8B); }
        .review-card:nth-child(2) .review-avatar { background: linear-gradient(135deg, var(--mint), #7DFFCC); }
        .review-card:nth-child(3) .review-avatar { background: linear-gradient(135deg, var(--lavender), #C4B5FD); }
        .review-card:nth-child(4) .review-avatar { background: linear-gradient(135deg, var(--sky), #A5D8FF); }
        .review-card:nth-child(5) .review-avatar { background: linear-gradient(135deg, var(--sunshine), #FFE08A); }
        .review-card:nth-child(6) .review-avatar { background: linear-gradient(135deg, #F472B6, #FBCFE8); }

        .review-author-info {
            flex: 1;
        }

        .review-author-name {
            font-weight: 600;
            font-size: 0.88rem;
            color: var(--ink);
        }

        .review-author-date {
            font-size: 0.78rem;
            color: rgba(90,90,110,0.5);
            margin-top: 1px;
        }

        .review-age-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(255,107,90,0.1), rgba(255,209,102,0.1));
            color: var(--coral);
            font-size: 0.72rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 100px;
            margin-bottom: 10px;
        }

        /* Scroll hint arrows */
        .reviews-scroll-hint {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 8px;
        }

        .scroll-arrow {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            border: 1.5px solid rgba(45,45,58,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            color: var(--ink-light);
        }

        .scroll-arrow:hover {
            background: var(--ink);
            color: white;
            border-color: var(--ink);
        }

        @media (max-width: 768px) {
            .review-card {
                flex: 0 0 290px;
            }

            .reviews-track {
                padding: 8px 20px 24px;
                gap: 16px;
            }
        }

        /* ============================================
           TUTORIALS GRID (uses existing design language)
           ============================================ */
        .tutorials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .tutorial-card {
            background: white;
            border-radius: 24px;
            padding: 28px 24px;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            border: 1.5px solid rgba(45,45,58,0.05);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: var(--card-shadow);
        }

        .tutorial-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--card-shadow-hover);
            border-color: rgba(255,107,90,0.2);
        }

        .tutorial-card-emoji {
            font-size: 2.2rem;
            line-height: 1;
            margin-bottom: 12px;
        }

        .tutorial-card-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--ink);
            letter-spacing: -0.01em;
            line-height: 1.3;
            margin-bottom: 6px;
        }

        .tutorial-card-desc {
            font-size: 0.85rem;
            color: var(--ink-light);
            line-height: 1.55;
            flex: 1;
        }

        .tutorial-card-link {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--coral);
            margin-top: 14px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        @media (max-width: 768px) {
            .tutorials-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .tutorial-card { padding: 20px 16px; }
        }

        /* ============================================
           CTA SECTION
           ============================================ */
        .cta-section {
            padding: 120px 40px;
        }

        .cta-wrapper {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            background: linear-gradient(135deg, var(--coral) 0%, #FF8F7A 50%, var(--sunshine) 100%);
            border-radius: 40px;
            padding: 80px 60px;
            position: relative;
            overflow: hidden;
        }

        .cta-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta-wrapper .section-label {
            color: rgba(255,255,255,0.85);
        }

        .cta-wrapper h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: white;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .cta-wrapper p {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.85);
            max-width: 560px;
            margin: 0 auto 40px;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        .cta-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .btn-white {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: white;
            color: var(--ink);
            text-decoration: none;
            padding: 16px 32px;
            border-radius: 16px;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(0,0,0,0.15);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: white;
            text-decoration: none;
            padding: 16px 28px;
            border-radius: 16px;
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid rgba(255,255,255,0.35);
            transition: all 0.3s;
        }

        .btn-ghost:hover {
            border-color: white;
            background: rgba(255,255,255,0.1);
        }

        /* ============================================
           FOOTER
           ============================================ */
        footer {
            padding: 60px 40px;
            border-top: 1.5px solid rgba(45,45,58,0.06);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .footer-brand-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            overflow: hidden;
            transform: rotate(-4deg);
        }

        .footer-brand-icon img {
            width: 100%;
            height: 100%;
            display: block;
        }

        .footer-brand-text {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--ink);
        }

        .footer-links-row {
            display: flex;
            gap: 32px;
        }

        .footer-links-row a {
            text-decoration: none;
            color: var(--ink-light);
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s;
        }

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

        .footer-copy {
            color: rgba(90,90,110,0.6);
            font-size: 0.85rem;
        }

        /* ============================================
           ANIMATIONS (Scroll-triggered)
           ============================================ */
        .reveal {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* When JS loads, opt-in to the hidden→visible animation */
        .js-ready .reveal:not(.visible) {
            opacity: 0;
            transform: translateY(30px);
        }

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

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

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: center;
            }

            .hero-description {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-actions {
                justify-content: center;
            }

            .hero-visual {
                order: -1;
            }

            .phone-mockup {
                width: 240px;
                height: 480px;
            }

            .steps-grid,
            .features-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }

            .about-wrapper {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .about-visual {
                order: -1;
            }

            .about-card-stack {
                height: 320px;
                max-width: 400px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 80px 20px;
            }

            .hero {
                padding: 100px 20px 60px;
            }

            nav {
                padding: 14px 20px;
            }

            nav.scrolled {
                padding: 10px 20px;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(254,252,248,0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 24px;
                gap: 16px;
                border-bottom: 1px solid rgba(45,45,58,0.06);
            }

            .nav-links.open {
                display: flex;
            }

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

            .features-section {
                border-radius: 32px;
                margin: 0 12px;
            }

            .cta-wrapper {
                padding: 60px 32px;
                border-radius: 32px;
            }

            .about-stats {
                flex-direction: column;
                gap: 20px;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .float-element {
                display: none;
            }
        }