:root {
    --color-bg: #000000;
    --color-primary: #9D4EDD;
    --color-primary-glow: rgba(157, 78, 221, 0.4);
    --color-surface: #101012;
    --color-surface-lighter: #161618;
    --color-border: #1c1c1e;
    --color-text-main: #FFFFFF;
    --color-text-muted: #8E8E93;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Navigation */
.nav {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: white;
}

.nav-ctas {
    display: flex;
    gap: 1rem;
}

.btn-nav-store {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: white;
    color: black;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-nav-store.outline {
    background: transparent;
    border: 1px solid var(--color-border);
    color: white;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 10;
}

.hero-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.hero-top-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary);
}

.hero-title {
    font-size: clamp(3.5rem, 12vw, 6.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.brand-serif {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--color-primary);
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--color-text-muted);
    margin-bottom: 4rem;
    font-weight: 400;
}

.hero-btn-group {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.btn-store-premium {
    transition: var(--transition);
}

.btn-store-premium img {
    height: 52px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.btn-store-premium:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

/* Floating Pills */
.floating-cards-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.f-pill {
    position: absolute;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    padding: 0.7rem 1.1rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: float 6s ease-in-out infinite;
    pointer-events: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.f-icon {
    font-size: 1.2rem;
    background: rgba(157, 78, 221, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.f-info small { font-size: 0.55rem; font-weight: 700; color: var(--color-primary); text-transform: uppercase; }
.f-info span { font-size: 0.85rem; font-weight: 600; }

.f-left-top { top: 20%; left: 10%; animation-delay: 0s; }
.f-left-bottom { bottom: 25%; left: 12%; animation-delay: 1.5s; }
.f-right-top { top: 20%; right: 10%; animation-delay: 0.7s; }
.f-right-bottom { bottom: 25%; right: 12%; animation-delay: 2.2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* App Preview Section */
.app-preview-section {
    padding: 10rem 0;
    background: #050505;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.serif-title-small {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.serif-title-small span {
    font-style: italic;
    font-weight: 400;
    color: var(--color-primary);
}

.preview-text p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.premium-list {
    list-style: none;
    margin-bottom: 3rem;
}

.premium-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--color-text-main);
}

.check {
    color: var(--color-primary);
    font-weight: 800;
}

.btn-hero-pill {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: black;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-hero-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* App Widget Styling */
.app-widget {
    background: #0D0D0F;
    border: 1px solid var(--color-border);
    border-radius: 32px;
    padding: 2.5rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.w-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.w-week {
    font-size: 0.7rem;
    font-weight: 800;
    background: rgba(157, 78, 221, 0.1);
    color: var(--color-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.widget-item {
    background: #161618;
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    transition: var(--transition);
}

.widget-item:hover {
    border-color: var(--color-primary);
    transform: translateX(10px);
}

.w-name {
    display: block;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.w-stats {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.w-badge, .w-tag {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--color-text-muted);
}

.widget-footer {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-top: 1.5rem;
    letter-spacing: 1px;
}

/* Modules Section */
.modules {
    padding: 8rem 0;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.module-card {
    background: rgba(20, 20, 22, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-border);
    padding: 1.5rem;
    border-radius: 20px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 340px;
}

.module-card:hover {
    border-color: rgba(157, 78, 221, 0.3);
    transform: translateY(-8px);
    background: rgba(26, 26, 28, 0.8);
}

.card-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.card-icon-wrapper.purple { background: rgba(157, 78, 221, 0.1); border: 1px solid rgba(157, 78, 221, 0.2); }
.card-icon-wrapper.blue { background: rgba(0, 122, 255, 0.1); border: 1px solid rgba(0, 122, 255, 0.2); }
.card-icon-wrapper.green { background: rgba(52, 199, 89, 0.1); border: 1px solid rgba(52, 199, 89, 0.2); }
.card-icon-wrapper.orange { background: rgba(255, 149, 0, 0.1); border: 1px solid rgba(255, 149, 0, 0.2); }
.card-icon-wrapper.gold { background: rgba(255, 215, 0, 0.1); border: 1px solid rgba(255, 215, 0, 0.2); }

.card-body h3 {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: white;
}

.card-body p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.card-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.card-footer .arrow {
    font-size: 1rem;
    transition: var(--transition);
}

.module-card:hover .card-footer .arrow {
    transform: translateX(5px);
    color: var(--color-primary);
}

.elite-card {
    border-color: rgba(157, 78, 221, 0.2);
}

/* Process Section */
.process {
    padding: 10rem 0;
    background: #000000;
}

.section-header-left {
    text-align: left;
    margin-bottom: 6rem;
}

.section-header-left p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
}

.timeline-container {
    position: relative;
    margin-top: 4rem;
}

.timeline-bar {
    position: absolute;
    top: 6px; /* Perfect center of 12px dot */
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.timeline-progress {
    width: 33%;
    height: 100%;
    background: var(--color-primary);
    box-shadow: 0 0 15px var(--color-primary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.step {
    position: relative;
    padding-top: 40px; /* Space for dot and marker */
}

.step-marker {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4); /* Brighter white */
    position: absolute;
    top: -25px;
    left: 0;
    z-index: 0;
    line-height: 1;
    letter-spacing: -0.02em;
}

.step-dot {
    width: 12px;
    height: 12px;
    background: var(--color-primary); /* All dots are now purple */
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    box-shadow: 0 0 10px var(--color-primary); /* Glow for everyone */
}

.step-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: white;
}

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

/* Mobile responsive for timeline */
@media (max-width: 992px) {
    .timeline-bar { display: none; }
    .process-steps { grid-template-columns: 1fr; gap: 4rem; }
    .step-marker { font-size: 4rem; }
    .step-dot { margin-bottom: 1.5rem; }
    .section-header-left { text-align: center; }
    .section-header-left p { margin: 0 auto; }
}

/* Testimonials */
.testimonials {
    padding: 10rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(20, 20, 22, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(157, 78, 221, 0.2);
}

.t-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.stars {
    color: #FFB800;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.t-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: white;
}

.t-badge.purple { background: #9D4EDD; }
.t-badge.blue { background: #007AFF; }
.t-badge.green { background: #34C759; }
.t-badge.orange { background: #FF9500; }
.t-badge.gold { background: #FFD700; color: black; }
.t-badge.red { background: #FF3B30; }

.t-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-main);
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.t-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.t-name {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.t-status {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .testimonial-grid { grid-template-columns: 1fr; }
}

/* CTA Banner */
.cta-banner { padding: 8rem 0; }
.cta-box { background: linear-gradient(90deg, #101012 0%, #1a1025 100%); padding: 5rem; border-radius: 40px; text-align: center; border: 1px solid var(--color-border); }
.cta-box h2 { font-size: 3rem; margin-bottom: 1.5rem; }
.cta-box p { color: var(--color-text-muted); font-size: 1.25rem; margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto; }

/* Footer */
.footer {
    padding: 8rem 0 0;
    background: #000000;
    border-top: 1px solid var(--color-border);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-brand p {
    color: var(--color-text-muted);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 320px;
    font-size: 0.9rem;
}

.footer-email {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-3px);
}

.footer-nav h4 {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: white;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 1rem;
}

.footer-nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: white;
}

.store-link {
    color: var(--color-primary) !important;
    font-weight: 600;
}

.footer-bottom {
    padding: 2.5rem 0;
    border-top: 1px solid var(--color-border);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    opacity: 0.6;
}

.footer-tags {
    display: flex;
    gap: 1rem;
}

.footer-tags span {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--color-text-muted);
    padding: 0.3rem 0.6rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PHASE 11: TOTAL MOBILE ELITE RECONSTRUCTION (ZERO SCROLL)
   ───────────────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    :root {
        --section-padding: 40px 0;
    }

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

    /* Fixed Header: Centered & Clean */
    .nav {
        height: 60px;
        background: #000;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links, .nav-ctas {
        display: none !important;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1rem !important;
        letter-spacing: 0.15em;
        white-space: nowrap;
    }

    /* Remove floating clutter on mobile */
    .floating-cards-container {
        display: none !important;
    }

    /* Hero: Bold & Impactful */
    .hero {
        padding: 100px 20px 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem !important;
        line-height: 0.9;
    }

    .hero-title .brand-serif {
        display: block;
        font-size: 3.2rem;
        color: var(--color-primary);
        font-family: 'Cormorant Garamond', serif !important;
        font-style: italic !important;
        text-transform: none !important;
        font-weight: 500 !important;
        margin-top: -5px;
    }

    /* Store Buttons: Full Images, No Extra Boxes */
    .hero-btn-group {
        flex-direction: column !important;
        gap: 10px;
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }

    .btn-store-premium {
        width: 100% !important;
        height: auto !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        display: block !important;
    }

    .btn-store-premium img {
        width: 100% !important;
        height: auto !important;
        display: block;
        filter: none !important;
        background: transparent !important;
    }

    /* Strict Vertical Stack for All Sections */
    .split-layout {
        flex-direction: column !important;
        gap: 30px !important;
        width: 100% !important;
        padding: 0 !important;
        text-align: center !important;
    }

    .preview-text {
        text-align: center !important;
        width: 100% !important;
        padding: 0 15px !important; /* Give it more room */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .preview-text h2 {
        font-size: 2.5rem !important;
        line-height: 1;
        width: 100%;
    }

    .preview-text p {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 1.1rem;
    }

    /* Full-Width Centered Premium List */
    .premium-list {
        list-style: none !important;
        padding: 0 !important;
        margin: 30px 0 !important;
        width: 100% !important;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .premium-list li {
        text-align: left !important;
        font-size: 1.1rem;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        width: 100% !important;
        padding: 0 10px;
    }

    .premium-list .check {
        color: var(--color-primary);
        font-weight: bold;
        flex-shrink: 0;
        margin-top: 2px;
    }

    /* Hide Daily Sculpt & Visuals on Mobile */
    .preview-visual, .app-widget, .routine-sidebar, .app-sidebar {
        display: none !important;
    }

    /* Transformation Button: Slim & Elite Pill */
    .btn-hero-pill {
        width: auto !important;
        padding: 10px 24px !important;
        font-size: 0.85rem !important;
        border-radius: 40px !important;
        margin: 20px auto 0 !important;
        display: inline-flex !important;
        background: #fff !important;
        color: #000 !important;
        text-transform: uppercase;
        font-weight: 800;
        letter-spacing: 0.05em;
        border: none !important;
        text-decoration: none !important;
    }

    /* Modules: One per line */
    .module-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .module-card {
        padding: 20px !important;
        text-align: center;
    }

    /* Process */
    .process-steps {
        grid-template-columns: 1fr !important;
        padding-left: 50px !important;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
}
