@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --bg-deep: #0A0A0B;
    --bg-soft: #141416;
    --bg-elevated: #1C1C1E;
    --gold: #D4AF37;
    --gold-bright: #F5E0A3;
    --gold-dim: rgba(212, 175, 55, 0.2);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-dim: rgba(255, 255, 255, 0.4);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --container-width: 1100px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
    opacity: 0.03;
    pointer-events: none;
    z-index: 999;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Sections */
.section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    line-height: 1.1;
}

.section-title span.highlight {
    color: var(--gold);
    font-style: italic;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0;
}

/* This will be applied via inline style for the specific image */
.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 11, 0.4) 0%, rgba(10, 10, 11, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero p.tagline {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
}

.hero p.lead {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px auto;
}

/* Video/VSL Container */
.vsl-container {
    margin: 40px auto;
    max-width: 320px; /* Portrait VSL */
    perspective: 1000px;
}

.vsl-frame {
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gold-dim);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 20px rgba(212, 175, 55, 0.1);
    position: relative;
}

/* Intro/Manifesto */
.manifesto {
    background-color: var(--bg-soft);
}

.manifesto-text {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-text strong {
    color: var(--text-primary);
}

/* The 5 Pillars Card Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pillar-card {
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    padding: 50px 40px;
    border-radius: 24px;
    transition: var(--transition);
    height: 100%;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.02);
}

.pillar-card .num {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 20px;
    display: block;
    opacity: 0.5;
}

.pillar-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: var(--font-serif);
}

.pillar-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* About Section */
.about {
    border-top: 1px solid var(--glass-border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(0.5);
}

.about-img::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 20px;
    z-index: -1;
}

.about-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

/* Comparison Section */
.comparison {
    background: var(--bg-soft);
}

.comparison-box {
    background: var(--bg-elevated);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    padding: 30px;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.comparison-table td {
    padding: 30px;
    border-top: 1px solid var(--glass-border);
}

.comparison-table .bad {
    color: var(--text-dim);
}

.comparison-table .good {
    color: var(--text-primary);
    font-weight: 600;
}

.comparison-table .impact {
    color: var(--gold);
    font-weight: 700;
}

/* Pricing Blocks */
.offer {
    border-top: 1px solid var(--glass-border);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    padding: 60px 40px;
    border-radius: 30px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(20, 20, 22, 1) 0%, rgba(212, 175, 55, 0.05) 100%);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: scale(1.07) translateY(-10px);
}

.pricing-card img {
    max-width: 250px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.price-main {
    font-size: 4rem;
    font-weight: 800;
    margin: 20px 0;
}

.price-main span {
    font-size: 1.5rem;
    font-weight: 400;
}

.benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.benefits li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-secondary);
}

.benefits li i {
    color: var(--gold);
}

.benefits li.dis {
    opacity: 0.3;
    text-decoration: line-through;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: #000;
}

.btn-primary:hover {
    background: var(--gold-bright);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

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

.btn-outline:hover {
    background: var(--gold-dim);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    animation: fadeInUp 1s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-img {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* FAQ */
.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.faq-q {
    background: var(--bg-elevated);
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.faq-trigger {
    padding: 25px 30px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-trigger i {
    transition: transform 0.3s;
}

.faq-a {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--text-secondary);
}

.faq-q.active .faq-a {
    padding-bottom: 25px;
    max-height: 500px;
}

.faq-q.active .faq-trigger i {
    transform: rotate(45deg);
}

/* VSL Specific Overlays (Keeping from original but updating style) */
.vsl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: pointer;
}

.play-circle {
    width: 80px;
    height: 80px;
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    background: var(--gold);
}

.vsl-overlay p {
    font-weight: 700;
    text-transform: uppercase;
}