/* --- System Theme Tokens --- */
:root {
    /* The Canvas - Warm, premium butter yellow canvas */
    --bg-canvas: #FF9933;          /* FIXED: Soft, beautiful banana-milk ORANGE */
    --text-slate-ink: #191E24;     /* Thick structural charcoal ink */
    
    /* The Identity Hits */
    --brand-acid-mint: #00F6A5;    /* High-saturation electric freshness */
    --brand-coral: #FF5A5A;       /* Aggressive conversion pink/red */
    --brand-sky-blue: #38BDF8;    /* Deep technical sky pop */
    
    --card-bg: #FFFFFF;
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* --- Tactile Brutalist Canvas: Muted Yellow with Sharp Micro-Grid --- */
body {
    background-color: var(--bg-canvas);
    background-image: 
        linear-gradient(rgba(25, 30, 36, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 30, 36, 0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    color: var(--text-slate-ink);
    font-family: var(--font-body);
}

/* --- Clean Section Flow & Tightened Padding --- */
.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4.5rem 2rem; 
}

/* --- Fixed Top Navigation --- */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 2rem;
    right: 2rem;
    max-width: 1140px;
    margin: 0 auto;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card-bg);
    padding: 0.8rem 2rem;
    border: 4px solid var(--text-slate-ink);
    border-radius: 20px;
    box-shadow: 6px 6px 0px var(--text-slate-ink);
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brand-coral);
    text-shadow: 2px 2px 0px var(--text-slate-ink);
    display: inline-block;
    transform: rotate(-3deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-slate-ink);
    font-weight: 700;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--brand-coral);
}

.nav-links .nav-btn {
    background: var(--brand-acid-mint);
    color: var(--text-slate-ink);
    padding: 0.5rem 1rem;
    border: 3px solid var(--text-slate-ink);
    border-radius: 12px;
    box-shadow: 3px 3px 0px var(--text-slate-ink);
}

.nav-links .nav-btn:hover {
    background: var(--brand-coral);
    color: white;
}

/* ==========================================================================
   HERO BLOCK ADJUSTMENTS
   ========================================================================== */

.strip-hero {
    padding: 9.5rem 2rem 2.5rem 2rem; 
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

@media (max-width: 968px) {
    .hero-container { grid-template-columns: 1fr; gap: 3rem; }
}

.hero-content {
    background: var(--card-bg);
    border: 4px solid var(--text-slate-ink);
    border-radius: 32px;
    padding: 3.5rem;
    box-shadow: 12px 12px 0px var(--text-slate-ink);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cat-peek-container {
    position: absolute;
    top: -53px;
    left: 32px;
    width: 110px;
    height: 55px;
    overflow: hidden;
    z-index: 10;
}

.cat-peek-svg { width: 100%; height: auto; }

.headline {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.highlight-teal {
    background-color: var(--brand-acid-mint);
    padding: 0 0.4rem;
    border: 3px solid var(--text-slate-ink);
    box-shadow: 3px 3px 0px var(--text-slate-ink);
    display: inline-block;
    transform: rotate(1deg);
}

.subheadline { font-size: 1.2rem; line-height: 1.6; color: #2D3748; }

/* Waitlist Card */
.waitlist-card {
    background-color: var(--card-bg);
    border: 4px solid var(--text-slate-ink);
    border-radius: 32px;
    padding: 3.5rem;
    box-shadow: 12px 12px 0px var(--text-slate-ink);
}

.waitlist-card h2 { font-family: var(--font-heading); font-size: 2.4rem; margin-bottom: 1rem; }
.waitlist-card p { font-size: 1.1rem; line-height: 1.5; color: #4A5568; margin-bottom: 2rem; }
.waitlist-form { display: flex; flex-direction: column; gap: 1rem; }

.form-input {
    width: 100%;
    padding: 1.1rem;
    border: 3px solid var(--text-slate-ink);
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    outline: none;
    background-color: #FAFBFD;
}

.form-input:focus {
    background-color: white;
    box-shadow: inset 0 0 0 2px var(--brand-coral);
}

.btn-submit {
    background-color: var(--brand-coral);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    padding: 1.1rem;
    border: 4px solid var(--text-slate-ink);
    border-radius: 16px;
    box-shadow: 5px 5px 0px var(--text-slate-ink);
    cursor: pointer;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
}

.btn-submit:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px var(--text-slate-ink);
}

.form-footer { font-size: 0.85rem; font-weight: 700; color: #718096; margin-top: 1.2rem; text-align: center; }

/* ==========================================================================
   UPGRADED FEATURES SECTION
   ========================================================================== */

.flow-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 1rem;
}

.flow-item {
    background: var(--card-bg);
    border: 4px solid var(--text-slate-ink);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 8px 8px 0px var(--text-slate-ink);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.2s ease;
}

.flow-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0px var(--text-slate-ink);
}

.flow-item::after {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    opacity: 0.15;
    color: var(--text-slate-ink);
    pointer-events: none;
}

.flow-item:nth-child(1)::after { content: "01"; }
.flow-item:nth-child(2)::after { content: "02"; }
.flow-item:nth-child(3)::after { content: "03"; }

.flow-item h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.flow-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #334155;
}

.flow-badge {
    color: var(--text-slate-ink);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: inline-block;
    text-transform: uppercase;
    border: 3px solid var(--text-slate-ink);
    box-shadow: 2px 2px 0px var(--text-slate-ink);
    align-self: flex-start;
}

.badge-teal { background-color: var(--brand-sky-blue); }
.badge-coral { background-color: var(--brand-coral); color: white; }
.badge-yellow { background-color: #FBBF24; }

/* ==========================================================================
   MATRIX & ALTERNATIVES SECTION
   ========================================================================== */

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2.5rem; 
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 3.5rem; 
}

.matrix-card {
    padding: 3rem 2.5rem;
    border: 4px solid var(--text-slate-ink);
    border-radius: 28px;
    background: var(--card-bg);
}

.bad-card { 
    box-shadow: 4px 4px 0px rgba(0,0,0,0.05); 
    opacity: 0.75; 
    border-style: dashed;
    background: rgba(255, 255, 255, 0.6);
}

.win-card { 
    background-color: #FFFFFF;
    box-shadow: 12px 12px 0px var(--text-slate-ink); 
    position: relative;
}

.win-card::before {
    content: "REVOLUTIONARY";
    position: absolute;
    top: -16px;
    right: 24px;
    background: var(--brand-acid-mint);
    border: 3px solid var(--text-slate-ink);
    padding: 0.2rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 900;
    border-radius: 8px;
    box-shadow: 2px 2px 0px var(--text-slate-ink);
}

.matrix-card h3 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 0.25rem; }
.price-tag { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; color: #718096; margin-bottom: 1.5rem; }
.win-card .price-tag { color: var(--brand-coral); }
.matrix-card p { font-size: 1.1rem; line-height: 1.5; font-weight: 500; }

/* Context Story Board */
.info-section {
    background: var(--card-bg);
    border: 4px solid var(--text-slate-ink);
    border-radius: 32px;
    padding: 4rem 3rem;
    box-shadow: 10px 10px 0px var(--text-slate-ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-section h2 { font-family: var(--font-heading); font-size: 2.4rem; margin-bottom: 1.2rem; }
.info-section p { font-size: 1.2rem; line-height: 1.7; max-width: 850px; color: #2D3748; }

/* Global Footer */
.site-footer {
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 3rem 2rem;
    border-top: 4px dashed var(--text-slate-ink);
    margin-top: 3rem;
}

/* ==========================================================================
   COMBINED MOBILE RESPONSIVE ENGINE (UNIFIED & CLEAN)
   ========================================================================== */
@media (max-width: 768px) {
    /* Main layout containment */
    body, html {
        overflow-x: hidden;
        font-size: 15px; 
    }

    .section-wrapper { 
        padding: 3rem 1.25rem; 
    }

    /* Prevent squishing on mobile navbar by stacking items */
    .navbar {
        position: static; 
        margin: 1rem auto;
        padding: 1rem;
        flex-direction: column; 
        gap: 1rem; 
        width: calc(100% - 2.5rem); 
    }

    .logo {
        font-size: 1.8rem; 
        transform: rotate(-2deg); 
        text-align: center;
    }

    .nav-links {
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 1.2rem;
        width: 100%;
    }

    .nav-links a {
        font-size: 0.9rem; 
    }

    /* Layout structural shifts */
    .strip-hero {
        padding-top: 1.5rem;  
    }

    .hero-container, .features-grid, .content-wrapper {
        display: flex;
        flex-direction: column;
        padding: 20px !important; 
        text-align: center;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    /* Scaling typography gracefully */
    .headline {
        font-size: 2.2rem !important;
        line-height: 1.15;
    }

    h1 {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    /* Form and interactive element styling */
    .cta-button, button, .btn-submit {
        width: 100%;
        padding: 15px 20px;
        box-sizing: border-box;
    }
}