        :root {
            --color-primary: #0A0E27;
            --color-accent: #FF6B4A;
            --color-accent-soft: #FFB4A1;
            --color-cream: #FFFBF5;
            --color-gray: #8B8B8B;
            --color-gray-light: #E5E5E5;
            --color-white: #FFFFFF;

            --font-display: 'Playfair Display', serif;
            --font-body: 'DM Sans', sans-serif;

            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --spacing-xl: 6rem;
            --spacing-2xl: 8rem;

            --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--color-cream);
            color: var(--color-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Typography */
        h1,
        h2,
        h3 {
            font-family: var(--font-display);
            font-weight: 700;
            line-height: 1.1;
        }

        h1 {
            font-size: clamp(3rem, 8vw, 6.5rem);
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            letter-spacing: -0.01em;
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
        }

        .subhead {
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            font-weight: 400;
            line-height: 1.5;
            color: var(--color-gray);
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }

        .container-narrow {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border: none;
            border-radius: 0;
            cursor: pointer;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--color-primary);
            color: var(--color-white);
        }

        .btn-primary:hover {
            background: var(--color-accent);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 74, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--color-primary);
            border: 2px solid var(--color-primary);
        }

        .btn-secondary:hover {
            background: var(--color-primary);
            color: var(--color-white);
            transform: translateY(-2px);
        }

        /* Section */
        section {
            padding: var(--spacing-xl) 0;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        section:nth-child(even) {
            animation-delay: 0.1s;
        }

        section:nth-child(odd) {
            animation-delay: 0.15s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hero Section */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: var(--spacing-2xl) 0;
            background: linear-gradient(135deg, var(--color-cream) 0%, #FFF5EB 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(255, 107, 74, 0.08) 0%, transparent 70%);
            pointer-events: none;
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.6;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
        }

        .hero {
            background:
                radial-gradient(circle at 80% 30%, rgba(10, 14, 39, 0.04), transparent 60%),
                linear-gradient(135deg, var(--color-cream), #FFF3EA);
        }


        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1000px;
        }

        .hero h1 {
            margin-bottom: var(--spacing-md);
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .hero .subhead {
            margin-bottom: var(--spacing-lg);
            max-width: 600px;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        .hero-cta {
            display: flex;
            gap: var(--spacing-md);
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s backwards;
        }

        .hero-visual {
            position: absolute;
            right: 5%;
            bottom: 10%;
            width: 400px;
            height: 400px;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        /* Accent Line */
        .accent-line {
            width: 100px;
            height: 4px;
            background: var(--color-accent);
            margin: var(--spacing-md) 0;
        }

        /* Section Header */
        .section-header {
            margin-bottom: var(--spacing-lg);
            text-align: center;
        }

        .section-header.left {
            text-align: left;
        }

        /* What The Hustl Is */
        .what-section {
            background: var(--color-white);
            position: relative;
            overflow: hidden;
        }

        .what-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--color-accent) 0%, transparent 100%);
        }

        .what-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.125rem;
            line-height: 1.8;
        }

        .what-content p {
            margin-bottom: var(--spacing-md);
            color: var(--color-gray);
        }

        .what-content p strong {
            color: var(--color-primary);
            font-weight: 600;
        }

        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--spacing-md);
            margin-top: var(--spacing-lg);
        }

        .product-card {
            background: linear-gradient(180deg, rgba(10, 14, 39, 0.015), rgba(10, 14, 39, 0)),
                var(--color-white);
            padding: var(--spacing-lg);
            border: 2px solid var(--color-gray-light);
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--color-accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition-smooth);
        }

        .product-card:hover {
            transform: translateY(-8px);
            border-color: var(--color-accent);
            box-shadow: 0 20px 40px rgba(255, 107, 74, 0.2);
        }

        .product-card:hover::before {
            transform: scaleX(1);
        }

        .product-card:hover .status-badge {
            transform: scale(1.05);
        }

        .product-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--color-accent-soft) 0%, var(--color-accent) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: var(--spacing-md);
            transition: var(--transition-bounce);
        }

        .product-card:hover .product-icon {
            transform: rotate(360deg) scale(1.1);
        }

        .product-name {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: var(--spacing-sm);
            color: var(--color-primary);
        }

        .product-description {
            color: var(--color-gray);
            margin-bottom: var(--spacing-sm);
            font-size: 0.95rem;
        }

        .status-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 20px;
            transition: var(--transition-smooth);
        }

        .status-live {
            background: #D4EDDA;
            color: #155724;
        }

        .status-dev {
            background: #FFF3CD;
            color: #856404;
        }

        .status-soon {
            background: #E7E7E7;
            color: #6C757D;
        }

        /* Who It's For */
        .audience-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--spacing-md);
            margin-top: var(--spacing-lg);
        }

        .audience-item {
            display: flex;
            align-items: center;
            gap: var(--spacing-md);
            padding: var(--spacing-md);
            background: var(--color-white);
            border-left: 4px solid var(--color-accent);
            transition: var(--transition-smooth);
        }

        .audience-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(10, 14, 39, 0.08);
        }

        .audience-icon {
            font-size: 2rem;
            min-width: 40px;
        }

        .audience-text {
            font-size: 1.125rem;
            font-weight: 500;
            color: var(--color-primary);
        }

        /* Ecosystem */
        .ecosystem-section {
            background: linear-gradient(180deg, #FFFBF5 0%, #FFFFFF 40%, #FFFBF5 100%);
        }

        .ecosystem-section .muted {
          color: #6F7383;
        }

        .ecosystem-section h2,
        .ecosystem-section p {
          color: #0A0E27;
        }

        .ecosystem-section .subhead {
            color: var(--color-accent-soft);
        }

        .ecosystem-cta {
            display: flex;
            gap: var(--spacing-md);
            flex-wrap: wrap;
            justify-content: center;
            margin-top: var(--spacing-lg);
        }

        .btn-light {
            background: var(--color-white);
            color: var(--color-primary);
        }

        .btn-light:hover {
            background: var(--color-accent);
            color: var(--color-white);
            transform: translateY(-2px);
        }

        .btn-outline-light {
            background: transparent;
            color: var(--color-white);
            border: 2px solid var(--color-white);
        }

        .btn-outline-light:hover {
            background: var(--color-white);
            color: var(--color-primary);
        }

        /* Founder Quote */
        .founder-section {
            background: var(--color-white);
            position: relative;
        }

        .founder-quote {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .quote-mark {
            font-size: 6rem;
            font-family: var(--font-display);
            color: var(--color-accent-soft);
            line-height: 0.5;
            display: block;
            margin-bottom: var(--spacing-md);
        }

        .quote-text {
            font-family: var(--font-display);
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            font-style: italic;
            line-height: 1.5;
            margin-bottom: var(--spacing-lg);
            color: var(--color-primary);
        }

        .founder-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--spacing-xs);
        }

        .founder-name {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--color-primary);
        }

        .founder-title {
            color: var(--color-gray);
            font-size: 1rem;
        }

        /* Email Signup */
        .email-section {
            background: linear-gradient(135deg, var(--color-accent) 0%, #FF8B6D 100%);
            color: var(--color-white);
        }

        .email-section h2 {
            color: var(--color-white);
        }

        .email-section .subhead {
            color: rgba(255, 255, 255, 0.9);
        }

        .email-form {
            display: flex;
            gap: var(--spacing-sm);
            max-width: 600px;
            margin: var(--spacing-lg) auto 0;
            flex-wrap: wrap;
        }

        .email-input {
            flex: 1;
            min-width: 250px;
            padding: 1rem 1.5rem;
            font-family: var(--font-body);
            font-size: 1rem;
            border: 2px solid transparent;
            background: rgba(255, 255, 255, 0.95);
            color: var(--color-primary);
            transition: var(--transition-smooth);
        }

        .email-input:focus {
            outline: none;
            border-color: var(--color-primary);
            background: var(--color-white);
        }

        .email-input::placeholder {
            color: var(--color-gray);
        }

        /* Movement Section */
        .movement-section {
            background: var(--color-cream);
        }

        .roadmap-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--spacing-lg);
            margin-top: var(--spacing-lg);
        }

        .roadmap-column {
            background: var(--color-white);
            padding: var(--spacing-lg);
            border-top: 4px solid var(--color-accent);
            transition: var(--transition-smooth);
        }

        .roadmap-column:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(10, 14, 39, 0.1);
        }

        .roadmap-title {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 600;
            margin-bottom: var(--spacing-md);
            color: var(--color-primary);
        }

        .roadmap-list {
            list-style: none;
        }

        .roadmap-list li {
            padding: var(--spacing-sm) 0;
            color: var(--color-gray);
            border-bottom: 1px solid var(--color-gray-light);
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
        }

        .roadmap-list li:last-child {
            border-bottom: none;
        }

        .roadmap-list li::before {
            content: '→';
            color: var(--color-accent);
            font-weight: bold;
        }

        /* Footer */
        footer {
            background: var(--color-primary);
            color: var(--color-white);
            padding: var(--spacing-xl) 0 var(--spacing-md);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-lg);
        }

        .footer-brand {
            grid-column: 1 / -1;
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: var(--spacing-sm);
        }

        .footer-tagline {
            color: var(--color-gray);
            margin-bottom: var(--spacing-md);
        }

        .footer-section h3 {
            font-size: 1rem;
            margin-bottom: var(--spacing-md);
            color: var(--color-accent);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: var(--spacing-sm);
        }

        .footer-links a {
            color: var(--color-gray);
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        .footer-links a:hover {
            color: var(--color-white);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: var(--spacing-md);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--color-gray);
            font-size: 0.875rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                min-height: 70vh;
                text-align: center;
            }

            .hero-content {
                text-align: center;
            }
        .hero-content { max-width: 720px; }
        .hero h1 { font-size: clamp(3.25rem, 6vw, 5.5rem); }
        .hero p { font-size: 1.1rem; max-width: 58ch; }
                
            .hero .subhead {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-cta {
                justify-content: center;
            }

            .hero-visual {
                display: none;
            }

            .email-form {
                flex-direction: column;
            }

            .audience-item {
                flex-direction: column;
                text-align: center;
            }

            section {
                padding: var(--spacing-lg) 0;
            }
        }

        /* Scroll Reveal Animation */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* =========================================
   THE HUSTL - Color System Wiring Overrides
   Paste near end of <style>
   ========================================= */

        /* Global text tuning */
        body {
            background-color: var(--color-cream);
            color: var(--color-primary);
        }

        /* Subhead + supporting text a bit more “platform” */
        .subhead {
            color: var(--color-muted);
        }

        /* Accent line should stay “action”, not decoration everywhere */
        .accent-line {
            background: var(--color-accent);
        }

        /* -----------------------------------------
   HERO
----------------------------------------- */
        .hero {
            /* Keep soft-life warmth but slightly more “systems” */
            background: linear-gradient(135deg, var(--color-cream) 0%, #FFF3EA 100%);
        }

        .hero::before {
            /* Coral glow reduced so it feels intentional */
            background: radial-gradient(circle, rgba(255, 107, 74, 0.06) 0%, transparent 70%);
        }

        /* Buttons: keep behavior but tighten contrast */
        .btn-primary {
            background: var(--color-primary);
            color: var(--color-white);
        }

        .btn-primary:hover {
            background: var(--color-accent);
            box-shadow: 0 10px 30px rgba(255, 107, 74, 0.22);
        }

        .btn-secondary {
            color: var(--color-primary);
            border: 2px solid rgba(10, 14, 39, 0.75);
        }

        .btn-secondary:hover {
            background: var(--color-primary);
            color: var(--color-white);
        }

        /* -----------------------------------------
   WHAT SECTION (keep as “breathing space”)
----------------------------------------- */
        .what-section {
            background: var(--color-white);
        }

        .what-content p {
            color: var(--color-muted);
        }

        /* -----------------------------------------
   PRODUCT GRID (make it feel like a platform)
----------------------------------------- */
        #products {
            /* Give this area subtle depth without going full dark */
            background: linear-gradient(180deg, var(--color-cream) 0%, #FFF7EF 100%);
        }

        .product-card {
            background: var(--color-white);
            border: 2px solid rgba(229, 229, 229, 0.9);
        }

        .product-card:hover {
            border-color: rgba(255, 107, 74, 0.9);
            box-shadow: 0 22px 44px rgba(10, 14, 39, 0.10), 0 18px 40px rgba(255, 107, 74, 0.12);
        }

        /* Icons: keep coral, but make it less “candy” */
        .product-icon {
            background: linear-gradient(135deg, rgba(255, 180, 161, 0.9) 0%, rgba(255, 107, 74, 0.95) 100%);
        }

        /* Status badges now use variables */
        .status-live {
            background: var(--status-live-bg);
            color: var(--status-live-text);
        }

        .status-dev {
            background: var(--status-dev-bg);
            color: var(--status-dev-text);
        }

        .status-soon {
            background: var(--status-soon-bg);
            color: var(--status-soon-text);
        }

        /* -----------------------------------------
   WHO IT’S FOR (keep light, but more “system”)
----------------------------------------- */
        section[style*="background: var(--color-white)"] .subhead {
            color: var(--color-muted);
        }

        /* Audience cards: refine border + hover */
        .audience-item {
            background: var(--color-white);
            border-left: 4px solid var(--color-accent);
        }

        .audience-item:hover {
            box-shadow: 0 12px 30px rgba(10, 14, 39, 0.10);
        }

        /* -----------------------------------------
   ECOSYSTEM (dark surface layering)
----------------------------------------- */
        .ecosystem-section {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark-surface) 100%);
        }

        .ecosystem-section .subhead {
            color: var(--color-muted-on-dark);
        }

        /* “Currently building…” line */
        .ecosystem-section p[style*="color: var(--color-accent-soft)"] {
            color: rgba(255, 180, 161, 0.92) !important;
        }

        /* Dark section buttons */
        .btn-light:hover {
            background: var(--color-accent);
            color: var(--color-white);
        }

        .btn-outline-light {
            border-color: rgba(255, 255, 255, 0.85);
        }

        .btn-outline-light:hover {
            background: var(--color-white);
            color: var(--color-primary);
        }

        /* -----------------------------------------
   FOUNDER (cream/white area stays premium)
----------------------------------------- */
        .founder-section {
            background: var(--color-white);
        }

        .quote-mark {
            color: rgba(255, 180, 161, 0.85);
        }

        /* -----------------------------------------
   EMAIL SIGNUP (keep coral as conversion moment)
----------------------------------------- */
        .email-section {
            /* Coral stays the moment, but slightly less neon */
            background: linear-gradient(135deg, var(--color-accent) 0%, #FF7E63 100%);
        }

        .email-input {
            background: rgba(255, 255, 255, 0.96);
        }

        .email-input:focus {
            border-color: var(--color-primary);
        }

        /* -----------------------------------------
   MOVEMENT (roadmap should feel “platform”)
----------------------------------------- */
        .movement-section {
            background: var(--color-cream);
        }

        .roadmap-column {
            background: var(--color-white);
            border-top: 4px solid var(--color-accent);
        }

        .roadmap-list li::before {
            color: var(--color-accent);
        }

        /* Optional: make “Now” feel special using gold (subtle) */
        .roadmap-column:first-child {
            border-top-color: var(--color-system-gold);
        }

        .roadmap-column:first-child .roadmap-list li::before {
            color: var(--color-system-gold);
        }

        /* -----------------------------------------
   FOOTER (dark + readable)
----------------------------------------- */
        footer {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark-surface) 100%);
        }

        .footer-tagline,
        .footer-links a,
        .footer-bottom {
            color: rgba(185, 188, 200, 0.85);
        }

        .footer-section h3 {
            color: var(--color-accent);
        }

        .footer-links a:hover {
            color: var(--color-white);
        }

        /* Use gold only for “progress” moments */
        .roadmap-title {
            /* default stays primary */
        }

        .roadmap-column:first-child .roadmap-title {
            color: var(--color-primary);
        }

        .product-card {
            background:
                linear-gradient(180deg, rgba(10, 14, 39, 0.02), rgba(10, 14, 39, 0.00)),
                var(--color-white);

        }
