        /* ============================================
           CONVERSION-FOCUSED PREMIUM DESIGN
           Apple sophistication + Loom friendly + Converts
           ============================================ */

        body {
            background: var(--color-bg-beige);
            color: var(--color-text-primary);
        }

        /* Fix nav for light background */
        .nav {
            background: rgba(254, 251, 253, 0.9);
            backdrop-filter: blur(20px);
        }

        /* Smooth reveals */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }

        /* ============================================
           HERO - Time-Saving Hook
           ============================================ */
        .hero {
            display: flex;
            align-items: center;
            padding: 140px 0;
            background: var(--color-bg-beige);
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: radial-gradient(ellipse at 70% 30%, rgba(190, 82, 254, 0.06) 0%, transparent 60%);
            pointer-events: none;
        }

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

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(190, 82, 254, 0.1);
            border-radius: 100px;
            font-size: 14px;
            font-weight: 500;
            color: var(--color-primary);
            margin-bottom: 24px;
        }

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

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .hero h1 {
            font-size: clamp(40px, 5.5vw, 64px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: var(--color-text-primary);
            margin-bottom: 24px;
        }

        .hero h1 .highlight {
            background: var(--gradient-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 20px;
            line-height: 1.6;
            color: var(--color-text-secondary);
            margin-bottom: 32px;
            max-width: 480px;
        }

        .hero-cta-row {
            display: flex;
            align-items: center;
            gap: 24px;
            margin-bottom: 32px;
        }

        .btn-primary-hero {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 32px;
            background: var(--gradient-primary);
            color: white;
            font-family: var(--font-button);
            font-size: 16px;
            font-weight: 600;
            border-radius: 100px;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 4px 20px rgba(190, 82, 254, 0.3);
        }

        .btn-primary-hero:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(190, 82, 254, 0.4);
            color: white;
        }

        .btn-primary:hover {
            color: white!important;
        }

        .hero-link {
            font-size: 15px;
            color: var(--color-text-secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color 0.2s ease;
        }

        .hero-link:hover {
            color: var(--color-primary);
        }

        .hero-proof {
            display: flex;
            align-items: center;
            gap: 24px;
            padding-top: 24px;
            border-top: 1px solid var(--border-color);
        }

        .hero-proof-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--color-text-secondary);
        }

        .hero-proof-item svg {
            width: 18px;
            height: 18px;
            color: var(--color-success);
        }

        /* Hero Visual - Dashboard Preview */
        .hero-visual {
            position: relative;
        }

        .hero-dashboard {
            background: white;
            border-radius: 16px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
            overflow: hidden;
            border: 1px solid var(--border-color);
        }

        .dashboard-header {
            padding: 12px 16px;
            background: #fafafa;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .dashboard-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        .dashboard-dot.red { background: #ff5f57; }
        .dashboard-dot.yellow { background: #febc2e; }
        .dashboard-dot.green { background: #28c840; }

        .dashboard-content {
            padding: 24px;
        }

        .dashboard-stat-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 20px;
        }

        .dashboard-stat {
            background: var(--color-bg-light);
            border-radius: 12px;
            padding: 16px;
            text-align: center;
        }

        .dashboard-stat-value {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 700;
            color: var(--color-primary);
        }

        .dashboard-stat-label {
            font-size: 12px;
            color: var(--color-text-muted);
            margin-top: 4px;
        }

        .dashboard-agent-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .dashboard-agent {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: var(--color-bg-light);
            border-radius: 10px;
        }

        .dashboard-agent-icon {
            width: 36px;
            height: 36px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dashboard-agent-icon svg {
            width: 18px;
            height: 18px;
            color: white;
        }

        .dashboard-agent-info {
            flex: 1;
        }

        .dashboard-agent-name {
            font-weight: 600;
            font-size: 14px;
            color: var(--color-text-primary);
        }

        .dashboard-agent-status {
            font-size: 12px;
            color: var(--color-success);
        }

        .dashboard-agent-time {
            font-size: 12px;
            color: var(--color-text-muted);
        }

        /* Floating cards */
        .floating-metric {
            position: absolute;
            background: white;
            border-radius: 12px;
            padding: 16px 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: float 5s ease-in-out infinite;
        }

        .floating-metric-1 {
            top: 10%;
            right: -20px;
            animation-delay: 0s;
        }

        .floating-metric-2 {
            bottom: 15%;
            left: -30px;
            animation-delay: 1.5s;
        }

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

        .floating-metric-icon {
            width: 40px;
            height: 40px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .floating-metric-icon svg {
            width: 20px;
            height: 20px;
            color: var(--color-success);
        }

        .floating-metric-value {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 700;
            color: var(--color-text-primary);
        }

        .floating-metric-label {
            font-size: 12px;
            color: var(--color-text-muted);
        }

        /* ============================================
           PROBLEM SECTION
           ============================================ */
        .problem-section {
            padding: 120px 0;
            background: white;
        }

        .problem-header {
            text-align: center;
            margin: 0 auto 60px;
        }

	.problem-header p{
            max-width: 700px;
	    margin: auto;
        }

        .section-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--color-primary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 16px;
        }

        .problem-header h2 {
            font-size: clamp(32px, 4vw, 44px);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .problem-header p {
            font-size: 18px;
            color: var(--color-text-secondary);
        }

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

        .problem-card {
            background: var(--color-bg-light);
            border-radius: 16px;
            padding: 28px;
            text-align: center;
        }

        .problem-card-icon {
            width: 56px;
            height: 56px;
            background: rgba(239, 68, 68, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .problem-card-icon svg {
            width: 28px;
            height: 28px;
            color: #ef4444;
        }

        .problem-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .problem-card p {
            font-size: 15px;
            color: var(--color-text-secondary);
            line-height: 1.5;
        }

        /* ============================================
           SOLUTION SECTION
           ============================================ */
        .solution-section {
            padding: 120px 0;
            background: var(--color-bg-dark);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .solution-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150%;
            height: 100%;
            background: radial-gradient(ellipse at 50% 0%, rgba(190, 82, 254, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .solution-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
            position: relative;
            z-index: 1;
        }

        .solution-header .section-label {
            color: var(--color-accent-orange);
        }

        .solution-header h2 {
            color: white;
            font-size: clamp(32px, 4vw, 44px);
            margin-bottom: 20px;
        }

        .solution-header p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
        }

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

        .solution-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .solution-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-4px);
        }

        .solution-card-icon {
            width: 64px;
            height: 64px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .solution-card-icon svg {
            width: 32px;
            height: 32px;
            color: white;
        }

        .solution-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: white;
            margin-bottom: 12px;
        }

        .solution-card p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        /* ============================================
           PEEK INSIDE SECTION
           ============================================ */
        .peek-section {
            padding: 120px 0;
            background: var(--color-bg-beige);
        }

        .peek-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        .peek-header h2 {
            font-size: clamp(32px, 4vw, 44px);
            margin-bottom: 16px;
        }

        .peek-header p {
            font-size: 18px;
            color: var(--color-text-secondary);
        }

        .peek-comparison {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 32px;
            align-items: stretch;
            max-width: 1000px;
            margin: 0 auto;
        }

        .peek-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .peek-card.peek-ours {
            border-color: var(--color-primary);
            box-shadow: 0 10px 40px rgba(190, 82, 254, 0.15);
        }

        .peek-card-header {
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid var(--border-color);
        }

        .peek-card.peek-ours .peek-card-header {
            background: rgba(190, 82, 254, 0.05);
        }

        .peek-card-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .peek-card-icon.generic {
            background: var(--color-bg-gray);
        }

        .peek-card-icon.generic svg {
            width: 20px;
            height: 20px;
            color: var(--color-text-muted);
        }

        .peek-card-icon.ours {
            background: var(--gradient-primary);
        }

        .peek-card-icon.ours svg {
            width: 20px;
            height: 20px;
            color: white;
        }

        .peek-card-title {
            font-weight: 600;
            font-size: 16px;
            color: var(--color-text-primary);
        }

        .peek-card-subtitle {
            font-size: 13px;
            color: var(--color-text-muted);
        }

        .peek-card-content {
            padding: 24px;
        }

        .peek-output {
            font-size: 15px;
            line-height: 1.6;
        }

        .peek-output.generic {
            color: var(--color-text-secondary);
        }

        .peek-output.generic p {
            margin-bottom: 8px;
        }

        .peek-output.ours {
            color: var(--color-text-primary);
        }

        .peek-output.ours p {
            margin-bottom: 12px;
        }

        .peek-output-note {
            margin-top: 16px !important;
            padding-top: 16px;
            border-top: 1px solid var(--border-color);
            font-size: 13px !important;
            font-style: italic;
        }

        .peek-output.generic .peek-output-note {
            color: #ef4444;
        }

        .peek-output.ours .peek-output-note {
            color: var(--color-success);
        }

        .peek-vs {
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: var(--color-text-muted);
            padding: 0 8px;
        }

        .peek-caption {
            text-align: center;
            margin-top: 40px;
            font-size: 16px;
            color: var(--color-text-secondary);
        }

        @media (max-width: 900px) {
            .peek-comparison {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .peek-vs {
                padding: 8px 0;
            }
        }

        /* ============================================
           AGENTS SECTION
           ============================================ */
        .agents-section {
            padding: 120px 0;
            background: white;
        }

        .agents-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        .agents-header h2 {
            font-size: clamp(32px, 4vw, 44px);
            margin-bottom: 16px;
        }

        .agents-header p {
            font-size: 18px;
            color: var(--color-text-secondary);
        }

        .agents-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto 40px;
        }

        .agent-card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
            transition: all 0.3s ease;
        }

        .agent-card:hover {
            border-color: var(--color-primary);
            box-shadow: 0 10px 40px rgba(190, 82, 254, 0.1);
            transform: translateY(-4px);
        }

        .agent-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .agent-card-icon {
            width: 44px;
            height: 44px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .agent-card-icon svg {
            width: 22px;
            height: 22px;
            color: white;
        }

        .agent-card-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--color-text-primary);
        }

        .agent-card-time {
            font-size: 13px;
            color: var(--color-success);
            font-weight: 500;
        }

        .agent-card p {
            font-size: 14px;
            color: var(--color-text-secondary);
            line-height: 1.5;
        }

        .agents-note {
            text-align: center;
            font-size: 15px;
            color: var(--color-text-muted);
        }

        .agents-note strong {
            color: var(--color-primary);
        }

        /* ============================================
           FOUNDER SECTION
           ============================================ */
        .founder-section {
            padding: 120px 0;
            background: white;
        }

        .founder-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 80px;
            align-items: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        .founder-image {
            position: relative;
        }

        .founder-image-wrapper {
            background: var(--color-bg-light);
            border-radius: 20px;
            aspect-ratio: 4/5;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }

        .founder-image-placeholder {
            color: var(--color-text-muted);
            font-size: 14px;
        }

        .founder-content .section-label {
            margin-bottom: 20px;
        }

        .founder-content h2 {
            font-size: clamp(28px, 3.5vw, 35px);
            line-height: 1.3;
            margin-bottom: 24px;
        }

        .founder-content p {
            font-size: 17px;
            line-height: 1.7;
            color: var(--color-text-secondary);
            margin-bottom: 16px;
        }

        .founder-signature {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid var(--border-color);
        }

        .founder-name {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 600;
            color: var(--color-text-primary);
        }

        .founder-title {
            font-size: 14px;
            color: var(--color-text-muted);
            margin-top: 4px;
        }

        /* ============================================
           PROOF SECTION
           ============================================ */
        .proof-section {
            padding: 120px 0;
            background: var(--color-bg-light);
        }

        .proof-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        .proof-header h2 {
            font-size: clamp(32px, 4vw, 44px);
            margin-bottom: 16px;
        }

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

        .testimonial-card {
            background: white;
            border-radius: 16px;
            padding: 28px;
            border: 1px solid var(--border-color);
        }

        .testimonial-result {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(16, 185, 129, 0.1);
            color: var(--color-success);
            padding: 6px 14px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .testimonial-result svg {
            width: 16px;
            height: 16px;
        }

        .testimonial-text {
            font-size: 16px;
            line-height: 1.6;
            color: var(--color-text-primary);
            margin-bottom: 20px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 44px;
            height: 44px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 15px;
        }

        .testimonial-name {
            font-weight: 600;
            font-size: 15px;
            color: var(--color-text-primary);
        }

        .testimonial-role {
            font-size: 13px;
            color: var(--color-text-muted);
        }

        /* ============================================
           CTA SECTION
           ============================================ */
        .cta-section {
            padding: 140px 0;
            background: var(--color-bg-dark);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(ellipse at center, rgba(190, 82, 254, 0.2) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: clamp(36px, 5vw, 52px);
            color: white;
            margin-bottom: 16px;
        }

        .cta-content p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
        }

        .cta-form {
            display: flex;
            gap: 12px;
            max-width: 440px;
            margin: 0 auto 24px;
        }

        .cta-input {
            flex: 1;
            padding: 16px 20px;
            font-size: 16px;
            font-family: var(--font-sans);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 100px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            outline: none;
            transition: all 0.2s ease;
        }

        .cta-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .cta-input:focus {
            border-color: var(--color-primary);
            background: rgba(255, 255, 255, 0.15);
        }

        .cta-submit {
            padding: 16px 28px;
            font-size: 16px;
            font-weight: 600;
            font-family: var(--font-button);
            background: white;
            color: var(--color-bg-dark);
            border: none;
            border-radius: 100px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .cta-submit:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
        }

        .cta-trust {
            display: flex;
            justify-content: center;
            gap: 24px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }

        .cta-trust span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .cta-trust svg {
            width: 16px;
            height: 16px;
            color: var(--color-success);
        }

        /* Footer */
        .footer {
            padding: 40px 0;
            background: var(--color-bg-dark);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .footer-logo {
            font-size: 18px;
            font-weight: 700;
            color: white;
        }

        .footer-links {
            display: flex;
            gap: 24px;
            list-style: none;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-link:hover {
            color: white;
        }

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

            .hero-content {
                text-align: center;
            }

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

            .hero-cta-row {
                justify-content: center;
            }

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

            .problem-grid,
            .solution-grid,
            .agents-grid,
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .founder-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .founder-image {
                max-width: 400px;
                margin: 0 auto;
            }

            .founder-content {
                text-align: center;
            }

            .floating-metric {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .problem-grid,
            .solution-grid,
            .agents-grid,
            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .hero, .founder-section, .proof-section, .agents-section, .peek-section {
                padding-top:80px;
                padding-bottom:60px;
            }

            .hero-cta-row {
                flex-direction: column;
            }

            .hero-proof {
                flex-wrap: wrap;
                gap: 16px;
            }

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

            .cta-trust {
                flex-wrap: wrap;
                justify-content: center;
            }

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