        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #ffffff;
            color: #111111;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* ===== BLUE WAVE BACKGROUND ===== */
        .wave-background {
            position: fixed;
            top: 480px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 500px;
            pointer-events: none;
            z-index: 0;
            overflow: visible;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            transition: opacity 0.3s ease;
        }
        
        .wave-container {
            width: 100%;
            max-width: 1400px;
            height: 100%;
            position: relative;
        }
        
        .wave-layer {
            position: absolute;
            width: 100%;
            left: 0;
        }
        
        .wave-1 { top: 0; animation: wave-drift 8s ease-in-out infinite; }
        .wave-2 { top: 15px; animation: wave-drift 10s ease-in-out infinite reverse; }
        .wave-3 { top: 30px; animation: wave-drift 7s ease-in-out infinite; }
        .wave-4 { top: 45px; animation: wave-drift 12s ease-in-out infinite reverse; }
        .wave-5 { top: 60px; animation: wave-drift 9s ease-in-out infinite; }
        
        @keyframes wave-drift {
            0%, 100% { transform: translateX(-2%); }
            50% { transform: translateX(2%); }
        }
        
        /* Header */
        .header {
            background: #ffffff;
            border-bottom: 1px solid #e5e7eb;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        
        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #60a5fa, #2563eb);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
        }
        
        .logo-icon span {
            color: white;
            font-weight: 700;
            font-size: 16px;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-text .brand-name {
            font-size: 20px;
            font-weight: 700;
            color: #111827;
            text-decoration: none;
            line-height: 1.2;
        }
        
        .logo-text .tagline {
            font-size: 12px;
            color: #6b7280;
            font-weight: 400;
        }
        
        .nav-links {
            display: flex;
            gap: 24px;
            align-items: center;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #4b5563;
            font-weight: 500;
            font-size: 14px;
            transition: color 0.2s;
        }
        
        .nav-links a:hover {
            color: #2563eb;
        }
        
        .nav-links .nav-btn {
            padding: 10px 20px !important;
            background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
            color: white !important;
            border-radius: 8px !important;
            font-weight: 600 !important;
            box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
            cursor: pointer;
        }
        
        /* Nav Dropdown */
        .nav-dropdown {
            position: relative;
        }
        
        .nav-dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .nav-dropdown-toggle::after {
            content: '▼';
            font-size: 8px;
            opacity: 0.7;
        }
        
        .nav-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            min-width: 180px;
            padding: 8px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
            z-index: 1000;
        }
        
        .nav-dropdown:hover .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .nav-dropdown-menu a {
            display: block;
            padding: 10px 16px;
            color: #334155;
            font-size: 14px;
        }
        
        .nav-dropdown-menu a:hover {
            background: #f1f5f9;
            color: #2563eb;
        }
        
        /* Newsletter Modal - Styled like Blue Box */
        .newsletter-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .newsletter-modal-overlay.active {
            display: flex;
            opacity: 1;
        }
        
        /* MODAL STYLED EXACTLY LIKE THE BLUE BOX */
        .newsletter-modal {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
            border-radius: 20px;
            padding: 45px 60px 40px;
            max-width: 700px;
            width: 90%;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            box-shadow: 0 8px 30px rgba(37, 99, 235, 0.25);
            text-align: center;
        }
        
        .newsletter-modal-overlay.active .newsletter-modal {
            transform: scale(1);
        }
        
        .newsletter-modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            border: none;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            transition: all 0.2s;
        }
        
        .newsletter-modal-close:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .newsletter-modal h2 {
            font-size: 32px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
        }
        
        .newsletter-modal .subtitle-text {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 28px;
        }
        
        .newsletter-modal .email-form {
            max-width: 500px;
            margin: 0 auto 20px;
        }
        
        .newsletter-modal .email-form-inputs {
            display: flex;
            gap: 12px;
            margin-bottom: 15px;
        }
        
        .newsletter-modal .email-form-inputs input {
            flex: 1;
            padding: 16px 20px;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            border: none;
            border-radius: 10px;
            background: #ffffff;
            color: #333;
        }
        
        .newsletter-modal .email-form-inputs input::placeholder {
            color: #999;
        }
        
        .newsletter-modal button[type="submit"] {
            display: block;
            width: auto;
            margin: 0 auto;
            padding: 14px 50px;
            font-size: 14px;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #1e3a5f, #0f172a);
            color: #ffffff;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            transition: all 0.3s;
        }
        
        .newsletter-modal button[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
        }
        
        .newsletter-modal .modal-benefits {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 25px;
        }
        
        .newsletter-modal .modal-benefit {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #ffffff;
            font-size: 14px;
            font-weight: 500;
        }
        
        .newsletter-modal .modal-benefit svg {
            color: #86efac;
        }
        
        .newsletter-modal .modal-footer-text {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.85);
            margin-top: 15px;
        }
        
        /* ============================================= */
        /* VALUE PROP SECTION (Replaces Newsletter Box) */
        /* ============================================= */
        .value-prop-section {
            text-align: center;
            margin: 0 auto 50px;
            max-width: 700px;
            padding: 0 20px;
            
            /* Fade In Animation */
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease-out 0.3s forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .value-prop-headline {
            font-size: 24px;
            font-weight: 600;
            color: #333;
            margin-bottom: 24px;
            line-height: 1.4;
        }
        
        .value-prop-headline .accent {
            color: #2563eb;
        }
        
        .see-rankings-btn {
            display: inline-block;
            padding: 14px 40px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            border-radius: 10px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
            transition: all 0.3s;
        }
        
        .see-rankings-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        }
        
        /* Spotlight View Button */
        .spotlight-view-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 12px 20px;
            background: #f1f5f9;
            color: #334155;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.2s;
            margin-left: 12px;
        }
        
        .spotlight-view-btn:hover {
            background: #e2e8f0;
            color: #1e293b;
        }
        
        .spotlight-view-btn.ph {
            background: #fff7ed;
            color: #c2410c;
        }
        
        .spotlight-view-btn.ph:hover {
            background: #ffedd5;
        }
        
        /* Clickable gallery */
        .spotlight-carousel-slide {
            cursor: pointer;
        }
        
        .spotlight-carousel-slide:hover img {
            opacity: 0.9;
        }
        
        /* CTA Row */
        .spotlight-cta-row {
            display: flex;
            gap: 12px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        /* Main Container */
        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 40px 60px;
            position: relative;
            z-index: 1;
        }
        
        /* Hero Section */
        .hero-section {
            text-align: center;
            padding: 15px 0 30px;
        }
        
        .hero-logo {
            width: 70px;
            height: 70px;
            margin: 0 auto 10px;
        }
        
        .hero-title {
            font-size: 52px;
            font-weight: 300;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
            color: #111111;
        }
        
        /* AI Tools - 3D depth effect (no float) */
        .hero-title .highlight {
            color: #3b82f6;
            font-weight: 700;
        }
        
        .hero-tagline {
            font-size: 42px;
            font-weight: 700;
            font-style: italic;
            letter-spacing: -1px;
            margin-bottom: 18px;
        }
        
        /* Your choice - static cyan */
        .hero-tagline .static {
            color: #0ea5e9;
        }
        
        /* Your edge - Gradient Shimmer */
        .hero-tagline .shimmer-alt {
            background: linear-gradient(
                90deg,
                #7c3aed 0%,
                #ec4899 25%,
                #f59e0b 50%,
                #ec4899 75%,
                #7c3aed 100%
            );
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 12s linear infinite;
        }
        
        @keyframes shimmer {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }
        
        /* Subtitle - Typewriter effect (slow) */
        .hero-subtitle {
            font-size: 22px;
            font-weight: 500;
            color: #1f2937;
            margin: 0 auto;
            line-height: 1.5;
            display: flex;
            justify-content: center;
        }
        
        .typewriter-text {
            display: inline-block;
            overflow: hidden;
            white-space: nowrap;
            border-right: 3px solid #3b82f6;
            width: 0;
            animation: 
                typewriter 5s steps(72) forwards,
                blink 0.6s step-end 16,
                cursorFade 0.1s 10s forwards;
        }
        
        @keyframes typewriter {
            0% { width: 0; }
            100% { width: 72ch; }
        }
        
        @keyframes blink {
            50% { border-color: transparent; }
        }
        
        @keyframes cursorFade {
            100% { border-color: transparent; }
        }
        
        /* ============================================= */
        /* NEWSLETTER SECTION - Centered with Fade In   */
        /* ============================================= */
        .newsletter-section {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
            border-radius: 20px;
            padding: 45px 60px 40px;
            margin: 0 auto 50px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(37, 99, 235, 0.25);
            max-width: 700px;
            
            /* Fade In Animation */
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease-out 0.3s forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .newsletter-section h2 {
            font-size: 32px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
        }
        
        .newsletter-section .subtitle-text {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 28px;
        }
        
        .email-form {
            max-width: 500px;
            margin: 0 auto 20px;
        }
        
        .email-form-inputs {
            display: flex;
            gap: 12px;
            margin-bottom: 15px;
        }
        
        .email-form input[type="text"],
        .email-form input[type="email"] {
            flex: 1;
            padding: 16px 20px;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            border: none;
            border-radius: 10px;
            background: #ffffff;
            color: #333;
        }
        
        .email-form input::placeholder {
            color: #999;
        }
        
        .email-form button {
            display: block;
            width: auto;
            margin: 0 auto;
            padding: 14px 50px;
            font-size: 14px;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #1e3a5f, #0f172a);
            color: #ffffff;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            transition: all 0.3s;
        }
        
        .email-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
        }
        
        .newsletter-benefits {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 25px;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #ffffff;
            font-size: 14px;
            font-weight: 500;
        }
        
        .newsletter-footer-text {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.85);
            margin-top: 15px;
        }
        
        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .section-header h2 {
            font-size: 28px;
            font-weight: 700;
            color: #111;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        
        .section-header p {
            font-size: 16px;
            color: #666;
            margin-top: 8px;
        }
        
        /* ============================================= */
        /* SPOTLIGHT SECTION - INFO ON TOP, THUMBNAILS BELOW */
        /* ============================================= */
        .spotlight-section {
            margin-bottom: 60px;
        }
        
        .spotlight-stack {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        /* Spotlight card is now VERTICAL layout */
        .spotlight-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0,0,0,0.08);
            border: 1px solid #e8eef3;
            display: flex;
            flex-direction: column;
            transition: all 0.3s;
            /* Visible by default */
            opacity: 1;
            transform: translateY(0);
        }
        
        .spotlight-card:hover {
            box-shadow: 0 12px 48px rgba(0,0,0,0.12);
        }
        
        /* Info section - FULL WIDTH ON TOP */
        .spotlight-info {
            padding: 32px 40px;
            display: flex;
            flex-direction: column;
        }
        
        .spotlight-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }
        
        .spotlight-badge {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
        }
        
        .spotlight-badge.aime {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: white;
        }
        
        .spotlight-badge.ph {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
        }
        
        .spotlight-logo {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            object-fit: cover;
            border: 2px solid #e2e8f0;
        }
        
        .spotlight-title-area {
            flex: 1;
        }
        
        .spotlight-source {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: #888;
            margin-bottom: 4px;
            font-weight: 600;
        }
        
        a.spotlight-tool-name {
            font-size: 26px;
            font-weight: 700;
            color: #111;
            margin-bottom: 6px;
            text-decoration: none;
            display: block;
            transition: color 0.2s;
        }
        
        a.spotlight-tool-name:hover {
            color: #00A3FF;
            text-decoration: underline;
        }
        
        .spotlight-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 13px;
            color: #666;
        }
        
        .spotlight-meta .stars {
            color: #f5a623;
        }
        
        .spotlight-meta .aime-score {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 12px;
        }
        
        .spotlight-meta .votes {
            color: #ef4444;
            font-weight: 600;
        }
        
        .spotlight-date {
            font-size: 12px;
            color: #888;
            margin-top: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .spotlight-tagline {
            font-size: 15px;
            font-weight: 600;
            color: #2563eb;
            margin: 16px 0 12px;
        }
        
        .spotlight-description {
            font-size: 14px;
            color: #444;
            line-height: 1.7;
            flex: 1;
        }
        
        .spotlight-features {
            margin-top: 20px;
        }
        
        .spotlight-features-title {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #888;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 12px;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .feature-icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 12px;
            color: white;
        }
        
        .feature-content {
            flex: 1;
        }
        
        .feature-name {
            font-size: 13px;
            font-weight: 600;
            color: #111;
        }
        
        .feature-desc {
            font-size: 12px;
            color: #666;
            line-height: 1.5;
        }
        
        .spotlight-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            padding: 14px 28px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            margin-top: 24px;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
            align-self: flex-start;
        }
        
        .spotlight-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        }
        
        .spotlight-cta.ph {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
        }
        
        .spotlight-cta.ph:hover {
            box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
        }
        
        /* Gallery - HORIZONTAL THUMBNAILS BELOW INFO */
        .spotlight-gallery {
            background: #f8fafc;
            padding: 20px 40px 24px;
            border-top: 1px solid #e8eef3;
        }
        
        .spotlight-gallery-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #888;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .spotlight-thumbnails {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 8px;
            scrollbar-width: thin;
            scrollbar-color: #cbd5e1 transparent;
        }
        
        .spotlight-thumbnails::-webkit-scrollbar {
            height: 6px;
        }
        
        .spotlight-thumbnails::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 3px;
        }
        
        .spotlight-thumb {
            flex-shrink: 0;
            width: 160px;
            height: 100px;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.2s;
            border: 3px solid transparent;
        }
        
        .spotlight-thumb:hover {
            border-color: #3b82f6;
            transform: scale(1.02);
        }
        
        .spotlight-thumb.active {
            border-color: #2563eb;
        }
        
        .spotlight-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Keep original carousel styles for backwards compatibility */
        .spotlight-carousel-container {
            display: none; /* Hide original carousel */
        }
        
        /* ============================================= */
        /* LATEST NEWSLETTER - FULL WIDTH               */
        /* ============================================= */
        .latest-newsletter-section {
            margin-bottom: 60px;
        }
        
        .latest-newsletter {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.08);
            border: 1px solid #e8eef3;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
        }
        
        .latest-newsletter-left {
            padding: 40px;
            display: flex;
            flex-direction: column;
        }
        
        .latest-newsletter-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }
        
        .latest-newsletter-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
        }
        
        .latest-newsletter-title-area h3 {
            font-size: 22px;
            font-weight: 700;
            color: #111;
            margin-bottom: 4px;
        }
        
        .latest-newsletter-title-area .issue-date {
            font-size: 14px;
            color: #666;
        }
        
        .latest-newsletter-issue {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-left: auto;
        }
        
        .latest-newsletter-blurb {
            font-size: 16px;
            color: #444;
            line-height: 1.8;
            margin-bottom: 24px;
            flex: 1;
        }
        
        .latest-newsletter-blurb strong {
            color: #111;
        }
        
        .latest-newsletter-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            padding: 14px 28px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
            align-self: flex-start;
        }
        
        .latest-newsletter-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        }
        
        .latest-newsletter-right {
            background: linear-gradient(135deg, #f8fafc, #eef2f7);
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .totw-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.06);
            border: 1px solid #e8eef3;
        }
        
        .totw-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        
        .totw-badge {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }
        
        .totw-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #888;
            font-weight: 600;
        }
        
        .totw-name {
            font-size: 20px;
            font-weight: 700;
            color: #111;
        }
        
        .totw-meta {
            display: flex;
            gap: 16px;
            font-size: 14px;
            color: #666;
            margin-bottom: 16px;
        }
        
        .totw-meta .stars {
            color: #f5a623;
        }
        
        .totw-description {
            font-size: 14px;
            color: #555;
            line-height: 1.6;
        }
        
        /* ============================================= */
        /* NEWSLETTER ARCHIVES - SINGLE CARD ONLY      */
        /* ============================================= */
        .archives-section {
            margin-bottom: 60px;
        }
        
        .archive-single-card {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.08);
            border: 1px solid #e8eef3;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 28px 36px;
            gap: 24px;
            transition: all 0.3s;
        }
        
        .archive-single-card:hover {
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        }
        
        .archive-single-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            flex-shrink: 0;
        }
        
        .archive-single-content {
            flex: 1;
        }
        
        .archive-single-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 8px;
            flex-wrap: wrap;
        }
        
        .archive-single-issue {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .archive-single-date {
            font-size: 14px;
            color: #888;
        }
        
        .archive-single-title {
            font-size: 18px;
            font-weight: 600;
            color: #111;
            margin-bottom: 6px;
        }
        
        .archive-single-blurb {
            font-size: 14px;
            color: #555;
            line-height: 1.5;
        }
        
        .archive-single-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: #2563eb;
            border: 2px solid #2563eb;
            padding: 12px 28px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
            flex-shrink: 0;
        }
        
        .archive-single-cta:hover {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
        }
        
        .archives-view-all {
            text-align: center;
            margin-top: 20px;
        }
        
        .archives-view-all a {
            color: #2563eb;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
        }
        
        .archives-view-all a:hover {
            text-decoration: underline;
        }
        
        /* Hide the old grid layout */
        .archives-grid {
            display: none;
        }
        
        .archives-cta {
            display: none;
        }
        
        /* ============================================= */
        /* TOP STORIES CAROUSEL - FULL WIDTH BIG        */
        /* ============================================= */
        .stories-section {
            margin-bottom: 60px;
        }
        
        .carousel-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            background: #ffffff;
            box-shadow: 0 4px 24px rgba(0,0,0,0.08);
            border: 1px solid #e8eef3;
        }
        
        .carousel-wrapper {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .carousel-slide {
            min-width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 450px;
        }
        
        .carousel-image-container {
            position: relative;
            overflow: hidden;
        }
        
        .carousel-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-source-badge {
            position: absolute;
            top: 24px;
            left: 24px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .carousel-content {
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .carousel-title {
            font-size: 28px;
            font-weight: 700;
            color: #111;
            margin-bottom: 20px;
            line-height: 1.35;
        }
        
        .carousel-description {
            font-size: 16px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .carousel-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            padding: 14px 28px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
            align-self: flex-start;
        }
        
        .carousel-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        }
        
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.95);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
            transition: all 0.2s;
            z-index: 10;
        }
        
        .carousel-nav:hover {
            background: #ffffff;
            box-shadow: 0 6px 24px rgba(0,0,0,0.2);
            transform: translateY(-50%) scale(1.05);
        }
        
        .carousel-nav.prev { left: 24px; }
        .carousel-nav.next { right: 24px; }
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 20px;
            background: #f8fafc;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #d1d5db;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .carousel-dot.active {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            width: 30px;
            border-radius: 6px;
        }
        
        /* ============================================= */
        /* WHY SUBSCRIBE - ORIGINAL STYLE AT BOTTOM     */
        /* ============================================= */
        .value-prop {
            margin-bottom: 60px;
        }
        
        .value-prop h2 {
            text-align: center;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 30px;
            color: #111111;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        
        .feature {
            display: flex;
            gap: 15px;
            padding: 24px;
            background: #f8f9fa;
            border-radius: 12px;
        }
        
        .feature .feature-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }
        
        .feature .feature-icon svg {
            width: 24px;
            height: 24px;
            color: white;
            fill: white;
        }
        
        .feature .feature-content h3 {
            font-size: 17px;
            font-weight: 600;
            color: #111;
            margin-bottom: 8px;
        }
        
        .feature .feature-content p {
            font-size: 14px;
            color: #555;
            line-height: 1.65;
        }
        
        /* Footer */
        footer {
            text-align: center;
            padding: 40px 0;
            color: #888;
            font-size: 14px;
            border-top: 1px solid #e5e7eb;
            background: #ffffff;
            margin-top: 20px;
        }
        
        footer a {
            color: #2563eb;
            text-decoration: none;
        }
        
        footer a:hover {
            text-decoration: underline;
        }
        
        .footer-links {
            margin-top: 12px;
            display: flex;
            justify-content: center;
            gap: 24px;
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .features {
                grid-template-columns: repeat(2, 1fr);
            }
            .latest-newsletter {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 992px) {
            .spotlight-card {
                grid-template-columns: 1fr;
            }
            .archives-grid {
                grid-template-columns: 1fr;
            }
            .carousel-slide {
                grid-template-columns: 1fr;
                min-height: auto;
            }
            .carousel-image-container {
                height: 300px;
            }
            .carousel-content {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .main-container {
                padding: 20px;
            }
            .features {
                grid-template-columns: 1fr;
            }
            .hero-title {
                font-size: 36px;
            }
            .hero-tagline {
                font-size: 28px;
            }
            .hero-subtitle {
                font-size: 16px;
                display: block;
            }
            .typewriter-text {
                white-space: normal;
                border-right: none;
                animation: none;
                width: 100%;
                overflow: visible;
            }
            .newsletter-section {
                padding: 30px 24px;
            }
            .email-form-inputs {
                flex-direction: column;
            }
            .spotlight-info {
                padding: 24px;
            }
            a.spotlight-tool-name {
                font-size: 22px;
            }
            .carousel-title {
                font-size: 22px;
            }
            /* Archive single card mobile */
            .archive-single-card {
                flex-direction: column;
                text-align: center;
                padding: 24px;
            }
            .archive-single-cta {
                width: 100%;
                justify-content: center;
            }
            /* Value prop mobile */
            .value-prop-headline {
                font-size: 20px;
            }
            /* Newsletter modal mobile */
            .newsletter-modal {
                padding: 30px 24px;
            }
            .newsletter-modal .email-form-inputs {
                flex-direction: column;
            }
            .newsletter-modal .modal-benefits {
                flex-direction: column;
                gap: 12px;
            }
            /* Spotlight gallery mobile */
            .spotlight-gallery {
                padding: 16px 24px 20px;
            }
        }

        /* ===== MOBILE MENU DRAWER ===== */
        .mobile-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        .mobile-overlay.open {
            opacity: 1;
            visibility: visible;
        }
        .mobile-drawer {
            position: fixed;
            top: 0;
            right: 0;
            width: 280px;
            max-width: 85vw;
            height: 100%;
            background: white;
            z-index: 9999;
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
            box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
        }
        .mobile-drawer.open {
            transform: translateX(0);
        }
        .mobile-drawer-header {
            padding: 20px;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-drawer-header span {
            font-weight: 700;
            font-size: 18px;
            color: #111827;
        }
        .mobile-drawer-close {
            width: 40px;
            height: 40px;
            border: none;
            background: #f3f4f6;
            border-radius: 10px;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6b7280;
            transition: all 0.2s;
        }
        .mobile-drawer-close:hover {
            background: #e5e7eb;
            color: #111827;
        }
        .mobile-drawer-nav {
            flex: 1;
            padding: 16px;
            overflow-y: auto;
        }
        .mobile-drawer-nav a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            color: #374151;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            border-radius: 10px;
            transition: all 0.2s;
            margin-bottom: 4px;
        }
        .mobile-drawer-nav a:hover {
            background: #f3f4f6;
        }
        .mobile-drawer-nav a.active {
            background: #eff6ff;
            color: #2563eb;
            font-weight: 600;
        }
        .mobile-drawer-nav a svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }
        .mobile-drawer-cta {
            padding: 16px;
            border-top: 1px solid #e5e7eb;
        }
        .mobile-drawer-cta a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 14px 20px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
            transition: all 0.2s;
        }
        .mobile-drawer-cta a:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
        }
        .hamburger-btn {
            display: none;
            width: 44px;
            height: 44px;
            border: none;
            background: #f3f4f6;
            border-radius: 10px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        .hamburger-btn:hover {
            background: #e5e7eb;
        }
        .hamburger-btn svg {
            width: 24px;
            height: 24px;
            color: #374151;
        }
        @media (max-width: 768px) {
            .hamburger-btn { display: flex; }
            .nav-links { display: none !important; }
        }
