        :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;
        }
        
        /* Screenshot Carousel */
        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .screenshot-showcase {
            position: relative;
            width: 100%;
            max-width: 500px;
            touch-action: pan-y pinch-zoom;
        }

        .screenshot-stack {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 500px;
        }

        .screenshot {
            position: absolute;
            width: 220px;
            height: auto;
            border-radius: 24px;
            box-shadow: var(--shadow-strong);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            user-select: none;
            -webkit-user-drag: none;
        }

        /* Position states */
        .screenshot[data-position="center"] {
            z-index: 3;
            transform: translateX(0) scale(1) rotateY(0);
            opacity: 1;
        }

        .screenshot[data-position="right"] {
            z-index: 2;
            transform: translateX(60%) scale(0.85) rotateY(-5deg);
            opacity: 0.85;
        }

        .screenshot[data-position="left"] {
            z-index: 1;
            transform: translateX(-60%) scale(0.85) rotateY(5deg);
            opacity: 0.85;
        }

        .screenshot-showcase:hover .screenshot[data-position="center"] {
            transform: translateX(0) scale(1.02) rotateY(0);
            box-shadow: var(--shadow-strong), 0 20px 60px rgba(38, 70, 83, 0.15);
        }

        /* Dot indicators */
        .screenshot-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 1.5rem;
        }

        .screenshot-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: none;
            background: var(--divider);
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .screenshot-dot:hover {
            background: var(--text-tertiary);
        }

        .screenshot-dot.active {
            background: var(--path-teal);
            transform: scale(1.2);
        }
        
        /* 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;
            }

            .screenshot-stack {
                height: 420px;
            }

            .screenshot {
                width: 180px;
            }

            .screenshot[data-position="right"] {
                transform: translateX(50%) scale(0.85) rotateY(-5deg);
            }

            .screenshot[data-position="left"] {
                transform: translateX(-50%) scale(0.85) rotateY(5deg);
            }
        }

        @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;
            }

            .mode-icon.bus img,
            .mode-icon.monorail img,
            .mode-icon.skyliner img,
            .mode-icon.boat img,
            .mode-icon.walk img {
                width: 56px;
                height: 56px;
            }

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

            .screenshot-stack {
                height: 480px;
            }

            .screenshot {
                width: 220px;
                border-radius: 24px;
            }

            .screenshot[data-position="right"] {
                transform: translateX(55%) scale(0.85) rotateY(-5deg);
            }

            .screenshot[data-position="left"] {
                transform: translateX(-55%) scale(0.85) rotateY(5deg);
            }

            .screenshot-dots {
                margin-top: 1rem;
                gap: 16px;
            }

            .screenshot-dot {
                width: 12px;
                height: 12px;
            }
        }

/* ===== New Navigation with Dropdowns ===== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    color: var(--deep-slate);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: background-color 0.2s ease;
}

.nav-link:hover {
    background-color: var(--path-teal-light);
    color: var(--path-teal-dark);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-strong);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--deep-slate);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: var(--path-teal-light);
    color: var(--path-teal-dark);
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
}

/* ===== Secondary Button ===== */
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: transparent;
    border: 2px solid var(--path-teal);
    color: var(--path-teal);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: var(--path-teal-light);
    color: var(--path-teal-dark);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== Content Preview Section ===== */
.content-preview {
    padding: 4rem 0;
    background: var(--background);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.preview-card {
    display: block;
    padding: 2rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    transition: all 0.3s ease;
}

.preview-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.preview-icon {
    width: 56px;
    height: 56px;
    background: var(--path-teal-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--path-teal);
}

.preview-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--deep-slate);
    margin-bottom: 0.5rem;
}

.preview-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .preview-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Hub Page Styles ===== */
.hub-hero {
    padding: 8rem 0 3rem;
    background: linear-gradient(180deg, var(--path-teal-light) 0%, var(--background) 100%);
}

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

.hub-header h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--deep-slate);
    margin-bottom: 1rem;
}

.hub-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hub-content {
    padding: 3rem 0 5rem;
}

.hub-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.hub-card {
    display: block;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hub-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.hub-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--deep-slate);
    margin-bottom: 0.5rem;
}

.hub-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.hub-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.hub-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.coming-soon-notice {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--action-orange-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--action-orange);
}

.coming-soon-notice p {
    color: var(--deep-slate);
    margin: 0;
}

/* ===== Generic Page Layout ===== */
.page-content {
    padding: 8rem 0 5rem;
}

.page-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--deep-slate);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.page-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.page-body h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--deep-slate);
    margin: 2.5rem 0 1rem;
}

.page-body p {
    margin-bottom: 1.5rem;
}

/* ===== Guide/Article Page Styles ===== */
.guide-article,
.park-article,
.resort-article,
.compare-article,
.strategy-article,
.route-article {
    padding-top: 5rem;
}

.guide-header,
.park-header,
.resort-header,
.compare-header,
.strategy-header,
.route-header {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--path-teal-light) 0%, var(--background) 100%);
    text-align: center;
}

.guide-mode-badge,
.park-badge,
.resort-badge,
.compare-badge,
.strategy-badge,
.route-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--surface);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--path-teal);
    margin-bottom: 1rem;
}

.guide-mode-badge img {
    width: 24px;
    height: 24px;
}

.guide-content,
.park-content,
.resort-content,
.compare-content,
.strategy-content,
.route-content {
    padding: 3rem 0 5rem;
}

.key-takeaways {
    background: var(--path-teal-light);
    border-left: 4px solid var(--path-teal);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
}

.key-takeaways h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--path-teal);
    margin-top: 0;
    margin-bottom: 1rem;
}

.key-takeaways ul {
    margin: 0;
    padding-left: 1.25rem;
}

.key-takeaways li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.key-takeaways li:last-child {
    margin-bottom: 0;
}

.related-content {
    padding: 3rem 0;
    background: var(--path-teal-light);
}

.related-content h2 {
    font-family: var(--font-display);
    text-align: center;
    margin-bottom: 2rem;
    color: var(--deep-slate);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.related-card {
    display: block;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-card:hover {
    box-shadow: var(--shadow-medium);
}

.related-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--deep-slate);
    margin-bottom: 0.5rem;
}

.related-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== Push 1.5: Minimal Hero ===== */
.hero-minimal {
    padding: 9rem 2rem 4rem;
    text-align: center;
}

.hero-minimal .hero-content {
    display: block;
    max-width: 700px;
}

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

.hero-minimal h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: 1.25rem;
}

.hero-minimal .hero-subtitle {
    font-size: 1.35rem;
    max-width: 520px;
    margin: 0 auto 2rem;
}

.hero-minimal .hero-cta-group {
    align-items: center;
}

.hero-minimal .hero-buttons {
    justify-content: center;
}

.text-link {
    display: inline-block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    margin-top: 1rem;
    transition: color 0.2s ease;
}

.text-link:hover {
    color: var(--path-teal);
}

/* ===== Push 1.5: Decision Entry Points ===== */
.decision-points {
    padding: 2rem 0 4rem;
}

.decision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.decision-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.decision-card {
    display: block;
    position: relative;
    padding: 2rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 2px solid var(--divider);
    text-decoration: none;
    transition: all 0.3s ease;
}

.decision-card:hover {
    border-color: var(--path-teal);
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.decision-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--deep-slate);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.decision-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

.decision-card .card-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--path-teal);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.decision-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 900px) {
    .decision-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Push 1.5: Featured Guides ===== */
.featured-guides {
    padding: 4rem 0;
    background: var(--surface);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.guides-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.guide-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--background);
    border-radius: var(--radius-lg);
    border: 1px solid var(--divider);
    text-decoration: none;
    transition: all 0.3s ease;
}

.guide-card:hover {
    border-color: var(--path-teal);
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.guide-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.guide-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.guide-info h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--deep-slate);
    margin-bottom: 0.5rem;
}

.guide-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Push 1.5: Trust Section ===== */
.trust-section {
    padding: 4rem 0;
    background: var(--path-teal-light);
}

.trust-section .section-header {
    margin-bottom: 2rem;
}

.trust-points {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: var(--deep-slate);
}

.trust-check {
    color: var(--path-teal);
    font-weight: 600;
    font-size: 1.25rem;
}

.app-mention {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(62, 175, 166, 0.2);
}

.app-mention p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.app-mention .text-link {
    color: var(--path-teal);
    font-weight: 500;
    margin-top: 0;
}

.app-mention .text-link:hover {
    color: var(--path-teal-dark);
}

/* ===== App Landing Page ===== */

/* App Hero */
.app-hero {
    padding: 10rem 2rem 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--path-teal-light) 0%, var(--background) 100%);
}

.app-hero-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.app-hero-content {
    flex: 1;
    max-width: 540px;
}

.app-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--deep-slate);
    margin-bottom: 1.5rem;
}

.app-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 0 2.5rem;
}

.app-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.app-hero-note {
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

.app-hero-accent {
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse 100% 100% at 100% 0%, rgba(62, 175, 166, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.app-hero-screenshots {
    flex: 0 0 auto;
    width: 420px;
}

.app-hero-screenshots .screenshot-stack {
    height: 480px;
}

.app-hero-screenshots .screenshot {
    width: 210px;
}

.app-hero-screenshots .screenshot[data-position="hidden"] {
    z-index: 0;
    transform: translateX(0) scale(0.7);
    opacity: 0;
    pointer-events: none;
}

/* App Store Button */
.btn-app-store {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: var(--deep-slate);
    color: white;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-app-store:hover {
    background: #1a3540;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-app-store svg {
    flex-shrink: 0;
}

.btn-app-store span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-app-store small {
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-app-store strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-app-store-large {
    padding: 1.25rem 2.5rem;
}

.btn-app-store-large svg {
    width: 32px;
    height: 32px;
}

.btn-app-store-large strong {
    font-size: 1.35rem;
}

/* App Sections */
.app-section {
    padding: 5rem 2rem;
}

.app-section-content {
    max-width: 680px;
    margin: 0 auto;
}

.app-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 500;
    line-height: 1.25;
    color: var(--deep-slate);
    margin-bottom: 2rem;
}

.app-section .text-muted {
    color: var(--text-tertiary);
}

/* App Prose */
.app-prose {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.app-prose p {
    margin-bottom: 1.5rem;
}

.app-emphasis {
    font-weight: 500;
    color: var(--deep-slate);
}

.app-subtle {
    font-style: italic;
    color: var(--text-tertiary);
}

/* App Lists */
.app-list {
    list-style: none;
    margin: 1.5rem 0 2rem;
}

.app-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.875rem;
}

.app-list-problem li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-tertiary);
    font-weight: 500;
}

.app-list-check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--path-teal);
    font-weight: 700;
    font-size: 1.1rem;
}

.app-list-factors {
    margin-top: 1rem;
}

.app-list-factors li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--path-teal);
}

.app-factors-label {
    font-weight: 500;
    color: var(--deep-slate);
    margin-bottom: 0.5rem !important;
}

/* App Problem Section */
.app-problem {
    background: var(--surface);
}

/* App Solution Section */
.app-solution {
    background: var(--background);
}

/* App Comparison Section */
.app-comparison {
    background: var(--path-teal-light);
    text-align: center;
}

.app-comparison h2 {
    margin-bottom: 3rem;
}

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

.app-comparison-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: left;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.app-comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.app-comparison-card-app {
    border-color: var(--path-teal);
}

.app-comparison-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 1.5rem;
}

.app-comparison-card-app .app-comparison-label {
    color: var(--path-teal);
}

.app-comparison-card ul {
    list-style: none;
}

.app-comparison-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.875rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.app-comparison-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--divider);
}

.app-comparison-card-app li::before {
    background: var(--path-teal);
}

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

/* App How It Works */
.app-how-it-works {
    background: var(--surface);
    text-align: center;
}

.app-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 500px;
    margin: 3rem auto;
}

.app-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
    padding: 1.5rem 0;
    position: relative;
}

.app-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 4.5rem;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--path-teal) 0%, var(--divider) 100%);
}

.app-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;
    flex-shrink: 0;
}

.app-step-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--deep-slate);
    margin-bottom: 0.25rem;
}

.app-step-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.app-steps-footer {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* App Steps Dual Flow */
.app-steps-dual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 3rem auto;
}

.app-steps-group {
    text-align: left;
}

.app-steps-group .app-steps {
    margin: 1.5rem 0 0;
}

.app-steps-group-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--path-teal);
    text-align: left;
}

.app-steps-closing {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.app-planning-intro {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--path-teal);
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .app-steps-dual {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* App Download Section */
.app-download {
    background: linear-gradient(135deg, var(--deep-slate), #1a3540);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.app-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 120%, rgba(62, 175, 166, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.app-download-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
}

.app-download h2 {
    color: white;
    margin-bottom: 2.5rem;
}

.app-download .btn-app-store-large {
    background: white;
    color: var(--deep-slate);
    margin-bottom: 2rem;
}

.app-download .btn-app-store-large:hover {
    background: var(--path-teal-light);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.app-download-platform {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.app-download-promise {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.app-download-why {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.app-download-money {
    font-size: 0.85rem;
    opacity: 0.6;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* App Guides Links Section */
.app-guides-links {
    background: var(--surface);
    text-align: center;
}

.app-guides-links h2 {
    margin-bottom: 3rem;
}

.app-guides-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.app-guides-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.app-guide-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: var(--background);
    border-radius: var(--radius-lg);
    border: 1px solid var(--divider);
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-guide-link:hover {
    border-color: var(--path-teal);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.app-guide-link-icon {
    width: 56px;
    height: 56px;
    background: var(--path-teal-light);
    border-radius: var(--radius-md);
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    color: var(--path-teal);
    transition: all 0.3s ease;
}


.app-guide-link-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.app-guide-link-text {
    text-align: center;
}

.app-guide-link-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--deep-slate);
    margin-bottom: 0.25rem;
}

.app-guide-link-text span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.app-guides-footer {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
}

@media (max-width: 900px) {
    .app-hero-layout {
        flex-direction: column;
        text-align: center;
    }

    .app-hero-content {
        max-width: 720px;
    }

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

    .app-hero-cta {
        align-items: center;
    }

    .app-hero-screenshots {
        width: 100%;
        max-width: 500px;
    }

    .app-guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .app-hero {
        padding: 8rem 1.5rem 4rem;
    }

    .app-section {
        padding: 4rem 1.5rem;
    }

    .app-guides-grid {
        grid-template-columns: 1fr;
    }

    .app-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .app-step:not(:last-child)::after {
        display: none;
    }

    .app-hero-screenshots .screenshot-stack {
        height: 420px;
    }

    .app-hero-screenshots .screenshot {
        width: 180px;
    }
}

/* ===== Prose Content Styling (Guide Articles) ===== */

/* Base prose container */
.prose {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Paragraphs */
.prose p {
    margin-bottom: 1.5rem;
}

/* Links */
.prose a {
    color: var(--path-teal);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.prose a:hover {
    color: var(--path-teal-dark);
}

/* Strong text */
.prose strong {
    color: var(--deep-slate);
    font-weight: 600;
}

/* Headings */
.prose h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--deep-slate);
    margin: 3.5rem 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--path-teal-light);
    line-height: 1.3;
}

.prose h2:first-of-type {
    margin-top: 0;
}

.prose h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--deep-slate);
    margin: 2.5rem 0 1rem;
    line-height: 1.4;
}

.prose h2 + h3 {
    margin-top: 1.5rem;
}

/* Pull quotes - standalone italic paragraphs */
.prose p > em:only-child {
    display: block;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--deep-slate);
    font-style: italic;
    padding: 1.25rem 1.5rem;
    margin: 2rem -1rem;
    background: var(--path-teal-light);
    border-left: 4px solid var(--path-teal);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Tables */
.prose table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    font-size: 0.95rem;
}

.prose thead {
    background: var(--path-teal);
}

.prose th {
    color: white;
    font-weight: 600;
    text-align: left;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
}

.prose td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--divider);
    color: var(--text-secondary);
    vertical-align: top;
}

.prose tr:last-child td {
    border-bottom: none;
}

.prose tbody tr:nth-child(even) {
    background: rgba(62, 175, 166, 0.04);
}

.prose tbody tr:hover {
    background: var(--path-teal-light);
}

/* Lists */
.prose ul,
.prose ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.prose ul li::marker {
    color: var(--path-teal);
    font-size: 1.2em;
}

.prose ol li::marker {
    color: var(--path-teal);
    font-weight: 600;
}

.prose ul ul,
.prose ol ol,
.prose ul ol,
.prose ol ul {
    margin: 0.75rem 0;
}

.prose li > ul,
.prose li > ol {
    margin-top: 0.5rem;
}

/* Section dividers */
.prose hr {
    border: none;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--divider) 15%,
        var(--divider) 85%,
        transparent
    );
    margin: 4rem auto;
    max-width: 400px;
    position: relative;
}

.prose hr::after {
    content: "◆";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--background);
    padding: 0 1rem;
    color: var(--path-teal);
    font-size: 0.75rem;
}

/* FAQ styling - bold questions followed by answer */
.prose p > strong:first-child:not(:only-child) {
    display: block;
    color: var(--deep-slate);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Blockquotes */
.prose blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--surface);
    border-left: 4px solid var(--path-teal);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--deep-slate);
}

.prose blockquote p:last-child {
    margin-bottom: 0;
}

/* Code */
.prose code {
    background: var(--path-teal-light);
    padding: 0.2em 0.4em;
    border-radius: var(--radius-sm);
    font-size: 0.9em;
    color: var(--deep-slate);
}

.prose pre {
    background: var(--deep-slate);
    color: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 2rem 0;
}

.prose pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* ===== Enhanced Guide Header ===== */
.guide-header,
.park-header,
.resort-header,
.compare-header,
.strategy-header,
.route-header {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(180deg, var(--path-teal-light) 0%, var(--background) 100%);
    text-align: center;
}

.guide-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.2;
    color: var(--deep-slate);
}

.guide-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.guide-meta {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-top: 1.5rem;
}

.guide-mode-badge,
.park-badge,
.resort-badge,
.compare-badge,
.strategy-badge,
.route-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--surface);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--path-teal-dark);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}

/* ===== Park Transport Summary Grid ===== */
.transport-summary {
    margin-bottom: 3rem;
    text-align: center;
}

.transport-summary h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--deep-slate);
    margin-bottom: 2rem;
}

.transport-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.transport-option {
    text-align: center;
    padding: 1.25rem 1rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--divider);
    transition: all 0.3s ease;
}

.transport-option:hover {
    border-color: var(--path-teal);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.transport-option img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.transport-option h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--deep-slate);
    margin-bottom: 0.35rem;
}

.transport-option p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.transport-option.available {
    border-color: var(--path-teal);
    background: var(--path-teal-light);
}

.transport-option.available h3 {
    color: var(--path-teal-dark);
}

.transport-option.unavailable {
    opacity: 0.5;
    background: var(--background);
}

.transport-option.unavailable:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--divider);
}

.resort-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.2;
    color: var(--deep-slate);
}

.resort-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.park-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.2;
    color: var(--deep-slate);
}

.park-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== Enhanced Related Guides Section ===== */
.related-content {
    background: var(--path-teal-light);
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.related-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--deep-slate);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.related-card {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--path-teal);
}

.related-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--deep-slate);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.related-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ===== Prose Mobile Responsive ===== */
@media (max-width: 768px) {
    .guide-header,
    .park-header,
    .resort-header,
    .compare-header,
    .strategy-header,
    .route-header {
        padding: 6rem 1.5rem 3rem;
    }

    .guide-header h1 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .prose {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .prose h2 {
        font-size: 1.4rem;
        margin-top: 2.5rem;
        margin-bottom: 1rem;
    }

    .prose h3 {
        font-size: 1.15rem;
        margin-top: 2rem;
    }

    .prose p > em:only-child {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        margin: 1.5rem -0.5rem;
    }

    .prose table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .prose th,
    .prose td {
        padding: 0.75rem 1rem;
        white-space: nowrap;
    }

    .prose hr {
        margin: 3rem auto;
    }

    .transport-options-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1rem;
    }

    .transport-option {
        padding: 1rem 0.75rem;
    }

    .transport-option img {
        width: 40px;
        height: 40px;
    }

    .park-header h1,
    .resort-header h1 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .related-content {
        padding: 3rem 1.5rem;
    }

    .related-content h2 {
        font-size: 1.5rem;
    }
}
