        :root {
            --path-teal: #3EAFA6;
            --path-teal-light: #E8F6F5;
            --path-teal-dark: #2D8A83;
            --action-orange: #E29947;
            --action-orange-light: #FDF4ED;
            --action-orange-dark: #C47F35;
            --deep-slate: #264653;
            --text-secondary: #6B7B8A;
            --text-tertiary: #9BA8B4;
            --background: #FDFCFB;
            --surface: #FFFFFF;
            --divider: #E8E6E3;
            
            --font-display: 'Fraunces', Georgia, serif;
            --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            
            --shadow-soft: 0 4px 24px rgba(38, 70, 83, 0.08);
            --shadow-medium: 0 8px 32px rgba(38, 70, 83, 0.12);
            --shadow-strong: 0 16px 48px rgba(38, 70, 83, 0.16);
            
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-body);
            background: var(--background);
            color: var(--deep-slate);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Subtle animated background */
        .bg-gradient {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
            background: 
                radial-gradient(ellipse 80% 50% at 20% 0%, rgba(62, 175, 166, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 80% 100%, rgba(226, 153, 71, 0.06) 0%, transparent 50%),
                var(--background);
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1rem 2rem;
            background: rgba(253, 252, 251, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(232, 230, 227, 0.5);
            transition: all 0.3s ease;
        }
        
        nav.scrolled {
            padding: 0.75rem 2rem;
            box-shadow: var(--shadow-soft);
        }
        
        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--deep-slate);
        }
        
        .logo img {
            height: 56px;
            width: auto;
        }
        
        .logo-text {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 500;
            letter-spacing: -0.01em;
        }
        
        .logo-text span {
            color: var(--path-teal);
        }
        
        .nav-cta {
            background: var(--path-teal);
            color: white;
            padding: 0.625rem 1.25rem;
            border-radius: 100px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.2s ease;
        }
        
        .nav-cta:hover {
            background: var(--path-teal-dark);
            transform: translateY(-1px);
        }
        
        /* Hero Section */
        .hero {
            display: flex;
            align-items: flex-start;
            padding: 6rem 2rem 3rem;
            position: relative;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .hero-text {
            animation: fadeInUp 0.8s ease-out;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 3.75rem);
            font-weight: 500;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            color: var(--deep-slate);
        }
        
        h1 .highlight {
            color: var(--path-teal);
            font-style: italic;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 1.25rem;
            max-width: 480px;
            line-height: 1.7;
        }
        
        .hero-cta-group {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .email-form {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }
        
        .email-input {
            flex: 1;
            min-width: 240px;
            padding: 1rem 1.25rem;
            border: 2px solid var(--divider);
            border-radius: var(--radius-md);
            font-size: 1rem;
            font-family: var(--font-body);
            transition: all 0.2s ease;
            background: var(--surface);
        }
        
        .email-input:focus {
            outline: none;
            border-color: var(--path-teal);
            box-shadow: 0 0 0 4px rgba(62, 175, 166, 0.1);
        }
        
        .btn-primary {
            background: var(--action-orange);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: var(--radius-md);
            font-size: 1rem;
            font-weight: 600;
            font-family: var(--font-body);
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        
        .btn-primary:hover {
            background: var(--action-orange-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }
        
        .form-note {
            font-size: 0.85rem;
            color: var(--text-tertiary);
        }
        
        .coming-soon-note {
            font-size: 1rem;
            color: var(--text-tertiary);
            margin-top: 1rem;
        }
        
        /* Phone Mockup */
        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }
        
        .phone-mockup {
            position: relative;
            width: 280px;
            height: 580px;
            background: var(--deep-slate);
            border-radius: 44px;
            padding: 12px;
            box-shadow: var(--shadow-strong);
        }
        
        .phone-screen {
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, #F9FAFB 0%, #F2F4F7 100%);
            border-radius: 34px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        .phone-notch {
            width: 120px;
            height: 28px;
            background: var(--deep-slate);
            margin: 0 auto;
            border-radius: 0 0 20px 20px;
        }
        
        .phone-content {
            flex: 1;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
        }
        
        .mock-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .mock-header h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            color: var(--deep-slate);
            margin-bottom: 0.25rem;
        }
        
        .mock-header p {
            font-size: 0.75rem;
            color: var(--text-secondary);
        }
        
        .mock-route-card {
            background: white;
            border-radius: var(--radius-md);
            padding: 1rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            margin-bottom: 0.75rem;
        }
        
        .mock-route-card.recommended {
            border: 2px solid var(--path-teal);
        }
        
        .mock-badge {
            display: inline-block;
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            margin-bottom: 0.5rem;
        }
        
        .mock-badge.teal {
            background: var(--path-teal);
            color: white;
        }
        
        .mock-badge.gray {
            background: #E5E7EB;
            color: var(--text-secondary);
        }
        
        .mock-modes {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }
        
        .mock-mode {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
        }
        
        .mock-mode.teal { background: var(--path-teal); color: white; }
        .mock-mode.orange { background: var(--action-orange); color: white; }
        
        .mock-dots {
            width: 20px;
            border-top: 2px dotted var(--text-tertiary);
        }
        
        .mock-time {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--deep-slate);
        }
        
        .mock-explanation {
            font-size: 0.7rem;
            color: var(--text-secondary);
            line-height: 1.4;
        }
        
        /* Pain Points Section */
        .pain-points {
            padding: 6rem 2rem;
            background: var(--surface);
        }
        
        .section-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-header h2 {
            font-family: var(--font-display);
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 500;
            color: var(--deep-slate);
            margin-bottom: 1rem;
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .questions-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        
        .question-card {
            background: var(--background);
            padding: 2rem;
            border-radius: var(--radius-lg);
            border: 1px solid var(--divider);
            transition: all 0.3s ease;
        }
        
        .question-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-medium);
            border-color: var(--path-teal);
        }
        
        .question-card .icon {
            width: 48px;
            height: 48px;
            background: var(--path-teal-light);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .question-card h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--deep-slate);
            margin-bottom: 0.5rem;
            font-style: italic;
        }
        
        .question-card p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        /* How It Works */
        .how-it-works {
            padding: 6rem 2rem;
            position: relative;
        }

        .how-it-works::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 0;
            right: 0;
            bottom: -50px;
            background-image: url('images/compass-watermark.png');
            background-repeat: no-repeat;
            background-position: right -250px center;
            background-size: 1400px;
            opacity: 0.06;
            pointer-events: none;
            z-index: 0;
        }

        .how-it-works > * {
            position: relative;
            z-index: 1;
        }
        
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .step {
            text-align: center;
            padding: 2rem;
        }
        
        .step-number {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--path-teal), var(--path-teal-dark));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0 auto 1.5rem;
        }
        
        .step h3 {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--deep-slate);
            margin-bottom: 0.75rem;
        }
        
        .step p {
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        /* Features */
        .features {
            padding: 6rem 2rem;
            background: var(--surface);
        }
        
        .transport-modes {
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }
        
        .mode-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }
        
        .mode-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            transition: all 0.3s ease;
        }
        
        .mode-icon.bus { background: transparent; }
        .mode-icon.bus img { width: 98px; height: 98px; object-fit: contain; }
        .mode-icon.monorail { background: transparent; }
        .mode-icon.monorail img { width: 98px; height: 98px; object-fit: contain; }
        .mode-icon.skyliner { background: transparent; }
        .mode-icon.skyliner img { width: 98px; height: 98px; object-fit: contain; }
        .mode-icon.boat { background: transparent; }
        .mode-icon.boat img { width: 98px; height: 98px; object-fit: contain; }
        .mode-icon.walk { background: transparent; }
        .mode-icon.walk img { width: 98px; height: 98px; object-fit: contain; }
        
        .mode-item:hover .mode-icon {
            transform: scale(1.1);
            box-shadow: var(--shadow-medium);
        }

        .mode-item:hover .mode-icon.monorail,
        .mode-item:hover .mode-icon.bus,
        .mode-item:hover .mode-icon.skyliner,
        .mode-item:hover .mode-icon.boat,
        .mode-item:hover .mode-icon.walk {
            box-shadow: none;
        }
        
        .mode-label {
            font-weight: 500;
            color: var(--deep-slate);
        }
        
        /* Feature List */
        .feature-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 4rem;
        }
        
        .feature-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }
        
        .feature-check {
            width: 24px;
            height: 24px;
            background: var(--path-teal);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .feature-item h4 {
            font-weight: 600;
            color: var(--deep-slate);
            margin-bottom: 0.25rem;
        }
        
        .feature-item p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        
        /* Trust Section */
        .trust {
            padding: 6rem 2rem;
            text-align: center;
        }
        
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        
        .trust-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }
        
        .trust-badge .icon {
            font-size: 2.5rem;
        }
        
        .trust-badge span {
            font-weight: 600;
            color: var(--deep-slate);
        }
        
        .trust-badge small {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }
        
        /* Final CTA */
        .final-cta {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--deep-slate), #1a3540);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('images/compass-cta-watermark.png');
            background-repeat: no-repeat;
            background-position: 90% 85%;
            background-size: 585px;
            opacity: 0.07;
            filter: brightness(0) invert(1);
            pointer-events: none;
            z-index: 0;
        }

        .final-cta > * {
            position: relative;
            z-index: 1;
        }
        
        .final-cta h2 {
            font-family: var(--font-display);
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 500;
            margin-bottom: 1rem;
        }
        
        .final-cta p {
            font-size: 1.1rem;
            opacity: 0.85;
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .final-cta .email-form {
            max-width: 500px;
            margin: 0 auto;
            justify-content: center;
        }
        
        .final-cta .email-input {
            border-color: rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.1);
            color: white;
        }
        
        .final-cta .email-input::placeholder {
            color: rgba(255,255,255,0.6);
        }
        
        .final-cta .email-input:focus {
            border-color: var(--path-teal);
            background: rgba(255,255,255,0.15);
        }
        
        /* Footer */
        footer {
            background: var(--deep-slate);
            color: white;
            padding: 2rem 2rem;
        }

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

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

        .footer-brand img {
            height: 40px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        .footer-links {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-links .separator {
            color: rgba(255,255,255,0.3);
            font-size: 0.8rem;
        }
        
        .footer-social {
            display: flex;
            gap: 1rem;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        .social-link:hover {
            background: var(--path-teal);
            transform: translateY(-2px);
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 1.5rem auto 0;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.4);
            margin-bottom: 0.25rem;
        }

        .footer-disclaimer {
            font-size: 0.7rem;
            color: rgba(255,255,255,0.35);
            line-height: 1.5;
        }
        
        /* Toast notification */
        .toast {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: var(--deep-slate);
            color: white;
            padding: 1rem 2rem;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-strong);
            z-index: 1000;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }
        
        .toast.success {
            background: var(--path-teal);
        }
        
        /* Responsive */
        @media (max-width: 900px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-text {
                order: 1;
            }
            
            .hero-visual {
                order: 2;
            }
            
            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }
            
            
            .email-form {
                justify-content: center;
            }

            .steps-grid {
                grid-template-columns: 1fr;
            }
            
            .phone-mockup {
                width: 240px;
                height: 500px;
            }
        }
        
        @media (max-width: 600px) {
            nav {
                padding: 0.75rem 1rem;
            }
            
            .logo-text {
                display: none;
            }
            
            .hero {
                padding: 6rem 1rem 3rem;
            }
            
            .email-form {
                flex-direction: column;
            }
            
            .email-input {
                min-width: 100%;
            }
            
            .btn-primary {
                width: 100%;
            }
            
            .transport-modes {
                gap: 1.5rem;
                max-width: 280px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .mode-icon {
                width: 56px;
                height: 56px;
                font-size: 1.5rem;
            }

            .mode-icon img {
                width: 56px;
                height: 56px;
            }

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