/* ================================================
           ULTRA-LIGHT LANDING PAGE — NO INTERACTIVITY
           Pure CSS, minimal JS (just random quote on load)
           ================================================ */

        :root {
            --bg: #faf9f7;
            --text: #1a1a1a;
            --text-muted: #6b6b6b;
            --accent: #2d2d2d;
            --font-sans: 'Inter', -apple-system, sans-serif;
            --font-serif: 'Playfair Display', Georgia, serif;
        }

        @media (prefers-color-scheme: dark) {
            :root {
                --bg: #0a0a0a;
                --text: #e5e5e5;
                --text-muted: #888;
                --accent: #fff;
            }
        }

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

        html, body {
            height: 100%;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            line-height: 1.6;
            transition: background 0.3s ease, color 0.3s ease;
        }

        /* Subtle grain texture */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            z-index: 9999;
        }

        /* Main content */
        main {
            text-align: center;
            max-width: 600px;
            width: 100%;
        }

        /* Quote card */
        .quote-card {
            margin-bottom: 60px;
            animation: fadeIn 1s ease-out 0.2s both;
        }

        .quote {
            font-family: var(--font-serif);
            font-size: clamp(20px, 3.5vw, 28px);
            line-height: 1.5;
            font-style: italic;
            color: var(--text);
            margin-bottom: 20px;
        }

        .quote::before {
            content: '"';
            font-size: 1.5em;
            vertical-align: -0.3em;
            opacity: 0.4;
            margin-right: 4px;
        }

        .quote::after {
            content: '"';
            font-size: 1.5em;
            vertical-align: -0.5em;
            opacity: 0.4;
            margin-left: 4px;
        }

        .author {
            font-size: 13px;
            color: var(--text-muted);
            font-style: normal;
            letter-spacing: 0.5px;
        }

        /* Blog link */
        .blog-link {
            display: inline-block;
            font-size: 15px;
            color: var(--text);
            text-decoration: none;
            padding: 12px 28px;
            border: 1px solid var(--text-muted);
            border-radius: 100px;
            transition: all 0.2s ease;
            animation: fadeIn 1.2s ease-out 0.4s both;
        }

        .blog-link:hover {
            background: var(--text);
            color: var(--bg);
            border-color: var(--text);
        }

        /* Footer */
        footer {
            margin-top: 80px;
            font-size: 12px;
            color: var(--text-muted);
            animation: fadeIn 1.4s ease-out 0.6s both;
        }

        footer a {
            color: var(--text-muted);
            text-decoration: none;
            border-bottom: 1px dotted var(--text-muted);
        }

        footer a:hover {
            color: var(--text);
        }

        /* Fade-in animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive */
        @media (max-width: 600px) {
            body {
                padding: 30px 20px;
            }

            .quote {
                font-size: 20px;
            }

            .blog-link {
                padding: 10px 24px;
                font-size: 14px;
            }
        }
