:root {
    --bg: #EAEAEA;
    --text: #050505;
    --neon: #D4FF00;
    --brand-sage: #7D9882;
    --font-head: 'Space Grotesk', sans-serif;
    --font-body: 'Courier Prime', monospace;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4rem) 0;
}

/* --- Fixed Marquee Mechanics --- */
.marquee {
    background-color: var(--text);
    color: var(--bg);
    font-family: var(--font-head);
    font-weight: 900;
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-bottom: 5px solid var(--neon);
    display: flex;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: scrollMarquee 25s linear infinite;
    will-change: transform;
}

.marquee span {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    display: inline-block;
    padding-right: 2rem;
}

@keyframes scrollMarquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* --- Header --- */
.header-container {
    padding-bottom: 1rem;
}

.logo-text { 
    font-size: clamp(2.5rem, 6vw, 4rem); 
    letter-spacing: -2px; 
}

.logo-sub { 
    border-top: 2px solid var(--text); 
    display: inline-block; 
    padding-top: 5px; 
    font-weight: bold; 
    margin: 5px 0 0 0;
}

/* --- Typography --- */
h2 {
    font-family: var(--font-head);
    font-weight: 900;
    margin: 0;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.highlight {
    background-color: var(--neon);
    padding: 0 6px;
    display: inline-block;
    margin-top: 5px;
}

/* --- Layout Grids --- */
.hero-grid, .provocation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.hero-copy p, .provocation-copy p {
    text-transform: none;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    margin-bottom: 1.5rem;
}

/* --- Images --- */
.brutalist-img {
    width: 100%;
    height: auto;
    filter: grayscale(100%) contrast(1.2);
    border: 3px solid var(--text);
    display: block;
}

.caption {
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 0.5rem;
    border-bottom: 1px solid var(--text);
    padding-bottom: 5px;
}

/* --- Sections --- */
.provocation {
    border-top: 5px solid var(--text);
    border-bottom: 5px solid var(--text);
    padding: clamp(3rem, 6vw, 6rem) 0;
}

.provocation-copy h3 { 
    font-family: var(--font-head);
    font-weight: 900;
    margin: 0 0 1.5rem 0;
    font-size: clamp(1.8rem, 4vw, 2.5rem); 
    background-color: var(--text); 
    color: var(--bg); 
    display: inline-block; 
    padding: 5px 15px; 
}

.diagnostic-title { 
    font-size: clamp(2.5rem, 6vw, 5rem); 
    border-bottom: 10px solid var(--neon); 
    margin-bottom: clamp(2rem, 4vw, 3rem); 
}

.diagnostic-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.diagnostic-item {
    border: 3px solid var(--text);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background-color: #fff;
    transition: background-color 0.2s;
}

.diagnostic-item:hover { background-color: var(--neon); }
.diagnostic-item h3 { font-family: var(--font-head); font-weight: 900; margin: 0 0 1rem 0; font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
.diagnostic-item p { text-transform: none; font-size: 1rem; margin: 0; }

.white-bg { background-color: #ffffff; }
.quote-text { text-transform: none; font-style: italic; margin: 0; }
.quote-author { font-weight: bold; margin-top: 1rem; margin-bottom: 0; }

/* --- Split Proof Section --- */
.proof-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    border: 3px solid var(--text);
    background-color: #ffffff;
    overflow: hidden;
}

.proof-image-side {
    line-height: 0;
}

.proof-image-side .brutalist-img {
    border: none;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.proof-text-side {
    padding: clamp(2rem, 4vw, 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
    border-left: 3px solid var(--text);
}

.proof-label {
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--text);
    opacity: 0.6;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.macro-text {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.1;
    color: var(--text);
    margin: 0 0 1.5rem 0;
    letter-spacing: -1px;
}

.macro-subcopy {
    font-size: 1.05rem;
    color: var(--text);
    text-transform: none;
    margin: 0;
}

/* --- Loss Aversion --- */
.loss-aversion-content {
    max-width: 800px; 
    margin: 0 auto; 
    text-align: center;
}
.loss-title {
    font-family: var(--font-head); 
    font-size: clamp(2rem, 4vw, 3rem); 
    margin: 0 0 1.5rem 0;
}
.loss-p {
    font-size: 1.1rem; 
    text-transform: none; 
    text-align: left; 
    margin: 0 0 1.5rem 0;
}

/* --- CTA & Brutalist Intake Form Section --- */
.cta-section {
    text-align: center;
    padding: clamp(4rem, 8vw, 8rem) 1rem;
    background-color: var(--text);
    color: var(--bg);
}

.cta-section h2 { 
    font-size: clamp(2.2rem, 5vw, 4rem); 
    color: var(--neon); 
    margin: 0 auto 1.5rem auto;
    max-width: 90%;
    line-height: 1.1;
}

.cta-paragraph { 
    font-size: clamp(1.1rem, 2vw, 1.3rem); 
    max-width: 700px; 
    margin: 0 auto 3rem auto; 
    text-transform: none;
}

.brutalist-form {
    max-width: 600px;
    margin: 0 auto 4rem auto;
    text-align: left;
    background: #111111;
    border: 3px solid var(--neon);
    padding: clamp(1.5rem, 4vw, 3rem);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--bg);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg);
    color: var(--text);
    border: 2px solid var(--bg);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 0;
    outline: none;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--neon);
    background: #ffffff;
}

.form-group select {
    text-transform: uppercase;
}

.btn-brutalist-submit {
    width: 100%;
    background-color: var(--neon);
    color: var(--text);
    font-family: var(--font-head);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 900;
    padding: 1.2rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s;
    letter-spacing: -0.5px;
}

.btn-brutalist-submit:hover {
    background-color: var(--bg);
    color: var(--text);
}

.cta-details-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.cta-details-text {
    font-family: var(--font-head);
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: var(--neon); 
    margin: 0;
    line-height: 1.5;
}

.cta-subtext {
    font-size: 0.9rem; 
    margin-top: 1rem; 
    opacity: 0.7;
}

footer {
    padding: 2rem 0;
    border-top: 3px solid var(--text);
    font-size: 0.9rem;
    text-align: center;
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
    .hero-grid, .provocation-grid, .diagnostic-list, .proof-split { 
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    
    .hero-grid .hero-copy { order: 2; }
    .hero-grid .hero-image-wrapper { order: 1; }
    .provocation-grid .provocation-copy { order: 2; }
    .provocation-grid .provocation-image-wrapper { order: 1; }

    .proof-split { gap: 0; }
    .proof-text-side {
        padding: 2rem 1.5rem;
        border-left: none;
        border-top: 3px solid var(--text);
    }
    .proof-image-side .brutalist-img {
        min-height: 300px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .cta-section h2 { font-size: 2.5rem; }
    .cta-paragraph { font-size: 1.1rem; }
    .cta-details-text { font-size: 0.9rem; }
}