:root {
    --bg-dark: #050505;
    --text-white: #ffffff;
    --text-muted: #999999;
    --accent-color: #FF6B35; /* Athletic Orange */
    --accent-red: #E63946; /* High-Conversion Red */
    --accent-hover: #e65a2b;
    --grid-color: rgba(255, 255, 255, 0.03);
    --glass-bg: rgba(20, 20, 20, 0.8);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000; /* Solid black for seamless flow */
    color: var(--text-white);
    line-height: 1.6;
    perspective: 2000px;
}

/* Seamless Background (No Cuts) */
section, 
.case-study-section-premium, 
.elite-evidence-section, 
.site-footer-premium {
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Mouse Reactor (Glow) */
.mouse-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, hsla(var(--mouse-hue, 355), 85%, 55%, 0.12) 0%, hsla(var(--mouse-hue-complement, 35), 85%, 45%, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -5; /* Behind content */
    transform: translate(-50%, -50%);
    will-change: transform;
    filter: blur(60px);
    transition: background 0.4s ease; /* Butter-smooth gradient color morph */
}

/* Premium Onboarding Validation Errors */
.error-message {
    display: block;
    color: #e63946; /* Vibrant red */
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 8px;
    margin-left: 5px;
    animation: errorFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes errorFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Subtle Unified Grid */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -10;
    pointer-events: none;
    opacity: 0.5;
}

.ornament {
    position: absolute;
    pointer-events: none;
    z-index: -1;
    filter: blur(100px);
    opacity: 0.2;
    will-change: transform;
}

.circle-orange { width: 500px; height: 500px; background: var(--accent-color); border-radius: 50%; }
.circle-blue { width: 600px; height: 600px; background: #356bff; border-radius: 50%; }

/* Typography */
h1, h2 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.15;
}

h3 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-title { font-size: 3.5rem; margin-bottom: 60px; }
.massive-heading { font-size: clamp(3rem, 8vw, 5.5rem) !important; margin-bottom: 80px; }

.accent-text { color: var(--accent-color); font-weight: inherit; font-style: italic; }
.massive-red { color: var(--accent-red); font-weight: 900; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 1024px) {
    .container { padding: 0 80px; }
}

/* Global Typography Additions */
.line-small {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    text-transform: none !important;
}

.line-large {
    font-family: 'Playfair Display', serif !important;
    font-weight: 900 !important;
    letter-spacing: -0.01em !important;
}

/* Hero / Hook */
.hero-section { padding: 40px 0 20px; min-height: 100vh; display: flex; align-items: center; justify-content: center; }
/* VSL & Hook: Mobile Default */
.hero-content-centered {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.hook-subheadline {
    color: var(--accent-red);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 1rem;
    text-align: center;
}

.main-headline { 
    font-size: clamp(2rem, 8vw, 3rem); 
    margin-bottom: 10px; /* High-density mobile spacing */
    letter-spacing: inherit;
    line-height: inherit;
}

/* Visibility Utilities (Safe Defaults) */
.mobile-only { display: block !important; }
.desktop-only { display: block !important; }

@media (min-width: 769px) {
    .mobile-only { display: none !important; }
}

@media (max-width: 768px) {
    .desktop-only { display: none !important; }
}

.vsl-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(230, 57, 70, 0.3), 0 0 150px rgba(230, 57, 70, 0.15);
    border: 1px solid rgba(230, 57, 70, 0.3);
    z-index: 50;
    pointer-events: auto;
}

.accent-orange {
    color: var(--accent-color) !important;
}

.vsl-wrapper iframe, .vsl-wrapper video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 51;
    pointer-events: auto;
}

.vsl-bullets-aligned {
    max-width: 100%;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    padding: 25px 20px; /* Tightened for mobile */
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.vsl-bullets-aligned h3 { font-size: 1.2rem; margin-bottom: 25px; font-family: 'Inter', sans-serif; font-weight: 700; text-align: center; }
.vsl-bullets-aligned ul { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.vsl-bullets-aligned li { font-size: 1.05rem; color: var(--text-muted); display: grid; grid-template-columns: 24px 1fr; gap: 15px; align-items: start; line-height: 1.4; }
.vsl-bullets-aligned i { color: var(--accent-red); font-size: 1.2rem; }

.vsl-container-large { width: 100%; max-width: 900px; margin: 0 auto 30px; }

.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: var(--accent-red);
    color: white;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: 0.4s;
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.3);
}

.cta-pill:hover { transform: translateY(-5px); box-shadow: 0 30px 60px rgba(230, 57, 70, 0.4); }

.hero-cta-centered {
    margin-top: 10px;
}

/* Problem & Solution */
section { padding: 120px 0; }
.problem-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.problem-box { padding: 50px; border-radius: 40px; background: rgba(230, 57, 70, 0.05); border: 1px solid rgba(230, 57, 70, 0.1); }
.solution-box { padding: 50px; border-radius: 40px; background: rgba(255, 107, 53, 0.05); border: 1px solid rgba(255, 107, 53, 0.1); }
.body-text { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 20px; }
.body-text.highlight { color: white; font-weight: 700; font-size: 1.3rem; }

/* About Section */
.about-grid-aligned { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
    margin-bottom: 100px;
}

.about-image-small {
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transform-style: preserve-3d;
    max-width: 650px;
}

.about-image-small img {
    width: 100%;
    display: block;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.authority-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.authority-card-refined {
    display: flex;
    align-items: center;
    gap: 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 25px 35px;
    border-radius: 30px;
    transition: 0.4s;
    max-width: 550px;
}

.authority-card-refined:hover {
    border-color: var(--accent-color);
    transform: translateX(5px);
    background: rgba(255,255,255,0.03);
}

.authority-card-refined i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.auth-text h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.auth-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

/* Benefits Full Width */
.benefits-block {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid var(--glass-border);
}

.benefit-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    list-style: none;
    margin-top: 50px;
}

.benefit-list-grid li {
    font-size: 1.05rem;
    color: var(--text-muted);
    padding-top: 20px;
    border-top: 2px solid var(--accent-color);
}

.social-proof {
    margin-top: 60px;
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border-radius: 30px;
}

.stars { font-size: 1.5rem; margin-bottom: 10px; }

.my-transformation-wrap {
    margin-top: 100px;
}

.transformation-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif !important;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.transformations-row.centered-flex { 
    display: flex; 
    justify-content: center; 
    gap: 40px; 
    margin-top: 50px; 
}

.transformation-card {
    flex: 0 1 400px;
}

.transformation-card img { 
    width: 100%; 
    border-radius: 30px; 
    border: 1px solid var(--glass-border); 
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1); 
    object-fit: cover; 
    aspect-ratio: 4/5; 
}

.transformation-card:hover img { 
    transform: scale(1.03); 
    border-color: var(--accent-red);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .transformations-row.centered-flex {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .transformation-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Offer / Value Stack */
.value-stack-box { max-width: 750px; margin: 50px auto; background: var(--glass-bg); border: 2px solid var(--accent-color); padding: 50px; border-radius: 40px; position: relative; }
.value-stack-box h3 { font-size: 1.8rem; margin-bottom: 30px; text-align: center; }
.value-item { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid var(--glass-border); font-size: 1.1rem; }
.price-val { color: var(--accent-color); }
.value-total { margin-top: 40px; text-align: center; }
.old-price { text-decoration: line-through; color: var(--text-muted); font-size: 1.5rem; display: block; margin-bottom: 10px; }
.free-text { font-size: 2rem; font-weight: 800; }

/* Scarcity & Quiz */
.assessment-section { padding: 120px 0; }
.scarcity-block { text-align: center; margin-bottom: 50px; }
.scarcity-text { color: var(--accent-red); font-weight: 800; font-size: 1.3rem; margin-bottom: 30px; }
.guarantee-badge { display: inline-flex; align-items: center; gap: 15px; background: rgba(255,255,255,0.03); padding: 15px 30px; border-radius: 100px; border: 1px solid var(--glass-border); }
.guarantee-icon { width: 40px; }

.quiz-container { max-width: 750px; margin: 0 auto; background: white; color: black; padding: 50px; border-radius: 40px; box-shadow: 0 40px 100px rgba(0,0,0,0.5); }
.quiz-step h3 { font-size: 1.6rem; margin-bottom: 25px; font-family: 'Inter', sans-serif; font-weight: 800; }
.quiz-options { display: flex; flex-direction: column; gap: 15px; margin-bottom: 40px; }
.quiz-option { cursor: pointer; }
.quiz-option input { display: none; }
.option-box { display: block; padding: 20px; border: 2px solid #eee; border-radius: 15px; font-weight: 600; transition: 0.3s; }
.quiz-option input:checked + .option-box { border-color: var(--accent-red); background: rgba(230, 57, 70, 0.05); }

.quiz-form-final { display: flex; flex-direction: column; gap: 15px; }
.quiz-form-final input { padding: 20px; border-radius: 15px; border: 2px solid #eee; font-size: 1.1rem; }
.cta-red-button { background: var(--accent-red); color: white; border: none; padding: 22px; border-radius: 15px; font-size: 1.2rem; font-weight: 900; cursor: pointer; transition: 0.3s; width: 100%; margin-top: 20px; }
.cta-red-button:hover { transform: scale(1.02); filter: brightness(1.1); }

/* Elite Application Form */
.application-section {
    padding: 100px 0;
    position: relative;
}

.final-cta-centered {
    margin-top: 50px;
    text-align: center;
}

.glow-pulse {
    animation: glowBreath 3s ease-in-out infinite;
    will-change: box-shadow, transform;
    transform: translateZ(0);
}

@keyframes glowBreath {
    0% { box-shadow: 0 0 20px rgba(230, 57, 70, 0.4); transform: scale(1); }
    50% { box-shadow: 0 0 40px rgba(230, 57, 70, 0.6); transform: scale(1.02); }
    100% { box-shadow: 0 0 20px rgba(230, 57, 70, 0.4); transform: scale(1); }
}

/* Elite Application Styles */
.application-section-hero {
    margin-top: 30px;
    padding: 10px 0;
}

/* Elite Application: Mobile Default */
.app-container-premium {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 40px auto;
    background: #111; /* Solid dark background like screenshot */
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.form-title {
    color: var(--accent-red);
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif !important;
    letter-spacing: -0.02em;
}

.app-header p {
    color: #999;
    font-size: 1rem;
    margin-bottom: 40px;
}

.form-step {
    display: none;
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.input-grid, .radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: #999; /* Muted like screenshot */
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    padding: 18px 25px;
    background: #1a1a1a; /* Darker like screenshot */
    border: 1px solid #333;
    border-radius: 20px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
}

.input-group input::placeholder {
    color: #555;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.input-group {
    margin-bottom: 40px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    padding: 20px 25px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    transition: 0.4s;
}

.input-group textarea {
    height: 150px;
    resize: none;
}

.input-group input:focus, 
.input-group select:focus, 
.input-group textarea:focus {
    border-color: var(--accent-red);
    background: rgba(255,255,255,0.05);
    outline: none;
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.2);
}

.checkbox-group {
    margin-bottom: 50px;
}

.custom-check {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-white);
}

.custom-check input { display: none; }
.checkmark {
    width: 28px;
    height: 28px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    position: relative;
    transition: 0.3s;
}

.custom-check input:checked + .checkmark {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.custom-check input:checked + .checkmark::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white;
    font-size: 14px;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.radio-option input { display: none; }
.radio-box {
    display: block;
    padding: 25px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    text-align: center;
    font-weight: 800;
    transition: 0.4s;
    cursor: pointer;
}

.radio-option input:checked + .radio-box {
    border-color: var(--accent-red);
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent-red);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.2);
}

.btn-row {
    display: flex;
    gap: 20px;
}

.next-btn, .submit-btn {
    flex: 2;
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 22px;
    border-radius: 18px;
    font-size: 1.1rem;
    font-weight: 900;
    cursor: pointer;
    transition: 0.4s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prev-btn {
    flex: 1;
    background: rgba(255,255,255,0.05);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 22px;
    border-radius: 18px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: 0.4s;
}

.form-footer p {
    color: #666;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-top: 40px;
    text-transform: uppercase;
    font-weight: 600;
}

.next-btn:hover, .submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.4);
}

.prev-btn:hover {
    background: rgba(255,255,255,0.1);
}

/* Reality Check Section */
.reality-check-premium {
    padding: 100px 0;
    background: #050505;
}

.reality-check-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(145deg, #0a0a0a, #000);
    padding: 80px 60px;
    border-radius: 40px;
    border: 1px solid rgba(230, 57, 70, 0.3);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    transform: translateZ(0);
}

.reality-check-box h2 {
    font-size: 3.5rem;
    color: var(--accent-red);
    font-family: 'Playfair Display', serif !important;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.reality-check-box p {
    font-size: 1.8rem;
    color: white;
    line-height: 1.4;
    font-weight: 400;
}

.reality-check-box span {
    display: block;
    margin-top: 25px;
    color: var(--accent-red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .reality-check-box h2 { font-size: 2.2rem; }
    .reality-check-box p { font-size: 1.3rem; }
    .reality-check-box { padding: 40px 25px; }
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.reel-card {
    background: #000;
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    position: relative;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}

/* BULLETPROOF NATIVE MEDIA SYSTEM */
.reel-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-card img,
.case-study-visual img {
    width: 100%;
    height: auto !important; /* Preserves natural ratio */
    display: block;
    object-fit: contain;
}

/* Fix Case Study Visual container for natural ratio */
.case-study-visual {
    height: auto !important;
    aspect-ratio: auto !important;
}

/* Remove all blue ornaments to stop flickering */
.circle-blue, .ornament.circle-blue {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Featured Post: 9:16 Ratio & Solo Row */
.reels-grid .featured-9-16 {
    grid-column: 1 / -1 !important;
    display: block !important;
    aspect-ratio: 9 / 16 !important;
    max-width: 400px; /* Thinner for 9:16 */
    width: 100%;
    margin: 0 auto 60px !important;
    border-color: var(--accent-red);
    box-shadow: 0 40px 100px rgba(230, 57, 70, 0.3);
}

@media (max-width: 768px) {
    .featured-9-16 {
        grid-column: span 1;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

.reel-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
}

@media (max-width: 1024px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .reels-grid {
        display: flex;
        overflow-x: auto;
        padding: 20px 20px 60px;
        scroll-snap-type: x mandatory;
        gap: 25px;
        margin-left: 0;
        margin-right: 0;
    }
    .reel-card {
        flex: 0 0 320px;
        scroll-snap-align: center;
    }
}

/* Footer Style: Quantum Growth Inspired */
.site-footer-premium {
    padding: 150px 0 0;
    border-top: 1px solid var(--glass-border);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
    margin-bottom: 120px;
}

.footer-logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.04em;
}

.footer-bio {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 400px;
    margin-bottom: 40px;
}

.copyright-muted {
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

.footer-link-cols {
    display: flex;
    gap: 100px;
}

.link-col h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.link-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 15px;
    transition: 0.3s;
}

.link-col a:hover { color: var(--accent-color); }

.footer-massive-outline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(4rem, 15vw, 15rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.12); /* Brighter stroke */
    line-height: 0.8;
    text-align: center;
    pointer-events: none;
    user-select: none;
    padding-bottom: 40px;
    opacity: 0.8;
    transition: 0.5s;
}

.site-footer-premium:hover .footer-massive-outline {
    -webkit-text-stroke: 1.5px rgba(255,107,53,0.2); /* Subtle glow on hover */
}

/* Floating Elements */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25D366;
    color: white;
    padding: 12px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    font-size: 0.9rem;
}

.sticky-cta-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(0deg, rgba(5,5,5,0.95) 0%, transparent 100%);
    display: flex;
    justify-content: center;
    z-index: 999;
    pointer-events: none;
}

.fab-btn {
    pointer-events: auto;
    background: var(--accent-red);
    color: white;
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 15px 40px rgba(230,57,70,0.4);
}

/* --- PHONE FIRST ARCHITECTURE (DEFAULT) --- */

/* Global Mobile Spacing */
section { padding: 60px 0; }
.hero-section { padding-top: 80px; }
.main-headline { font-size: 2rem; padding: 0 10px; }
.hook-subheadline { font-size: 0.8rem; letter-spacing: 2px; }

/* Case Study: Mobile Stack */
.case-study-section-premium {
    padding: 80px 0;
    background: #000;
}

.case-study-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
}

.case-study-visual {
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    position: relative; /* Anchor for award-bubble */
}

.case-intro { font-size: 1.2rem; line-height: 1.5; }
.case-story { font-size: 1rem; color: var(--text-muted); }

.pr-grid-container {
    padding: 30px 20px;
    border-radius: 20px;
}

.pr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pr-item span { font-size: 1.5rem; }

/* Evidence Gallery: Horizontal Swipe for Phone */
.reels-grid {
    display: flex;
    overflow-x: auto;
    padding: 20px 20px 60px;
    scroll-snap-type: x mandatory;
    gap: 20px;
    margin-left: -20px;
    margin-right: -20px;
    -webkit-overflow-scrolling: touch;
}

.reels-grid::-webkit-scrollbar { display: none; }

.reel-card {
    flex: 0 0 300px;
    scroll-snap-align: center;
    border-radius: 24px;
}

/* Transformation: Mobile Stack */
.transformations-row {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
}

.transformation-card { max-width: 100%; }

/* Footer: Mobile Center */
.footer-main-grid { grid-template-columns: 1fr; text-align: center; gap: 50px; }
.footer-bio { margin: 0 auto 30px; }
.footer-link-cols { justify-content: center; gap: 40px; }
.footer-massive-outline { font-size: 4rem; -webkit-text-stroke: 1px rgba(255,255,255,0.1); }

/* --- DESKTOP ENHANCEMENTS (1024px+) --- */
@media (min-width: 1024px) {
    section { padding: 120px 0; }
    .hero-section { padding-top: 120px; }
    .main-headline { font-size: 3.5rem; }
    
    .case-study-container {
        flex-direction: row;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 80px;
        padding: 0 40px;
        align-items: start; /* Align with top of photo */
    }

    .case-milestones {
        margin-top: 0; /* Align with top of photo */
    }
    
    .case-study-visual { border-radius: 40px; }
    .case-intro { font-size: 1.5rem; }
    .pr-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    
    .hero-content-centered { max-width: 1100px; padding: 0; }
    .main-headline { font-size: 2.8rem; max-width: 1200px; margin: 0 auto 10px; }
    .vsl-wrapper { max-width: 900px; border-radius: 40px; margin: 0 auto 50px; }
    .vsl-bullets-aligned { max-width: 600px; margin: 40px auto; padding: 40px 50px; }

    .mobile-only { display: none !important; }
    .desktop-only { display: block !important; }

    .app-container-premium { max-width: 800px; padding: 60px 50px; }
    .app-header h2 { font-size: 3.5rem; }
    .input-grid, .radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

    .reels-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        overflow: visible;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }
    
    .reel-card {
        flex: none;
        aspect-ratio: 9 / 16;
    }
    
    .reel-card.photo-card {
        aspect-ratio: auto !important;
        align-self: start; 
        height: min-content;
    }
    
    .problem-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .input-grid, .radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

    .transformations-row { 
        flex-direction: row !important; 
        justify-content: center;
        gap: 40px;
    }
    
    .transformation-card { flex: 0 1 450px; }
    
    .footer-main-grid { grid-template-columns: 1fr 1fr; text-align: left; }
    .footer-bio { margin: 0; }
    .footer-massive-outline { font-size: 12rem; }
}

/* --- CASE STUDY ENHANCEMENTS --- */
.award-bubble {
    background: var(--accent-red);
    color: white;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 0 30px rgba(230,57,70,0.6);
    animation: bubbleGlow 3s infinite ease-in-out;
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 10;
}

@keyframes bubbleGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(230,57,70,0.4); transform: scale(1); }
    50% { box-shadow: 0 0 40px rgba(230,57,70,0.8); transform: scale(1.05); }
}

.case-milestones {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.milestone-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.milestone-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(230,57,70,0.4);
    transform: translateX(10px);
}

.milestone-card i {
    color: var(--accent-red);
    font-size: 1.2rem;
    margin-top: 3px;
}

.milestone-card h4 {
    color: white;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.milestone-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.pr-item {
    background: rgba(255,255,255,0.03) !important;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.pr-item span {
    color: var(--accent-red);
    font-weight: 900;
}

/* Authority Stack Grid Overrides */
@media (min-width: 1024px) {
    .authority-vertical {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .main-headline {
        font-size: 2.2rem !important;
        line-height: 0.85 !important;
        letter-spacing: -0.08em !important;
        margin-bottom: 5px !important;
    }
    .vsl-container-large { margin-bottom: 20px; }
    .vsl-wrapper { 
        width: calc(100% + 40px); 
        margin-left: -20px; 
        border-radius: 0; 
        border-left: none; 
        border-right: none; 
    }
}

/* --- CARD REFACTORING (v1) --- */
@media (max-width: 1023px) {
    .problem-container, 
    .about-grid-aligned { 
        grid-template-columns: 1fr; 
        gap: 30px; 
    }
    
    .problem-box, 
    .solution-box, 
    .about-content-full { 
        padding: 30px 20px; 
        text-align: center; 
    }
    
    .about-image-small {
        margin: 0 auto 30px;
        width: 100%;
    }
    
    .authority-vertical {
        align-items: center;
    }
    
    .authority-card-refined {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

/* --- RESULTS GALLERY REFACTORING (v1) --- */
@media (max-width: 1023px) {
    .reels-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 20px 0 !important;
        overflow-x: visible !important;
        margin: 0 !important;
        scroll-snap-type: none !important;
    }
    
    .reel-card {
        flex: none !important;
        width: 100% !important;
        scroll-snap-align: none !important;
    }
    
    .transformations-row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 !important;
    }
}

/* --- FORM CONDENSING (v1) --- */
@media (max-width: 768px) {
    .app-container-premium {
        padding: 25px 15px !important;
        border-radius: 30px !important;
    }
    
    .app-header h2 {
        font-size: 1.8rem !important;
        margin-bottom: 8px !important;
    }
    
    .app-header p {
        margin-bottom: 20px !important;
        font-size: 0.85rem !important;
    }
    
    .input-grid, .radio-group {
        gap: 8px !important;
    }
    
    .input-group label {
        font-size: 0.65rem !important;
        margin-bottom: 6px !important;
    }
    
    .input-group input, 
    .input-group select, 
    .input-group textarea {
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
    }
    
    .checkbox-group {
        margin-bottom: 15px !important;
    }
    
    .check-label {
        font-size: 0.85rem !important;
    }
    
    .input-group {
        margin-bottom: 15px !important;
    }
    
    .form-step h3 {
        font-size: 1.1rem !important;
        margin-bottom: 20px !important;
    }
    
    .btn-pill {
        padding: 15px 30px !important;
        font-size: 1rem !important;
    }
}

/* --- GLOBAL MOBILE TEXT POLISH --- */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem !important;
        margin-bottom: 40px !important;
    }
    
    .massive-heading {
        font-size: 2.5rem !important;
        margin-bottom: 40px !important;
    }
    
    section {
        padding: 60px 0 !important;
    }
}

/* --- BENEFIT LIST REFACTORING (v1) --- */
@media (max-width: 1023px) {
    .benefit-list-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }
    
    .benefit-list-grid li {
        border-top: 2px solid var(--accent-color) !important;
        padding-top: 25px !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
}

/* --- HERO POSITIONING POLISH (v1) --- */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 10px !important;
        align-items: flex-start !important;
    }
    
    .hook-subheadline {
        margin-top: 10px !important;
        margin-bottom: 8px !important;
    }
}

/* --- VSL POSITIONING POLISH (v1) --- */
@media (max-width: 768px) {
    .vsl-container-large {
        margin-top: 20px !important;
    }
}

/* --- ONE-SCREEN OPTIMIZATION (REMOVED RESTRICTIONS) --- */
@media (min-width: 1024px) {
    /* Parth Section */
    .about-section {
        padding: 100px 0 !important;
        display: block !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    .massive-heading {
        font-size: 3.5rem !important;
        margin-bottom: 60px !important;
    }
    
    .about-grid-aligned {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 60px;
        align-items: start;
    }
    
    .about-image-small {
        position: sticky;
        top: 100px;
        max-height: 80vh !important;
    }
    
    .about-image-small img {
        height: auto !important;
        max-height: 80vh;
        object-fit: cover;
        border-radius: 40px;
    }

    /* Chris Section */
    .case-study-section-premium {
        padding: 100px 0 !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    .case-study-container {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 60px;
        align-items: start;
    }
    
    .case-study-visual {
        position: sticky;
        top: 100px;
        max-height: 80vh !important;
    }
    
    .case-study-visual img {
        height: auto !important;
        max-height: 80vh;
        object-fit: cover;
        border-radius: 40px;
    }
    
    .milestone-card {
        padding: 15px 20px !important;
        margin-bottom: 12px !important;
    }
    
    .milestone-card h4 {
        font-size: 1rem !important;
    }
    
    .milestone-card p {
        font-size: 0.85rem !important;
    }
    
    .pr-grid {
        gap: 12px !important;
    }
    
    .pr-item {
        padding: 15px !important;
    }
    
    .pr-item span {
        font-size: 1.2rem !important;
    }
    
    .pr-item p {
        font-size: 0.7rem !important;
    }
}
/* Urgency Label */
.urgency-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-red);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
    z-index: 10;
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .urgency-label {
        top: 15px;
        right: 15px;
        font-size: 0.6rem;
        padding: 4px 10px;
    }
}
/* --- MOBILE FORM OPTIMIZATION (v2) --- */
@media (max-width: 768px) {
    .app-container-premium {
        padding: 30px 20px !important;
        margin: 0 auto !important;
        max-width: 90%;
    }
    
    .grid-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    
    .form-title {
        font-size: 2rem !important;
    }
    
    .input-group label {
        font-size: 0.7rem !important;
        letter-spacing: 0.1em !important;
    }
    
    .input-group input, 
    .input-group select, 
    .input-group textarea {
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
    }
    
    .next-btn, .submit-btn, .prev-btn {
        padding: 15px 25px !important;
        font-size: 0.8rem !important;
        width: 100%;
        justify-content: center;
    }
    
    .btn-row {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .urgency-label {
        font-size: 0.6rem !important;
        padding: 4px 10px !important;
        top: -10px !important;
        right: 10px !important;
    }

    /* --- TITLE DECLUTTERING (v3) --- */
    .hook-subheadline {
        font-size: 0.75rem !important;
        letter-spacing: 0.15em !important;
        margin-bottom: 12px !important;
        line-height: 1.4 !important;
    }

    .main-headline {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        letter-spacing: -0.04em !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        margin-bottom: 40px !important; /* Gap between Heading and Video */
    }

    .vsl-container-large {
        margin-bottom: 60px !important; /* Gap between Video and Form */
    }

    .main-headline span {
        display: block;
    }

    .line-small {
        font-family: 'Playfair Display', serif !important;
        font-style: italic !important;
        font-weight: 400 !important;
        text-transform: none !important;
        font-size: 1.2rem !important;
        color: var(--text-white);
        opacity: 0.9;
    }
    
    .line-small .accent-text {
        color: var(--accent-color) !important;
        font-style: italic;
    }

    .massive-red {
        color: var(--accent-red) !important;
    }

    .line-large {
        font-family: 'Playfair Display', serif !important;
        font-weight: 900 !important;
        letter-spacing: -0.01em !important;
        font-size: 2.4rem !important;
        line-height: 1.1 !important;
    }

    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }
}

/* Desktop Visibility Defaults */
@media (min-width: 769px) {
    .hero-section {
        padding-top: 40px !important; /* Minimal gap from roof */
    }

    .desktop-only { display: block !important; }
    .mobile-only { display: none !important; }
    
    .main-headline {
        display: block !important;
        font-size: 3.8rem !important;
        line-height: 1 !important;
        margin-bottom: 60px !important; /* Gap: Text to Video */
    }
    
    .vsl-container-large {
        margin-bottom: 80px !important; /* Gap: Video to Form */
    }

    .line-small, .line-large {
        display: inline !important;
        font-size: inherit !important;
    }
}

@keyframes pulseUnmute {
    0% { transform: scale(1); box-shadow: 0 10px 40px rgba(230,57,70,0.4); }
    50% { transform: scale(1.05); box-shadow: 0 10px 50px rgba(230,57,70,0.7); }
    100% { transform: scale(1); box-shadow: 0 10px 40px rgba(230,57,70,0.4); }
}

/* Sticky Apply Bar (Mobile CTA) */
.sticky-apply-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9999;
    display: none; /* Hidden by default on desktop */
    justify-content: center;
    align-items: center;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.sticky-btn {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(135deg, var(--accent-red) 0%, #b3001e 100%);
    color: #fff !important;
    text-align: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230, 57, 70, 0.6);
}

.sticky-btn:hover i {
    transform: translateX(4px);
}

/* Only show on mobile viewports */
@media (max-width: 768px) {
    .sticky-apply-bar {
        display: flex;
    }
    
    /* Avoid footer overlapping with the sticky bar on mobile */
    body {
        padding-bottom: 80px;
    }
}
