        :root {
            --bg-deep: #0A0A0F;
            --bg-surface: #141420;
            --bg-card: #1C1C2E;
            --bg-card-hover: #222240;
            --violet: #8B5CF6;
            --violet-soft: #A78BFA;
            --violet-dark: #6D28D9;
            --violet-glow: rgba(139, 92, 246, 0.15);
            --text-primary: #F5F5F7;
            --text-secondary: #A1A1AA;
            --text-muted: #5A5A6E;
            --border-subtle: rgba(139, 92, 246, 0.08);
            --border-hover: rgba(139, 92, 246, 0.2);
            --radius: 20px;
            --radius-sm: 12px;
            --radius-xs: 8px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --spring: cubic-bezier(0.22, 1, 0.36, 1);
            --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; overflow-x: hidden; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-primary);
            background: var(--bg-deep);
            line-height: 1.6;
            overflow-x: hidden;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

        /* ── Navigation ── */
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            padding: 14px 24px;
            background: rgba(10, 10, 15, 0.85);
            backdrop-filter: blur(12px) saturate(180%); -webkit-backdrop-filter: blur(12px) saturate(180%);
            border-bottom: 1px solid var(--border-subtle);
        }
        nav .nav-inner {
            max-width: 1100px; margin: 0 auto;
            display: flex; justify-content: space-between; align-items: center;
        }
        .logo {
            font-size: 1.35rem; font-weight: 800; color: var(--text-primary);
            letter-spacing: -0.5px; text-decoration: none;
        }
        .logo span { color: var(--violet); }
        .nav-cta {
            background: var(--violet); color: white; border: none;
            padding: 10px 24px; border-radius: 50px; font-size: 0.85rem;
            font-weight: 600; cursor: pointer; transition: var(--transition); font-family: inherit;
            letter-spacing: -0.2px;
        }
        .nav-cta:hover {
            background: var(--violet-dark); transform: translateY(-1px);
            box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
        }

        /* ── Ambient Background ── */
        .ambient-bg {
            position: fixed; inset: 0; pointer-events: none; z-index: -1;
        }
        .ambient-orb {
            position: absolute; border-radius: 50%;
            filter: blur(60px); opacity: 0.12;
        }
        .ambient-orb--1 {
            width: 600px; height: 600px; top: -200px; right: -100px;
            background: var(--violet);
        }
        .ambient-orb--2 {
            width: 500px; height: 500px; bottom: 20%; left: -150px;
            background: #4F46E5;
        }

        /* ── Hero ── */
        .hero {
            min-height: 100vh; display: flex; align-items: center; justify-content: center;
            padding: 140px 24px 80px; position: relative;
        }
        .hero-layout {
            display: flex; align-items: center; justify-content: space-between;
            gap: 60px; max-width: 1100px; width: 100%;
        }
        .hero-content {
            position: relative; z-index: 1; max-width: 520px; text-align: left; flex: 1;
        }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(139, 92, 246, 0.08); border: 1px solid rgba(139, 92, 246, 0.15);
            padding: 8px 18px; border-radius: 50px; font-size: 0.8rem;
            font-weight: 500; color: var(--violet-soft); margin-bottom: 32px;
            letter-spacing: 0.3px;
        }
        .hero-badge-dot {
            width: 6px; height: 6px; border-radius: 50%; background: var(--violet-soft);
            animation: badgePulse 2s ease-in-out infinite;
        }
        @keyframes badgePulse {
            0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
        }
        .hero-content .hero-badge,
        .hero-content h1,
        .hero-content .hero-sub,
        .hero-content .hero-actions {
            opacity: 0; transform: translateY(20px);
        }
        .hero-loaded .hero-badge { animation: fadeUp 0.6s var(--spring) 0.1s forwards; }
        .hero-loaded h1 { animation: fadeUp 0.6s var(--spring) 0.2s forwards; }
        .hero-loaded .hero-sub { animation: fadeUp 0.6s var(--spring) 0.3s forwards; }
        .hero-loaded .hero-actions { animation: fadeUp 0.6s var(--spring) 0.4s forwards; }
        .phone-mockup {
            opacity: 0; transform: translateY(20px);
        }
        .hero-loaded .phone-mockup { animation: fadeUp 0.6s var(--spring) 0.5s forwards; }
        @keyframes fadeUp {
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes buttonPulse {
            0%, 100% {
                box-shadow: 0 12px 40px rgba(139, 92, 246, 0.35);
            }
            50% {
                box-shadow: 0 12px 40px rgba(139, 92, 246, 0.55),
                            0 0 0 8px rgba(139, 92, 246, 0.1);
            }
        }
        .btn-primary.pulse {
            animation: buttonPulse 2s ease-in-out infinite;
        }

        /* ── Phone Mockup ── */
        .phone-frame {
            width: 280px; height: 572px; position: relative;
            background: #1A1A2E; border-radius: 40px;
            border: 3px solid #2A2A40;
            box-shadow: 0 0 60px rgba(139, 92, 246, 0.08), 0 20px 60px rgba(0, 0, 0, 0.4);
            overflow: hidden;
        }
        .phone-notch {
            width: 80px; height: 24px; background: #0D0D1A;
            border-radius: 0 0 16px 16px; margin: 0 auto;
            position: relative; z-index: 2;
        }
        .phone-screen {
            position: absolute; inset: 3px; top: 0;
            background: #0D0D1A; border-radius: 37px;
            display: flex; flex-direction: column; overflow: hidden;
        }
        .phone-chat-header {
            display: flex; align-items: center; gap: 10px;
            padding: 32px 16px 12px; border-bottom: 1px solid rgba(139, 92, 246, 0.08);
            flex-shrink: 0;
        }
        .phone-avatar {
            width: 32px; height: 32px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            overflow: hidden; position: relative;
        }

        /* Avatar Blob Animation Styles */
        .phone-avatar-blob-svg {
            width: 100%; height: 100%;
        }
        .phone-avatar-blob-circle {
            will-change: transform;
        }
        .phone-avatar-blob-center {
            animation: avatarBlobBreathe 9s ease-in-out infinite;
        }
        .phone-avatar-blob-orbit-1 {
            animation: avatarBlobOrbit1 9s ease-in-out infinite;
        }
        .phone-avatar-blob-orbit-2 {
            animation: avatarBlobOrbit2 9s ease-in-out infinite;
        }
        .phone-avatar-blob-orbit-3 {
            animation: avatarBlobOrbit3 9s ease-in-out infinite;
        }
        .phone-avatar-blob-orbit-4 {
            animation: avatarBlobOrbit4 9s ease-in-out infinite;
        }

        /* Avatar Blob Keyframes (scaled down from preloader) */
        @keyframes avatarBlobBreathe {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.15); }
        }
        @keyframes avatarBlobOrbit1 {
            0% { transform: translate(0, -32px); }
            25% { transform: translate(32px, 0); }
            50% { transform: translate(0, 32px); }
            75% { transform: translate(-32px, 0); }
            100% { transform: translate(0, -32px); }
        }
        @keyframes avatarBlobOrbit2 {
            0% { transform: translate(32px, 0); }
            25% { transform: translate(0, 32px); }
            50% { transform: translate(-32px, 0); }
            75% { transform: translate(0, -32px); }
            100% { transform: translate(32px, 0); }
        }
        @keyframes avatarBlobOrbit3 {
            0% { transform: translate(0, 32px); }
            25% { transform: translate(-32px, 0); }
            50% { transform: translate(0, -32px); }
            75% { transform: translate(32px, 0); }
            100% { transform: translate(0, 32px); }
        }
        @keyframes avatarBlobOrbit4 {
            0% { transform: translate(-32px, 0); }
            25% { transform: translate(0, -32px); }
            50% { transform: translate(32px, 0); }
            75% { transform: translate(0, 32px); }
            100% { transform: translate(-32px, 0); }
        }

        .phone-header-info { display: flex; flex-direction: column; }
        .phone-header-name {
            font-size: 0.78rem; font-weight: 600; color: var(--text-primary);
        }
        .phone-header-status {
            font-size: 0.62rem; color: #34D399; font-weight: 500;
        }
        .phone-messages {
            flex: 1; overflow: hidden; display: flex; flex-direction: column;
            justify-content: flex-end; padding: 12px 12px 8px; gap: 8px;
        }
        .phone-msg {
            max-width: 82%; padding: 8px 12px; border-radius: 14px;
            font-size: 0.72rem; line-height: 1.45; word-wrap: break-word;
            opacity: 0; transform: translateY(8px) scale(0.95);
            transition: opacity 0.35s var(--spring), transform 0.35s var(--spring);
        }
        .phone-msg.visible { opacity: 1; transform: translateY(0) scale(1); }
        .phone-msg--user {
            align-self: flex-end; background: var(--violet); color: white;
            border-bottom-right-radius: 4px;
        }
        .phone-msg--ai {
            align-self: flex-start; background: var(--bg-card); color: var(--text-primary);
            border-bottom-left-radius: 4px;
        }
        .phone-typing {
            align-self: flex-start; background: var(--bg-card);
            border-radius: 14px; border-bottom-left-radius: 4px;
            padding: 10px 14px; display: flex; gap: 4px; align-items: center;
        }
        .phone-typing-dot {
            width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted);
            animation: typingBounce 1.2s ease-in-out infinite;
        }
        .phone-typing-dot:nth-child(2) { animation-delay: 0.15s; }
        .phone-typing-dot:nth-child(3) { animation-delay: 0.3s; }
        @keyframes typingBounce {
            0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
            30% { transform: translateY(-4px); opacity: 1; }
        }

            color: var(--text-primary);
        }
        .phone-input-bar {
            display: flex;
            flex-direction: row !important;
            flex-wrap: nowrap !important;
            align-items: center;
            justify-content: flex-start;
            gap: 8px;
            padding: 8px 12px 16px;
            flex-shrink: 0;
        }
        .phone-input-placeholder {
            flex: 1; min-width: 0; padding: 8px 12px; border-radius: 20px;
            background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.68rem; color: var(--text-muted);
        }
        .phone-messages.fading-out {
            opacity: 0; transition: opacity 0.4s ease;
        }

        .hero h1 {
            font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800;
            line-height: 1.1; margin-bottom: 24px;
            letter-spacing: -1.5px;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-primary) 50%, var(--violet-soft) 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-sub {
            font-size: clamp(1rem, 2vw, 1.15rem); color: var(--text-secondary);
            line-height: 1.7; margin-bottom: 40px; max-width: 540px;
            margin-left: 0; margin-right: 0; font-weight: 400;
        }
        .hero-actions { display: flex; justify-content: flex-start; gap: 16px; flex-wrap: wrap; }
        .btn-primary {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--violet); color: white; border: none;
            padding: 14px 32px; border-radius: 50px; font-size: 0.95rem;
            font-weight: 600; cursor: pointer; font-family: inherit;
            transition: var(--transition); letter-spacing: -0.2px;
            position: relative;
            overflow: hidden;
        }
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        .btn-primary:active::before {
            width: 300px;
            height: 300px;
        }
        .btn-primary:hover {
            background: var(--violet-dark); transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(139, 92, 246, 0.35);
        }
        .btn-primary:hover svg {
            transform: translateY(2px);
            animation: arrowBounce 0.6s ease-in-out infinite;
        }
        @keyframes arrowBounce {
            0%, 100% { transform: translateY(2px); }
            50% { transform: translateY(6px); }
        }
        .btn-primary svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        /* ── GPU Acceleration Hints ── */
        .phone-msg, .chart-bar-fill, .comparison-card,
        .feature-content, .feature-visual, .value-card,
        .form-step, .phone-mockup, .fade-up-scroll {
            will-change: opacity, transform;
            backface-visibility: hidden;
        }

        /* ── New Design Tokens ── */
        :root {
            --gradient-emotional: linear-gradient(135deg, #6D28D9 0%, #8B5CF6 100%);
            --shadow-intense: 0 20px 80px rgba(139, 92, 246, 0.2);
        }

        /* ── Problem/Empathy Section ── */
        .problem-section {
            padding: 120px 24px;
            text-align: center;
            position: relative;
        }
        .problem-section h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
            letter-spacing: -1px;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--violet-soft) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .problem-section p {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ── Comparison Section ── */
        .comparison-section {
            padding: 100px 24px;
            background: var(--bg-surface);
        }
        .comparison-section h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            letter-spacing: -0.8px;
        }
        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .comparison-card {
            padding: 40px 32px;
            border-radius: var(--radius);
            border: 1px solid var(--border-subtle);
            background: var(--bg-card);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(20px);
        }
        .comparison-card.visible { opacity: 1; transform: translateY(0); }
        .comparison-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(139, 92, 246, 0.2),
                        0 0 0 1px rgba(139, 92, 246, 0.1);
        }
        .comparison-card--highlight {
            background: linear-gradient(135deg, rgba(109, 40, 217, 0.08), rgba(139, 92, 246, 0.08));
            border-color: var(--border-hover);
            box-shadow: 0 8px 32px rgba(139, 92, 246, 0.12);
        }
        .comparison-card--highlight:hover {
            box-shadow: 0 16px 64px rgba(139, 92, 246, 0.3),
                        0 0 32px rgba(139, 92, 246, 0.15);
            border-color: var(--violet);
        }
        .comparison-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 24px;
            letter-spacing: -0.5px;
        }
        .comparison-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .comparison-list li {
            padding: 12px 0;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.95rem;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border-subtle);
        }
        .comparison-list li:last-child { border-bottom: none; }
        .comparison-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            margin-top: 2px;
        }
        .comparison-icon--check { color: #34D399; }
        .comparison-icon--x { color: #EF4444; opacity: 0.5; }

        /* ── Feature Showcase Sections ── */
        .feature-showcase {
            padding: 120px 24px;
            position: relative;
        }
        .feature-showcase:nth-of-type(even) {
            background: var(--bg-surface);
        }
        .feature-layout {
            display: flex;
            align-items: center;
            gap: 80px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .feature-layout--reverse {
            flex-direction: row-reverse;
        }
        .feature-content {
            flex: 1;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .feature-content.visible { opacity: 1; transform: translateY(0); }
        .feature-badge {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(139, 92, 246, 0.1);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--violet-soft);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        .feature-content h2 {
            font-size: clamp(1.8rem, 3vw, 2.8rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -0.8px;
        }
        .feature-content p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .feature-stat {
            display: inline-block;
            padding: 12px 20px;
            background: rgba(139, 92, 246, 0.08);
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--violet-soft);
            margin-top: 12px;
        }
        .feature-visual {
            flex: 1;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .feature-visual.visible { opacity: 1; transform: translateY(0); }

        /* ── Phone Mockup (for feature sections) ── */
        .feature-phone {
            width: 300px;
            height: 600px;
            background: #1A1A2E;
            border-radius: 40px;
            border: 3px solid #2A2A40;
            box-shadow: 0 0 60px rgba(139, 92, 246, 0.15), 0 20px 60px rgba(0, 0, 0, 0.5);
            padding: 12px;
            position: relative;
            margin: 0 auto;
        }
        .feature-phone-screen {
            width: 100%;
            height: 100%;
            background: #0D0D1A;
            border-radius: 30px;
            padding: 16px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .feature-phone-time {
            text-align: center;
            font-size: 3rem;
            font-weight: 300;
            color: var(--text-primary);
            margin-top: 40px;
            letter-spacing: -1px;
        }
        .feature-phone-date {
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: -8px;
        }
        .feature-phone-msg {
            background: var(--bg-card);
            padding: 14px 16px;
            border-radius: 16px;
            font-size: 0.85rem;
            color: var(--text-primary);
            line-height: 1.5;
            margin-top: 60px;
        }
        .feature-phone-msg strong {
            color: var(--violet-soft);
        }

        /* ── Chart Container ── */
        .chart-container {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        .chart-header {
            margin-bottom: 24px;
        }
        .chart-header h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text-primary);
        }
        .chart-header p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .chart-bars {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .chart-bar-row {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .chart-bar-label {
            width: 100px;
            font-size: 0.85rem;
            color: var(--text-secondary);
            text-align: right;
        }
        .chart-bar-track {
            flex: 1;
            height: 32px;
            background: rgba(139, 92, 246, 0.08);
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }
        .chart-bar-fill {
            height: 100%;
            background: var(--gradient-emotional);
            border-radius: 8px;
            width: 0%;
            transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding-right: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            color: white;
            position: relative;
            overflow: visible;
        }
        .chart-bar-fill::after {
            content: attr(data-value);
            position: absolute;
            right: -50px;
            white-space: nowrap;
            color: var(--text-primary);
            font-size: 0.8rem;
            font-weight: 600;
            display: none;
        }
        .chart-bar-row.animated .chart-bar-fill {
            width: var(--bar-width);
        }

        /* ── Community Feed 3D Container ── */
        .feature-showcase--community .feature-visual {
            perspective: 1200px;
            perspective-origin: center center;
        }
        .community-feed {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transform-style: preserve-3d;
        }
        .community-post {
            padding: 20px;
            background: rgba(139, 92, 246, 0.04);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            margin-bottom: 16px;
            transition: all 0.3s var(--transition);
            cursor: pointer;

            /* Initial state - hidden before flying in */
            opacity: 0;
            transform: translateX(-120%) translateY(-50%) rotateZ(-15deg) scale(0.5);
            box-shadow: 0 50px 120px rgba(139, 92, 246, 0.5);

            /* GPU acceleration */
            will-change: transform, opacity, box-shadow;
            backface-visibility: hidden;
        }
        .community-post:last-child { margin-bottom: 0; }
        .community-post:hover {
            background: rgba(139, 92, 246, 0.08);
            border-color: var(--border-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(139, 92, 246, 0.12);
        }

        /* Flying-in animations for each post */
        @keyframes flyInFromLeftTop {
            0% {
                opacity: 0;
                transform: translateX(-120%) translateY(-50%) rotateZ(-15deg) scale(0.5);
                box-shadow: 0 50px 120px rgba(139, 92, 246, 0.5);
            }
            70% {
                opacity: 1;
            }
            100% {
                opacity: 1;
                transform: translateX(0) translateY(0) rotateZ(0) scale(1.0);
                box-shadow:
                    0 10px 30px rgba(0, 0, 0, 0.3),
                    0 20px 60px rgba(139, 92, 246, 0.2),
                    0 40px 100px rgba(139, 92, 246, 0.1);
            }
        }

        @keyframes flyInFromRight {
            0% {
                opacity: 0;
                transform: translateX(120%) rotateY(25deg) scale(0.5);
                box-shadow: 0 50px 120px rgba(139, 92, 246, 0.5);
            }
            70% {
                opacity: 1;
            }
            100% {
                opacity: 1;
                transform: translateX(0) rotateY(0) scale(1.0);
                box-shadow:
                    0 10px 30px rgba(0, 0, 0, 0.3),
                    0 20px 60px rgba(139, 92, 246, 0.2),
                    0 40px 100px rgba(139, 92, 246, 0.1);
            }
        }

        @keyframes flyInFromBottomRight {
            0% {
                opacity: 0;
                transform: translateX(80%) translateY(100%) rotateZ(12deg) scale(0.5);
                box-shadow: 0 50px 120px rgba(139, 92, 246, 0.5);
            }
            70% {
                opacity: 1;
            }
            100% {
                opacity: 1;
                transform: translateX(0) translateY(0) rotateZ(0) scale(1.0);
                box-shadow:
                    0 10px 30px rgba(0, 0, 0, 0.3),
                    0 20px 60px rgba(139, 92, 246, 0.2),
                    0 40px 100px rgba(139, 92, 246, 0.1);
            }
        }

        /* Triggered states */
        .community-post:nth-child(1).fly-in {
            animation: flyInFromLeftTop 1s cubic-bezier(0.22, 1, 0.36, 1) 0ms forwards;
        }

        .community-post:nth-child(2).fly-in {
            animation: flyInFromRight 1.1s cubic-bezier(0.22, 1, 0.36, 1) 150ms forwards;
        }

        .community-post:nth-child(3).fly-in {
            animation: flyInFromBottomRight 1.2s cubic-bezier(0.22, 1, 0.36, 1) 300ms forwards;
        }
        .community-post-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }
        .community-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--gradient-emotional);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 700;
            color: white;
        }
        .community-name {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-primary);
        }
        .community-post-text {
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .community-reactions {
            display: flex;
            gap: 16px;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid var(--border-subtle);
        }
        .community-reaction {
            font-size: 0.8rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 4px;
            transition: all 0.3s var(--spring);
            cursor: pointer;
        }
        .community-reaction:hover {
            transform: scale(1.15);
            color: var(--violet);
        }
        .community-reaction:hover .community-reaction-icon {
            filter: drop-shadow(0 2px 4px rgba(139, 92, 246, 0.4));
        }
        .community-reaction:active {
            transform: scale(0.95);
        }
        .community-reaction:focus-visible {
            outline: 2px solid var(--violet);
            outline-offset: 4px;
        }
        .community-reaction-icon {
            width: 16px;
            height: 16px;
            display: inline-block;
            vertical-align: middle;
        }

        /* ── Progress Demo Visual ── */
        .progress-demo {
            background: var(--bg-card);
            border: 1px solid rgba(139, 92, 246, 0.12);
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }
        .progress-demo-header {
            margin-bottom: 24px;
        }
        .progress-demo-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .progress-demo-subtitle {
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .progress-mood-scale {
            background: rgba(139, 92, 246, 0.05);
            border: 1px solid rgba(139, 92, 246, 0.15);
            border-radius: var(--radius-sm);
            padding: 20px;
            margin-bottom: 24px;
        }
        .mood-scale-label {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 12px;
            text-align: center;
        }
        .mood-scale-buttons {
            display: flex;
            justify-content: center;
            gap: 12px;
        }
        .mood-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(139, 92, 246, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s var(--spring);
            position: relative;
        }
        .mood-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            transition: all 0.3s var(--spring);
        }
        .mood-btn[data-value="1"]::before {
            background: #4C1D95;
            box-shadow: 0 0 0 4px rgba(76, 29, 149, 0.2);
        }
        .mood-btn[data-value="2"]::before {
            background: #6D28D9;
            box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.2);
        }
        .mood-btn[data-value="3"]::before {
            background: #8B5CF6;
            box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
        }
        .mood-btn[data-value="4"]::before {
            background: #A78BFA;
            box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.2);
        }
        .mood-btn[data-value="5"]::before {
            background: #C4B5FD;
            box-shadow: 0 0 0 4px rgba(196, 181, 253, 0.2);
        }
        .mood-btn:hover {
            transform: scale(1.1);
            border-color: var(--violet-soft);
        }
        .mood-btn:hover::before {
            transform: translate(-50%, -50%) scale(1.2);
        }
        .mood-btn:focus-visible {
            outline: 2px solid var(--violet);
            outline-offset: 2px;
        }
        .mood-btn--selected {
            background: rgba(139, 92, 246, 0.15);
            border-color: var(--violet-soft);
            box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
            transform: scale(1.15);
        }
        .mood-btn--selected::before {
            transform: translate(-50%, -50%) scale(1.3);
        }
        .progress-chart-card {
            background: rgba(10, 10, 15, 0.5);
            border: 1px solid rgba(139, 92, 246, 0.15);
            border-radius: var(--radius-sm);
            padding: 20px;
        }
        .progress-chart-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
        }
        .progress-chart-icon {
            width: 20px;
            height: 20px;
        }
        .progress-chart-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-primary);
        }
        .progress-chart {
            width: 100%;
            height: 120px;
            margin-bottom: 16px;
        }
        .progress-chart svg {
            width: 100%;
            height: 100%;
        }
        .chart-area {
            opacity: 0;
            animation: fadeIn 0.8s ease forwards 0.6s;
        }
        @keyframes fadeIn {
            to { opacity: 1; }
        }
        .chart-line {
            stroke: var(--violet);
            stroke-width: 3;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-dasharray: 400;
            stroke-dashoffset: 400;
            animation: drawLine 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }
        @keyframes drawLine {
            to { stroke-dashoffset: 0; }
        }
        .chart-dot {
            fill: var(--violet-soft);
            opacity: 0;
            animation: fadeInDot 0.5s ease forwards;
            cursor: pointer;
            transition: all 0.3s var(--spring);
        }
        .chart-dot:hover {
            r: 8;
            filter: drop-shadow(0 0 8px var(--violet));
        }
        .chart-dot:nth-child(4) { animation-delay: 0.5s; }
        .chart-dot:nth-child(5) { animation-delay: 1s; }
        .chart-dot:nth-child(6) { animation-delay: 1.5s; }
        .chart-dot:nth-child(7) { animation-delay: 2s; }
        .chart-dot:nth-child(8) { animation-delay: 2.5s; }
        @keyframes fadeInDot {
            0% { opacity: 0; transform: scale(0.5); }
            100% { opacity: 1; transform: scale(1); }
        }
        .chart-dot--latest {
            fill: var(--violet);
            animation: fadeInDotPulse 0.5s ease forwards 2.5s;
        }
        @keyframes fadeInDotPulse {
            0% { opacity: 0; transform: scale(0.5); }
            50% { opacity: 1; transform: scale(1.2); }
            100% { opacity: 1; transform: scale(1); }
        }
        .progress-chart-values {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        .value-before {
            color: var(--text-muted);
        }
        .value-arrow {
            color: var(--text-muted);
            font-size: 1rem;
        }
        .value-after {
            color: #34D399;
        }
        .value-change {
            background: rgba(52, 211, 153, 0.15);
            color: #34D399;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        /* ── Breathing Demo Visual ── */
        .breathing-demo {
            background: var(--bg-card);
            border: 1px solid rgba(139, 92, 246, 0.12);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            text-align: center;
        }
        .breathing-demo-header {
            margin-bottom: 32px;
        }
        .breathing-demo-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 16px;
            background: linear-gradient(135deg, var(--violet-dark) 0%, var(--violet) 100%);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        .breathing-demo-icon svg {
            width: 32px;
            height: 32px;
        }
        .breathing-demo-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }
        .breathing-demo-subtitle {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .breathing-circle-container {
            position: relative;
            margin-bottom: 32px;
            padding: 40px 0;
        }
        .breathing-circle {
            width: 200px;
            height: 200px;
            margin: 0 auto;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--violet-dark) 0%, var(--violet) 100%);
            box-shadow: 0 0 40px rgba(139, 92, 246, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: breatheInOut 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
            position: relative;
        }
        .breathing-circle-inner {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: rgba(10, 10, 15, 0.6);
            animation: breatheInOutInner 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
        }
        @keyframes breatheInOut {
            0%, 100% {
                transform: scale(0.7);
                box-shadow: 0 0 40px rgba(139, 92, 246, 0.4);
            }
            50% {
                transform: scale(1);
                box-shadow: 0 0 80px rgba(139, 92, 246, 0.8);
            }
        }
        @keyframes breatheInOutInner {
            0%, 100% { transform: scale(0.8); }
            50% { transform: scale(1); }
        }
        .breathing-instruction {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-primary);
            animation: fadeInstructionText 8s ease-in-out infinite;
        }
        @keyframes fadeInstructionText {
            0%, 45% { opacity: 1; }
            50%, 95% { opacity: 0; }
            100% { opacity: 1; }
        }

        /* ── Progress section staggered animations ── */
        @keyframes moodButtonPop {
            0% {
                opacity: 0;
                transform: scale(0.5);
            }
            60% {
                transform: scale(1.1);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes chartCardSlideIn {
            0% {
                opacity: 0;
                transform: translateY(40px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes drawProgressLine {
            0% {
                stroke-dashoffset: 600;
            }
            100% {
                stroke-dashoffset: 0;
            }
        }

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

        @keyframes slideInValue {
            0% {
                opacity: 0;
                transform: translateX(-20px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .breathing-info {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .breathing-info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 16px;
            background: rgba(139, 92, 246, 0.08);
            border: 1px solid rgba(139, 92, 246, 0.15);
            border-radius: var(--radius-xs);
        }
        .breathing-info-icon {
            width: 20px;
            height: 20px;
            margin-right: 8px;
        }
        .breathing-info-text {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-primary);
        }

        /* ── Section CTA ── */
        .section-cta {
            padding: 60px 24px;
            background: var(--bg-surface);
            text-align: center;
        }
        .section-cta-content h3 {
            font-size: clamp(1.4rem, 2.5vw, 1.8rem);
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 24px;
        }
        .section-cta .btn-primary {
            font-size: 1rem;
        }

        /* ── Feature Stat with Value ── */
        .feature-stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--violet-soft);
            margin-bottom: 8px;
        }
        .feature-stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* ── Scroll animations for new sections ── */
        /* Progress demo container - instant visibility */
        .feature-showcase--progress .progress-demo {
            opacity: 1;
        }

        /* Mood scale buttons - pop in with stagger */
        .mood-scale-buttons .mood-btn {
            opacity: 0;
            transform: scale(0.5);
        }

        .feature-showcase--progress.visible .mood-btn:nth-child(1) {
            animation: moodButtonPop 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
        }

        .feature-showcase--progress.visible .mood-btn:nth-child(2) {
            animation: moodButtonPop 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.38s forwards;
        }

        .feature-showcase--progress.visible .mood-btn:nth-child(3) {
            animation: moodButtonPop 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.46s forwards;
        }

        .feature-showcase--progress.visible .mood-btn:nth-child(4) {
            animation: moodButtonPop 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.54s forwards;
        }

        .feature-showcase--progress.visible .mood-btn:nth-child(5) {
            animation: moodButtonPop 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.62s forwards;
        }

        /* Chart card - slide in with scale */
        .progress-chart-card {
            opacity: 0;
            transform: translateY(40px) scale(0.95);
        }

        .feature-showcase--progress.visible .progress-chart-card {
            animation: chartCardSlideIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
        }

        /* Chart line - draw effect */
        .progress-chart .chart-line {
            stroke-dasharray: 600;
            stroke-dashoffset: 600;
        }

        .feature-showcase--progress.visible .chart-line {
            animation: drawProgressLine 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
        }

        /* Chart area - fade in */
        .progress-chart .chart-area {
            opacity: 0;
            transition: opacity 0.8s ease 1.2s;
        }

        .feature-showcase--progress.visible .chart-area {
            opacity: 1;
        }

        /* Chart dots - pop in with stagger */
        .progress-chart .chart-dot {
            opacity: 0;
            transform: scale(0);
        }

        .feature-showcase--progress.visible .chart-dot:nth-of-type(4) {
            animation: fadeInProgressDot 0.4s cubic-bezier(0.22, 1, 0.36, 1) 1.5s forwards;
        }

        .feature-showcase--progress.visible .chart-dot:nth-of-type(5) {
            animation: fadeInProgressDot 0.4s cubic-bezier(0.22, 1, 0.36, 1) 1.65s forwards;
        }

        .feature-showcase--progress.visible .chart-dot:nth-of-type(6) {
            animation: fadeInProgressDot 0.4s cubic-bezier(0.22, 1, 0.36, 1) 1.8s forwards;
        }

        .feature-showcase--progress.visible .chart-dot:nth-of-type(7) {
            animation: fadeInProgressDot 0.4s cubic-bezier(0.22, 1, 0.36, 1) 1.95s forwards;
        }

        .feature-showcase--progress.visible .chart-dot:nth-of-type(8) {
            animation: fadeInProgressDot 0.4s cubic-bezier(0.22, 1, 0.36, 1) 2.1s forwards;
        }

        /* Latest dot has extra pulse */
        .feature-showcase--progress.visible .chart-dot--latest {
            animation: fadeInProgressDot 0.4s cubic-bezier(0.22, 1, 0.36, 1) 2.1s forwards,
                       fadeInDotPulse 0.5s ease 2.5s;
        }

        /* Chart values - slide in */
        .progress-chart-values span {
            opacity: 0;
            transform: translateX(-20px);
        }

        .feature-showcase--progress.visible .progress-chart-values .value-before {
            animation: slideInValue 0.5s ease 2.3s forwards;
        }

        .feature-showcase--progress.visible .progress-chart-values .value-arrow {
            animation: slideInValue 0.5s ease 2.45s forwards;
        }

        .feature-showcase--progress.visible .progress-chart-values .value-after {
            animation: slideInValue 0.5s ease 2.6s forwards;
        }

        .feature-showcase--progress.visible .progress-chart-values .value-change {
            animation: slideInValue 0.5s ease 2.75s forwards;
        }

        /* Mobile responsive - faster animations */
        @media (max-width: 768px) {
            .feature-showcase--progress.visible .mood-btn:nth-child(1) { animation-delay: 0.2s; }
            .feature-showcase--progress.visible .mood-btn:nth-child(2) { animation-delay: 0.26s; }
            .feature-showcase--progress.visible .mood-btn:nth-child(3) { animation-delay: 0.32s; }
            .feature-showcase--progress.visible .mood-btn:nth-child(4) { animation-delay: 0.38s; }
            .feature-showcase--progress.visible .mood-btn:nth-child(5) { animation-delay: 0.44s; }

            .feature-showcase--progress.visible .progress-chart-card {
                animation-delay: 0.6s;
                animation-duration: 0.5s;
            }

            .feature-showcase--progress.visible .chart-line {
                animation-delay: 0.8s;
                animation-duration: 1s;
            }

            .feature-showcase--progress.visible .chart-dot:nth-of-type(4) { animation-delay: 1s; }
            .feature-showcase--progress.visible .chart-dot:nth-of-type(5) { animation-delay: 1.1s; }
            .feature-showcase--progress.visible .chart-dot:nth-of-type(6) { animation-delay: 1.2s; }
            .feature-showcase--progress.visible .chart-dot:nth-of-type(7) { animation-delay: 1.3s; }
            .feature-showcase--progress.visible .chart-dot:nth-of-type(8) { animation-delay: 1.4s; }

            .feature-showcase--progress.visible .progress-chart-values .value-before { animation-delay: 1.5s; }
            .feature-showcase--progress.visible .progress-chart-values .value-arrow { animation-delay: 1.6s; }
            .feature-showcase--progress.visible .progress-chart-values .value-after { animation-delay: 1.7s; }
            .feature-showcase--progress.visible .progress-chart-values .value-change { animation-delay: 1.8s; }
        }

        /* Reduced motion support - show all elements immediately */
        @media (prefers-reduced-motion: reduce) {
            .feature-showcase--progress .mood-btn,
            .feature-showcase--progress .progress-chart-card,
            .feature-showcase--progress .chart-line,
            .feature-showcase--progress .chart-area,
            .feature-showcase--progress .chart-dot,
            .feature-showcase--progress .progress-chart-values span {
                opacity: 1 !important;
                transform: none !important;
                animation: none !important;
            }

            .feature-showcase--progress .chart-line {
                stroke-dashoffset: 0 !important;
            }
        }
        .feature-showcase--exercises .breathing-demo {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .feature-showcase--exercises.visible .breathing-demo {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── Final CTA Section ── */
        .final-cta {
            padding: 120px 24px;
            text-align: center;
            background: var(--bg-surface);
            position: relative;
        }
        .final-cta h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 32px;
            letter-spacing: -1px;
        }
        .final-cta .btn-primary {
            font-size: 1.1rem;
            padding: 18px 48px;
        }

        /* ── Scroll Animations ── */
        .fade-up-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .fade-up-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── Value Props ── */
        .value-props {
            padding: 100px 24px; background: var(--bg-surface);
        }
        .value-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px;
            max-width: 1100px; margin: 0 auto;
        }
        .value-card {
            padding: 32px 24px; border-radius: var(--radius);
            background: var(--bg-card); border: 1px solid var(--border-subtle);
            transition: var(--transition); text-align: center;
            opacity: 0; transform: translateY(20px);
        }
        .value-card.visible { opacity: 1; transform: translateY(0); }
        .value-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15),
                        0 0 0 1px rgba(139, 92, 246, 0.1);
        }
        .value-card:hover .value-icon {
            transform: scale(1.1);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
        }
        .value-icon {
            width: 48px; height: 48px; border-radius: var(--radius-sm);
            background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(139,92,246,0.05));
            border: 1px solid rgba(139,92,246,0.1);
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 16px;
            transition: all 0.3s var(--spring);
        }
        .value-card:hover .value-icon svg {
            animation: iconPulse 1.5s ease-in-out infinite;
        }
        @keyframes iconPulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.9;
            }
        }
        .value-card h3 {
            font-size: 1rem; font-weight: 600; margin-bottom: 8px;
            letter-spacing: -0.3px;
        }
        .value-card p {
            font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6;
        }

        /* ── Form Section ── */
        .form-section {
            padding: 80px 24px 120px; position: relative;
            min-height: 100vh; display: flex; flex-direction: column;
            align-items: center; justify-content: center;
        }
        .form-section-header {
            text-align: center; margin-bottom: 48px;
        }
        .form-section-header h2 {
            font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700;
            letter-spacing: -0.5px; margin-bottom: 12px;
        }
        .form-section-header p {
            font-size: 0.95rem; color: var(--text-secondary);
        }
        .form-wrapper {
            width: 100%; max-width: 560px; min-height: 420px;
            background: var(--bg-surface); border-radius: var(--radius);
            border: 1px solid var(--border-subtle);
            border-top: 1px solid rgba(139, 92, 246, 0.15);
            padding: 0; position: relative; overflow: hidden;
            box-shadow: 0 4px 64px rgba(0,0,0,0.3), 0 0 0 1px var(--border-subtle),
                        inset 0 1px 0 rgba(139, 92, 246, 0.06);
        }

        /* Progress bar */
        .form-progress {
            height: 3px; background: rgba(139, 92, 246, 0.06);
        }
        .form-progress-bar {
            height: 100%; background: linear-gradient(90deg, var(--violet-dark), var(--violet), var(--violet-soft));
            transition: width 0.5s var(--spring);
            border-radius: 0 2px 2px 0;
            box-shadow: 0 0 12px rgba(139,92,246,0.3);
        }

        /* Step container */
        .form-step-inner {
            padding: 48px 40px 40px;
        }
        .form-step { display: none; }
        .form-step.active {
            display: block;
            animation: stepFadeIn 0.4s var(--spring);
        }
        .form-step.slide-out {
            display: block;
            animation: stepFadeOut 0.3s ease forwards;
        }
        @keyframes stepFadeIn {
            from { opacity: 0; transform: translateX(30px) scale(0.98); }
            to { opacity: 1; transform: translateX(0) scale(1); }
        }
        @keyframes stepFadeOut {
            from { opacity: 1; transform: translateX(0) scale(1); }
            to { opacity: 0; transform: translateX(-30px) scale(0.98); }
        }

        /* Step header */
        .form-step-count {
            font-size: 0.72rem; color: var(--text-muted); margin-bottom: 12px;
            font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
        }
        .form-step h2 {
            font-size: clamp(1.2rem, 3vw, 1.5rem); font-weight: 700;
            color: var(--text-primary); margin-bottom: 8px; line-height: 1.4;
            letter-spacing: -0.3px;
        }
        .form-step-sub {
            font-size: 0.88rem; color: var(--text-secondary);
            margin-bottom: 28px; font-weight: 400;
            line-height: 1.5;
        }

        /* Progress dots */
        .form-dots {
            display: flex; justify-content: center; gap: 6px;
            padding: 0 40px 32px;
        }
        .form-dot {
            width: 8px; height: 8px; border-radius: 50%;
            background: rgba(139, 92, 246, 0.12);
            transition: all 0.4s var(--spring);
        }
        .form-dot.active {
            background: var(--violet);
            box-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
        }
        .form-dot.done { background: rgba(139, 92, 246, 0.35); }

        /* Multi-select pills */
        .pill-grid {
            display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px;
        }
        .pill {
            padding: 10px 20px; border-radius: 50px; font-size: 0.88rem;
            font-family: inherit; font-weight: 500; cursor: pointer;
            background: var(--bg-card); color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
            transition: all 0.2s ease; user-select: none;
            position: relative;
            overflow: hidden;
        }
        .pill::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                transparent,
                rgba(139, 92, 246, 0.2),
                transparent);
            transition: left 0.5s ease;
        }
        .pill:hover::before {
            left: 100%;
        }
        .pill:hover {
            border-color: var(--border-hover);
            color: var(--text-primary);
            background: var(--bg-card-hover);
        }
        .pill.selected {
            background: var(--violet); color: white;
            border-color: var(--violet);
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
            transition: all 0.25s ease;
            animation: pillSelect 0.4s var(--bounce);
        }
        @keyframes pillSelect {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        .pill:active { transform: scale(0.95); }

        /* Single-select cards */
        .option-grid { display: grid; gap: 10px; }
        .option-card {
            padding: 16px 20px; border-radius: var(--radius-sm);
            background: var(--bg-card); color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
            cursor: pointer; transition: all 0.2s ease;
            font-size: 0.92rem; font-weight: 500;
            font-family: inherit; text-align: left;
            display: flex; align-items: center; gap: 12px;
        }
        .option-card:hover {
            border-color: var(--border-hover);
            color: var(--text-primary);
            background: var(--bg-card-hover);
            transform: translateY(-2px);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.08);
        }
        .option-card.selected {
            background: var(--violet); color: white;
            border-color: var(--violet);
            box-shadow: 0 4px 16px rgba(139, 92, 246, 0.2);
        }
        /* Larger companion cards for step 4 */
        .option-grid--companions {
            grid-template-columns: repeat(3, 1fr); gap: 12px;
        }
        .option-card--large {
            flex-direction: column; text-align: center;
            padding: 24px 16px; gap: 4px;
        }
        .option-card--large .option-name {
            font-size: 1rem; font-weight: 600; display: block;
        }
        .option-card--large .option-desc {
            font-size: 0.78rem; opacity: 0.6;
        }

        /* Text input */
        .form-input-group { margin-bottom: 28px; }
        .form-text-input {
            width: 100%; padding: 16px 20px; border-radius: var(--radius-sm);
            background: var(--bg-card); color: var(--text-primary);
            border: 1px solid var(--border-subtle);
            font-size: 1rem; font-family: inherit; outline: none;
            transition: var(--transition);
        }
        .form-text-input::placeholder { color: var(--text-muted); }
        .form-text-input:focus {
            border-color: var(--violet);
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
        }

        /* Buttons */
        .form-btn {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--violet); color: white; border: none;
            padding: 14px 32px; border-radius: 50px; font-size: 0.92rem;
            font-weight: 600; cursor: pointer; font-family: inherit;
            transition: var(--transition); opacity: 0.3; pointer-events: none;
            letter-spacing: -0.2px;
        }
        .form-btn.enabled {
            opacity: 1; pointer-events: auto;
        }
        .form-btn.enabled:hover {
            background: var(--violet-dark);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25);
            transform: translateY(-2px);
        }

        /* Back button */
        .form-back {
            display: inline-flex; align-items: center; gap: 4px;
            color: var(--text-secondary); font-size: 0.82rem; font-weight: 500;
            cursor: pointer; border: none; background: none;
            font-family: inherit; transition: var(--transition);
            margin-bottom: 16px; padding: 4px 0;
        }
        .form-back:hover { color: var(--violet-soft); transform: translateX(-2px); }

        /* Completion screen */
        .form-completion {
            text-align: center; padding: 48px 0 24px;
        }
        .form-completion-check {
            width: 72px; height: 72px; border-radius: 50%;
            background: linear-gradient(135deg, var(--violet), var(--violet-dark));
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 24px;
            animation: checkPop 0.6s var(--bounce);
            box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
        }
        @keyframes checkPop {
            0% { transform: scale(0); }
            60% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        .form-completion h2 {
            font-size: 1.5rem; font-weight: 700; margin-bottom: 8px;
            letter-spacing: -0.5px;
        }
        .form-completion p {
            font-size: 0.92rem; color: var(--text-secondary); line-height: 1.6;
            max-width: 360px; margin: 0 auto;
        }

        /* Email-first card styles */
        .waitlist-social-proof {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-top: 24px;
        }

        .waitlist-avatars {
            display: flex;
            gap: -8px;
        }

        .waitlist-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid var(--bg-deep);
            margin-left: -8px;
        }

        .waitlist-avatar:first-child {
            margin-left: 0;
        }

        .waitlist-count {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .email-first-card {
            background: var(--bg-card);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: var(--radius);
            padding: 48px 40px;
            max-width: 560px;
            margin: 0 auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .email-first-title {
            font-size: 1.8rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 16px;
            text-align: center;
        }

        .email-first-subtitle {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 32px;
            text-align: center;
        }

        .email-first-input {
            text-align: center;
            font-size: 1rem;
        }

        .email-first-benefits {
            margin-top: 32px;
            text-align: center;
        }

        .email-first-benefits-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .email-first-benefits-list {
            list-style: none;
            padding: 0;
            margin: 0 0 16px 0;
        }

        .email-first-benefits-list li {
            font-size: 0.85rem;
            color: var(--text-secondary);
            padding: 4px 0;
        }

        .email-first-benefits-list li::before {
            content: '• ';
            color: var(--violet);
            font-weight: bold;
            margin-right: 8px;
        }

        .email-first-disclaimer {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-style: italic;
        }

        .form-btn-center {
            display: block;
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            text-align: center;
            justify-content: center;
        }

        /* ── Footer ── */
        footer {
            padding: 60px 24px 48px; text-align: center;
            border-top: 1px solid var(--border-subtle);
        }
        footer .logo {
            margin-bottom: 12px; display: block;
            font-size: 1.35rem; font-weight: 800;
        }
        footer .logo span { color: var(--violet); }
        footer p { font-size: 0.82rem; color: var(--text-muted); }
        footer .footer-note {
            margin-top: 8px; font-size: 0.75rem; color: var(--text-muted); opacity: 0.6;
        }
        footer .footer-legal {
            margin-top: 20px; display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
        }
        footer .footer-legal a {
            font-size: 0.78rem; color: var(--text-muted); text-decoration: none;
            transition: color 0.2s ease;
        }
        footer .footer-legal a:hover { color: var(--violet-soft); }

        /* ── Cookie Consent ── */
        .consent-banner {
            position: fixed; bottom: 0; left: 0; right: 0;
            z-index: 10001; padding: 16px;
            transform: translateY(0);
            transition: transform 0.5s var(--spring), opacity 0.4s ease;
        }
        .consent-banner.hidden {
            transform: translateY(100%); opacity: 0; pointer-events: none;
        }
        .consent-inner {
            max-width: 600px; margin: 0 auto;
            background: rgba(20, 20, 32, 0.95);
            backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 20px 24px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            display: flex; align-items: center; gap: 20px;
        }
        .consent-text {
            font-size: 0.85rem; color: var(--text-secondary);
            line-height: 1.5; flex: 1;
        }
        .consent-actions { display: flex; gap: 8px; flex-shrink: 0; }
        .consent-btn {
            font-family: inherit; font-size: 0.85rem;
            font-weight: 600; padding: 8px 18px; border-radius: var(--radius-xs);
            cursor: pointer; transition: var(--transition); border: none;
            white-space: nowrap;
        }
        .consent-accept { background: var(--violet); color: white; }
        .consent-accept:hover { background: var(--violet-dark); }
        .consent-decline {
            background: transparent; color: var(--text-muted);
            border: 1px solid var(--border-subtle);
        }
        .consent-decline:hover { background: rgba(139, 92, 246, 0.06); }
        @keyframes consentSlideUp {
            from { transform: translateY(100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        .consent-banner:not(.hidden) {
            animation: consentSlideUp 0.6s var(--spring) forwards;
        }

        /* ── Scroll Reveal ── */
        .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        /* ── Responsive ── */
        @media (max-width: 900px) {
            .value-grid { grid-template-columns: repeat(2, 1fr); }
            .option-grid--companions { grid-template-columns: 1fr; }
            .comparison-grid { grid-template-columns: 1fr; }
            .feature-layout, .feature-layout--reverse {
                flex-direction: column;
                gap: 40px;
            }
            .feature-phone { width: 260px; height: 520px; }
        }
        @media (max-width: 768px) {
            .hero-layout {
                flex-direction: column-reverse; gap: 40px;
                justify-content: center;
            }
            .hero-content { max-width: 100%; text-align: center; }
            .hero-sub { margin-left: auto; margin-right: auto; }
            .hero-actions { justify-content: center; }
            .phone-frame { width: 240px; height: 490px; }
            .phone-msg { font-size: 0.68rem; }
            .problem-section { padding: 80px 24px; }
            .comparison-section { padding: 80px 24px; }
            .feature-showcase { padding: 80px 24px; }
            .final-cta { padding: 80px 24px; }

            /* Email-first card mobile */
            .email-first-card {
                padding: 32px 24px;
            }
            .email-first-title {
                font-size: 1.4rem;
            }
            .email-first-subtitle {
                font-size: 0.9rem;
            }
            .waitlist-social-proof {
                flex-direction: column;
                gap: 12px;
            }

            /* Mobile animation optimizations */
            .chart-bar-fill {
                transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            }
            .comparison-card, .feature-content, .feature-visual, .value-card {
                transition: opacity 0.4s ease, transform 0.4s ease;
            }
            .form-step.active { animation: stepFadeIn 0.3s var(--spring); }
            .form-step.slide-out { animation: stepFadeOut 0.2s ease forwards; }
            .hero-badge-dot { animation-duration: 3s; }

            /* Simplified flying animations for mobile */
            .community-post {
                transform: translateX(-80%) scale(0.7);
            }

            @keyframes flyInFromLeftTop {
                0% {
                    opacity: 0;
                    transform: translateX(-80%) translateY(-30%) scale(0.7);
                    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.4);
                }
                100% {
                    opacity: 1;
                    transform: translateX(0) translateY(0) scale(1.0);
                    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
                }
            }

            @keyframes flyInFromRight {
                0% {
                    opacity: 0;
                    transform: translateX(80%) scale(0.7);
                    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.4);
                }
                100% {
                    opacity: 1;
                    transform: translateX(0) scale(1.0);
                    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
                }
            }

            @keyframes flyInFromBottomRight {
                0% {
                    opacity: 0;
                    transform: translateX(60%) translateY(80%) scale(0.7);
                    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.4);
                }
                100% {
                    opacity: 1;
                    transform: translateX(0) translateY(0) scale(1.0);
                    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
                }
            }

            .community-post:nth-child(1).fly-in {
                animation: flyInFromLeftTop 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0ms forwards;
            }

            .community-post:nth-child(2).fly-in {
                animation: flyInFromRight 0.85s cubic-bezier(0.22, 1, 0.36, 1) 120ms forwards;
            }

            .community-post:nth-child(3).fly-in {
                animation: flyInFromBottomRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) 240ms forwards;
            }

            /* Progress Demo */
            .progress-demo {
                padding: 24px;
            }
            .mood-scale-buttons {
                gap: 8px;
            }
            .mood-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            .progress-chart {
                height: 100px;
            }

            /* Breathing Demo */
            .breathing-demo {
                padding: 28px 20px;
            }
            .breathing-circle {
                width: 160px;
                height: 160px;
            }
            .breathing-circle-inner {
                width: 130px;
                height: 130px;
            }
            .breathing-info {
                flex-direction: column;
                gap: 12px;
            }
            .breathing-info-item {
                justify-content: center;
                width: 100%;
            }

            /* Section CTA */
            .section-cta {
                padding: 40px 20px;
            }
        }
        @media (max-width: 600px) {
            .hero { padding: 120px 20px 60px; min-height: auto; }
            .hero h1 { font-size: 2rem; letter-spacing: -0.8px; }
            .hero-actions { flex-direction: column; align-items: center; }
            .phone-frame { width: 220px; height: 450px; }
            .phone-msg { font-size: 0.75rem; }
            .phone-chat-header { padding: 28px 12px 10px; }
            .phone-avatar { width: 28px; height: 28px; }
            .phone-header-name { font-size: 0.72rem; }

            /* Mobile Avatar Blob Adjustments */
            @keyframes avatarBlobOrbit1 {
                0% { transform: translate(0, -28px); }
                25% { transform: translate(28px, 0); }
                50% { transform: translate(0, 28px); }
                75% { transform: translate(-28px, 0); }
                100% { transform: translate(0, -28px); }
            }
            @keyframes avatarBlobOrbit2 {
                0% { transform: translate(28px, 0); }
                25% { transform: translate(0, 28px); }
                50% { transform: translate(-28px, 0); }
                75% { transform: translate(0, -28px); }
                100% { transform: translate(28px, 0); }
            }
            @keyframes avatarBlobOrbit3 {
                0% { transform: translate(0, 28px); }
                25% { transform: translate(-28px, 0); }
                50% { transform: translate(0, -28px); }
                75% { transform: translate(28px, 0); }
                100% { transform: translate(0, 28px); }
            }
            @keyframes avatarBlobOrbit4 {
                0% { transform: translate(-28px, 0); }
                25% { transform: translate(0, -28px); }
                50% { transform: translate(28px, 0); }
                75% { transform: translate(0, 28px); }
                100% { transform: translate(-28px, 0); }
            }
            .phone-input-placeholder { font-size: 0.7rem; }

            /* Progress Demo - smaller on mobile */
            .mood-scale-buttons {
                gap: 6px;
            }
            .mood-btn {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }

            /* Breathing Demo - smaller on mobile */
            .breathing-circle {
                width: 140px;
                height: 140px;
            }
            .breathing-circle-inner {
                width: 110px;
                height: 110px;
            }

            .value-props { padding: 60px 20px; }
            .value-grid { grid-template-columns: 1fr; }
            .form-section { padding: 60px 16px 80px; }
            .form-step-inner { padding: 36px 24px 28px; }
            .form-dots { padding: 0 24px 24px; }
            footer .footer-legal { gap: 16px; }
            .consent-inner {
                flex-direction: column; text-align: center;
                gap: 12px; padding: 16px;
            }
            .consent-actions { width: 100%; justify-content: center; }
            .problem-section { padding: 60px 20px; }
            .comparison-section { padding: 60px 20px; }
            .feature-showcase { padding: 60px 20px; }
            .final-cta { padding: 60px 20px; }
            .feature-phone { width: 240px; height: 480px; }
            .chart-container { padding: 24px 16px; }
            .community-feed { padding: 16px; }

            /* Aggressive mobile optimizations */
            .chart-bar-track {
                overflow: visible;
            }
            .chart-bar-fill {
                transition: width 0.4s ease-out;
                font-size: 0;
            }
            .chart-bar-fill::after {
                display: block;
                font-size: 0.75rem;
            }
            .chart-bar-label {
                font-size: 0.75rem;
                width: 80px;
            }
            .comparison-card, .feature-content, .feature-visual,
            .value-card, .fade-up-scroll {
                transition: opacity 0.3s ease, transform 0.3s ease;
            }
            .hero-badge-dot { animation: none; opacity: 1; }
        }

        /* ── Reduced Motion ── */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
            .hero-content .hero-badge, .hero-content h1,
            .hero-content .hero-sub, .hero-content .hero-actions,
            .value-card, .form-step.active,
            .fade-up-scroll, .comparison-card, .feature-content, .feature-visual {
                opacity: 1 !important; transform: none !important;
            }
            .phone-mockup { opacity: 1 !important; transform: none !important; }
            .phone-msg { opacity: 1 !important; transform: none !important; }
            .phone-typing-dot { animation: none !important; opacity: 0.6 !important; }
            .form-completion-check { animation: none !important; }
            .pill:active { transform: none !important; }
            .ambient-orb { animation: none !important; }
            .phone-avatar-blob-center,
            .phone-avatar-blob-orbit-1,
            .phone-avatar-blob-orbit-2,
            .phone-avatar-blob-orbit-3,
            .phone-avatar-blob-orbit-4 { animation: none !important; }
            .breathing-circle { animation: none !important; transform: scale(0.75) !important; }
            .breathing-instruction { animation: none !important; }
            .chart-line { animation: none !important; stroke-dashoffset: 0 !important; }
            .chart-dot { animation: none !important; opacity: 1 !important; }
            .breathing-card-btn { animation: none !important; }
            .mood-btn { animation: none !important; }
            .btn-primary:hover svg { animation: none !important; }
            .btn-primary.pulse { animation: none !important; }
            .value-card:hover .value-icon svg { animation: none !important; }
            .chart-bar-fill { width: var(--bar-width) !important; }
            .community-post {
                opacity: 1 !important;
                transform: none !important;
                animation: none !important;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
            }
        }

        /* ── Preloader ── */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-deep);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 40px;
            transition: opacity 0.6s ease, visibility 0.6s ease;
            overflow: hidden;
        }

        #preloader.fade-out {
            opacity: 0;
            visibility: hidden;
        }

        /* Liquid Blob Container */
        .liquid-blob-container {
            position: relative;
            width: 240px;
            height: 240px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* SVG Canvas */
        .liquid-blob-svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.3));
        }

        /* Blob Circles */
        .blob-circle {
            transform-origin: center;
            transform-box: fill-box;
        }

        /* Central Breathing Blob */
        .blob-center {
            animation: blobBreathe 9s ease-in-out infinite;
        }

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

        /* Orbital Blob Animations */
        .blob-orbit-1 {
            animation: blobOrbit1 9s ease-in-out infinite;
        }

        @keyframes blobOrbit1 {
            0% {
                transform: translate(0, -45px);
            }
            25% {
                transform: translate(45px, 0);
            }
            50% {
                transform: translate(0, 45px);
            }
            75% {
                transform: translate(-45px, 0);
            }
            100% {
                transform: translate(0, -45px);
            }
        }

        .blob-orbit-2 {
            animation: blobOrbit2 9s ease-in-out infinite;
        }

        @keyframes blobOrbit2 {
            0% {
                transform: translate(45px, 0);
            }
            25% {
                transform: translate(0, 45px);
            }
            50% {
                transform: translate(-45px, 0);
            }
            75% {
                transform: translate(0, -45px);
            }
            100% {
                transform: translate(45px, 0);
            }
        }

        .blob-orbit-3 {
            animation: blobOrbit3 9s ease-in-out infinite;
        }

        @keyframes blobOrbit3 {
            0% {
                transform: translate(0, 45px);
            }
            25% {
                transform: translate(-45px, 0);
            }
            50% {
                transform: translate(0, -45px);
            }
            75% {
                transform: translate(45px, 0);
            }
            100% {
                transform: translate(0, 45px);
            }
        }

        .blob-orbit-4 {
            animation: blobOrbit4 9s ease-in-out infinite;
        }

        @keyframes blobOrbit4 {
            0% {
                transform: translate(-45px, 0);
            }
            25% {
                transform: translate(0, -45px);
            }
            50% {
                transform: translate(45px, 0);
            }
            75% {
                transform: translate(0, 45px);
            }
            100% {
                transform: translate(-45px, 0);
            }
        }

        /* Glassmorphism Overlay */
        .blob-glass-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: radial-gradient(
                circle at 30% 30%,
                rgba(167, 139, 250, 0.15),
                rgba(139, 92, 246, 0.1),
                transparent
            );
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            pointer-events: none;
            animation: glassShimmer 9s ease-in-out infinite;
        }

        @keyframes glassShimmer {
            0%, 100% {
                opacity: 0.6;
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                opacity: 0.8;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }

        /* Text Overlay */
        .blob-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Inter', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.95);
            letter-spacing: -0.02em;
            z-index: 10;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
            animation: textPulse 9s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes textPulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                transform: translate(-50%, -50%) scale(1.03);
            }
        }

        /* Tagline */
        .preloader-tagline {
            font-size: 0.95rem;
            color: var(--text-muted);
            font-weight: 400;
            opacity: 0;
            animation: taglineFade 2s ease-in-out 0.8s forwards;
        }

        @keyframes taglineFade {
            0% { opacity: 0; }
            100% { opacity: 0.65; }
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .liquid-blob-container {
                width: 200px;
                height: 200px;
            }

            .blob-glass-overlay {
                width: 115px;
                height: 115px;
            }

            .blob-text {
                font-size: 1.25rem;
            }

            .preloader-tagline {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .liquid-blob-container {
                width: 180px;
                height: 180px;
            }

            .blob-glass-overlay {
                width: 100px;
                height: 100px;
            }

            .blob-text {
                font-size: 1.1rem;
            }

            .preloader-tagline {
                font-size: 0.8rem;
            }
        }

        /* Reduced Motion Support */
        @media (prefers-reduced-motion: reduce) {
            .blob-center,
            .blob-orbit-1,
            .blob-orbit-2,
            .blob-orbit-3,
            .blob-orbit-4,
            .blob-glass-overlay,
            .blob-text {
                animation: none !important;
                transform: translate(0, 0) !important;
            }

            .blob-orbit-1,
            .blob-orbit-2,
            .blob-orbit-3,
            .blob-orbit-4 {
                display: none;
            }

            .blob-text {
                transform: translate(-50%, -50%) !important;
            }

            .blob-glass-overlay {
                transform: translate(-50%, -50%) !important;
                opacity: 0.6;
            }

            .preloader-tagline {
                animation: none !important;
                opacity: 0.65 !important;
            }

            /* New section animations */
            .breathing-circle,
            .breathing-circle-inner {
                animation: none !important;
                transform: scale(0.85) !important;
            }

            .breathing-instruction {
                animation: none !important;
                opacity: 1 !important;
            }

            .chart-line,
            .chart-dot,
            .chart-area {
                animation: none !important;
                opacity: 1 !important;
                stroke-dashoffset: 0 !important;
            }
        }
