/* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        /* Soft gradient background mesh */
        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 70%;
            height: 130%;
            background: radial-gradient(ellipse at center,
                    rgba(94, 196, 198, 0.12) 0%,
                    rgba(94, 196, 198, 0.05) 40%,
                    transparent 70%);
            pointer-events: none;
            animation: breathe 8s infinite var(--ease-breathe);
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 50%;
            height: 80%;
            background: radial-gradient(ellipse at center,
                    rgba(193, 122, 91, 0.08) 0%,
                    transparent 60%);
            pointer-events: none;
            animation: breathe 10s infinite var(--ease-breathe);
            animation-delay: 2s;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 600px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px;
            background: linear-gradient(135deg, var(--cyan-pale) 0%, var(--warm-cream) 100%);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--gray-700);
            margin-bottom: 24px;
            border: 1px solid rgba(94, 196, 198, 0.15);
            animation: fadeInUp 0.8s var(--ease-breathe) forwards;
        }

        .hero-badge svg {
            width: 18px;
            height: 18px;
            color: var(--cyan-primary);
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 600;
            line-height: 1.1;
            color: var(--charcoal);
            margin-bottom: 24px;
            letter-spacing: -0.03em;
            animation: fadeInUp 0.8s var(--ease-breathe) 0.1s forwards;
            opacity: 0;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--cyan-primary) 0%, var(--cyan-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--gray-600);
            margin-bottom: 40px;
            max-width: 500px;
            line-height: 1.6;
            animation: fadeInUp 0.8s var(--ease-breathe) 0.2s forwards;
            opacity: 0;
        }

        .hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s var(--ease-breathe) 0.3s forwards;
            opacity: 0;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: var(--cyan-primary);
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 50px;
            transition: all 0.4s var(--ease-gentle);
            box-shadow: 0 8px 24px rgba(94, 196, 198, 0.25);
        }

        .btn-primary:hover {
            background: var(--cyan-light);
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(94, 196, 198, 0.35);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;

            color: var(--gray-700);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 50px;
            border: 2px solid var(--gray-200);
            transition: all 0.4s var(--ease-gentle);
        }

        .btn-secondary:hover {
            border-color: var(--cyan-primary);
            color: var(--cyan-primary);
            transform: translateY(-2px);
        }

        .hero-visual {
            position: relative;
            animation: fadeInUp 0.8s var(--ease-breathe) 0.4s forwards;
            opacity: 0;
        }

        .phone-mockup {
            position: relative;
            max-width: 260px;
            margin: 0 auto;
        }

        .phone-frame {
            background: #1a1c20;
            border-radius: 56px;
            padding: 16px;
            box-shadow:
                0 40px 80px rgba(0, 0, 0, 0.5),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
            border: 2px solid #2d3036;
        }

        .phone-screen {
            background: var(--white);
            border-radius: 40px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .phone-screen.hero-screen {
            aspect-ratio: 9/16;
        }

        .phone-screen.guidance-screen {
            aspect-ratio: 1080/2300;
            padding: 0;
            background: #fff;
        }

        .phone-screen img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .phone-screen.hero-screen img {
            background: #000;

        }

        .phone-screen.guidance-screen img {
            background: #fff;
        }

        .placeholder-visual {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, #f0f4f8 0%, #e2e8f0 100%);
            color: var(--gray-400);
            font-size: 0.9rem;
            text-align: center;
            padding: 24px;
        }

        .placeholder-visual svg {
            width: 56px;
            height: 56px;
            margin-bottom: 16px;
            opacity: 0.5;
        }

        /* Section Styling */
        section {
            padding: 120px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            color: var(--cyan-primary);
            margin-bottom: 20px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2.25rem, 4vw, 3.5rem);
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 20px;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--gray-600);
            max-width: 680px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Brain Dump Section */
        .brain-dump {
            background: var(--white);
            position: relative;
        }

        .brain-dump::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg,
                    transparent,
                    var(--cyan-soft),
                    transparent);
        }

        .dump-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .dump-card {
            background: var(--white);
            border-radius: 32px;
            padding: 24px;
            text-align: center;
            transition: all 0.5s var(--ease-gentle);
            border: 1px solid var(--gray-200);
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .dump-card:hover {
            transform: translateY(-8px);
            border-color: var(--cyan-primary);
            box-shadow: 0 32px 64px rgba(94, 196, 198, 0.15);
        }

        .dump-illustration-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            background: var(--warm-sand);
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-bottom: 20px;
        }

        .dump-illustration-wrapper img {
            width: 90%;
            height: 90%;
            object-fit: contain;
            transition: transform 0.6s var(--ease-gentle);
        }

        .dump-card:hover .dump-illustration-wrapper img {
            transform: scale(1.05);
        }

        .dump-title {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            color: var(--charcoal);
            margin: 0;
            background: var(--white);
            border: 1px solid var(--gray-200);
            padding: 8px 18px;
            border-radius: 50px;
            width: fit-content;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            white-space: nowrap;
            z-index: 2;
        }

        .dump-description {
            font-size: 0.95rem;
            color: var(--gray-600);
            line-height: 1.6;
            margin: 0;
            padding: 0 4px;
        }

        /* Executive Function Tools */
        .exec-tools {
            background: linear-gradient(180deg, var(--warm-sand) 0%, var(--white) 100%);
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .tool-card {
            background: var(--white);
            border-radius: 28px;
            padding: 40px 32px;
            text-align: center;
            border: 1px solid var(--gray-200);
            transition: all 0.5s var(--ease-gentle);
            position: relative;
        }

        .tool-card:hover {
            transform: translateY(-6px);
            border-color: var(--cyan-soft);
            box-shadow: 0 20px 44px rgba(94, 196, 198, 0.1);
        }

        .tool-icon-wrap {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, var(--cyan-primary) 0%, var(--cyan-light) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 28px rgba(94, 196, 198, 0.2);
            transition: all 0.5s var(--ease-gentle);
        }

        .tool-card:hover .tool-icon-wrap {
            transform: scale(1.1) rotate(-5deg);
        }

        .tool-icon-wrap svg {
            width: 36px;
            height: 36px;
            color: white;
        }

        .tool-title {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 12px;
        }

        .tool-description {
            font-size: 1rem;
            color: var(--gray-600);
            line-height: 1.75;
        }

        /* AI Search Section */
        .ai-search {
            background: var(--charcoal);
            position: relative;
            overflow: hidden;
        }

        .ai-search::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -20%;
            width: 60%;
            height: 130%;
            background: radial-gradient(ellipse at center,
                    rgba(94, 196, 198, 0.15) 0%,
                    transparent 60%);
            pointer-events: none;
            animation: pulse-soft 8s infinite var(--ease-breathe);
        }

        .ai-search .section-label {
            color: var(--cyan-soft);
        }

        .ai-search .section-title {
            color: var(--white);
        }

        .ai-search .section-subtitle {
            color: var(--gray-400);
        }

        .guidance-demo {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            min-height: 640px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 0;
        }

        .guidance-phone {
            width: 320px;
            z-index: 2;
            filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.5));
            transition: transform 0.6s var(--ease-breathe);
        }

        .guidance-demo:hover .guidance-phone {
            transform: scale(1.02) translateY(-5px);
        }

        .floating-query {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 18px 28px;
            border-radius: 24px;
            color: var(--white);
            font-size: 1rem;
            font-weight: 500;
            max-width: 280px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            animation: float-gentle 8s infinite ease-in-out;
            z-index: 3;
            line-height: 1.4;
        }

        .query-1 {
            top: 5%;
            left: 0%;
            animation-delay: 0s;
        }

        .query-2 {
            top: 35%;
            right: -5%;
            animation-delay: 2s;
        }

        .query-3 {
            bottom: 5%;
            left: 5%;
            animation-delay: 4s;
        }

        @media (max-width: 1024px) {
            .guidance-demo {
                flex-direction: column;
                min-height: auto;
                gap: 48px;
                padding: 40px 20px;
            }

            .floating-query {
                position: relative;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                bottom: auto !important;
                margin-bottom: 0;
                max-width: 100%;
                width: 100%;
                animation: none;
                transform: none !important;
            }

            .guidance-phone {
                order: -1;
                width: 300px;
            }
        }


        /* Promise Section */
        .promise {
            background: linear-gradient(180deg, var(--white) 0%, var(--cyan-pale) 100%);
        }

        .promise-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .promise-content {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .promise-item {
            display: flex;
            gap: 24px;
            padding: 32px;
            background: var(--white);
            border-radius: 24px;
            border: 1px solid var(--gray-200);
            transition: all 0.5s var(--ease-gentle);
        }

        .promise-item:hover {
            transform: translateX(8px);
            border-color: var(--cyan-soft);
            box-shadow: 0 12px 32px rgba(94, 196, 198, 0.12);
        }

        .promise-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--cyan-pale) 0%, var(--white) 100%);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .promise-icon svg {
            width: 32px;
            height: 32px;
            color: var(--cyan-primary);
        }

        .promise-text h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }

        .promise-text p {
            font-size: 1rem;
            color: var(--gray-600);
            line-height: 1.75;
        }

        .promise-visual {
            position: relative;
        }

        .promise-image {
            width: 100%;
            aspect-ratio: 4/3;
            background: var(--white);
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-400);
            font-size: 0.9rem;
            border: 1px solid var(--gray-200);
            box-shadow: 0 24px 48px rgba(94, 196, 198, 0.08);
        }

        /* MCP Integration Section */
        .mcp-integration {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--cyan-pale) 0%, var(--warm-sand) 100%);
            position: relative;
            overflow: hidden;
        }

        .mcp-integration::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--cyan-soft), transparent);
        }

        .mcp-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .mcp-description {
            font-size: 1.1rem;
            color: var(--gray-700);
            line-height: 1.75;
            margin-bottom: 32px;
        }

        .mcp-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: var(--cyan-primary);
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 50px;
            transition: all 0.4s var(--ease-gentle);
            box-shadow: 0 8px 24px rgba(94, 196, 198, 0.25);
        }

        .mcp-cta:hover {
            background: var(--cyan-light);
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(94, 196, 198, 0.35);
        }

        .mcp-cta svg {
            width: 20px;
            height: 20px;
        }

        .mcp-visual {
            position: relative;
        }

        .mcp-screenshot {
            width: 100%;
            border-radius: 24px;
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.03);
            transition: transform 0.5s var(--ease-gentle);
        }

        .mcp-visual:hover .mcp-screenshot {
            transform: translateY(-8px) rotate(1deg);
        }

        @media (max-width: 1024px) {
            .mcp-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .mcp-visual {
                order: 0;
            }

            .mcp-content {
                order: 1;
            }

            .mcp-screenshot {
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 640px) {
            .mcp-integration {
                padding: 80px 0;
            }
        }

        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, var(--cyan-primary) 0%, var(--cyan-light) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 140px 0;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -30%;
            width: 80%;
            height: 180%;
            background: radial-gradient(ellipse at center,
                    rgba(255, 255, 255, 0.12) 0%,
                    transparent 60%);
            pointer-events: none;
            animation: breathe 10s infinite var(--ease-breathe);
        }

        .final-cta .container {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 600;
            color: white;
            margin-bottom: 20px;
            letter-spacing: -0.03em;
            line-height: 1.15;
        }

        .cta-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 48px;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-white {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 40px;
            background: white;
            color: var(--cyan-primary);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            border-radius: 50px;
            transition: all 0.4s var(--ease-gentle);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
        }

        .btn-white:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
        }

        .store-badge {
            height: 56px;
            transition: all 0.3s var(--ease-gentle);
        }

        .store-badge:hover {
            transform: translateY(-4px) scale(1.03);
        }

        .store-badge img {
            height: 100%;
            width: auto;
        }

        /* Footer */
        footer {
            background: var(--charcoal);
            padding: 80px 0 40px;
            color: var(--gray-400);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand .logo {
            margin-bottom: 20px;
        }

        .footer-brand .logo span {
            color: white;
        }

        .footer-tagline {
            font-size: 1rem;
            line-height: 1.75;
            max-width: 350px;
            color: var(--gray-400);
        }

        .footer-column h4 {
            font-family: var(--font-display);
            font-weight: 600;
            color: white;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .footer-column ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-column a {
            color: var(--gray-400);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--cyan-soft);
        }

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

        .footer-disclaimer {
            font-size: 0.85rem;
            color: var(--gray-400);
            max-width: 600px;
            line-height: 1.7;
        }

        .footer-copyright {
            font-size: 0.9rem;
        }

        /* More Apps Modal */
        .more-apps-link {
            cursor: pointer;
        }

        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }

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

        .modal-content {
            background: white;
            border-radius: 24px;
            padding: 40px;
            max-width: 400px;
            width: 90%;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 0.3s var(--ease-breathe);
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--gray-400);
            cursor: pointer;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            background: var(--gray-100);
            color: var(--charcoal);
        }

        .modal-header {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 24px;
        }

        .app-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: var(--warm-sand);
            border-radius: 16px;
            text-decoration: none;
            transition: all 0.3s var(--ease-gentle);
            border: 2px solid transparent;
        }

        .app-card:hover {
            transform: translateY(-4px);
            border-color: var(--cyan-soft);
            box-shadow: 0 10px 30px rgba(94, 196, 198, 0.15);
        }

        .app-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            flex-shrink: 0;
        }

        .app-info h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 4px;
        }

        .app-info p {
            font-size: 0.85rem;
            color: var(--gray-600);
        }

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

            .hero-content {
                order: 1;
                max-width: 100%;
            }

            .hero-visual {
                order: 0;
            }

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

            .dump-grid,
            .tools-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

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

            .promise-visual {
                order: 0;
            }

            .promise-content {
                order: 1;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }
        }

        @media (max-width: 640px) {
            section {
                padding: 80px 0;
            }

            .hero {
                padding: 120px 0 80px;
            }

            .container {
                padding: 0 20px;
            }

            .section-header {
                margin-bottom: 60px;
            }

            .dump-card,
            .tool-card {
                padding: 32px 24px;
            }

            .promise-item {
                padding: 24px;
                gap: 20px;
            }

            .chat-bubble {
                padding: 24px;
            }

            .final-cta {
                padding: 100px 0;
            }

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