:root {
    --bg-dark: #050510;
    --bg-surface: #0f1020;
    --bg-surface-2: #1a1b2e;

    --primary: #c026d3;
    /* Vibrant Purple */
    --primary-glow: rgba(192, 38, 211, 0.5);

    --secondary: #f59e0b;
    /* Mystic Gold */
    --accent-red: #ef4444;
    /* Aggressive Red */

    --text-main: #ffffff;
    --text-muted: #a1a1aa;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Roboto Mono', monospace;

    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.eyebrow {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-main);
    letter-spacing: 0.05em;
}

.logo .highlight {
    color: var(--primary);
}

.cta-button.nav-btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    min-height: 90vh;
    /* Keeps the tall viewport feel */
    display: flex;
    align-items: center;
    padding-top: 100px;
    /* More space for nav */
    padding-bottom: 50px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 70% 40%, rgba(192, 38, 211, 0.15) 0%, transparent 60%),
        linear-gradient(to bottom, var(--bg-dark), transparent, var(--bg-dark));
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    /* Balanced layout */
    align-items: center;
    gap: 3rem;
}

.hero-text {
    text-align: left;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-image-container img {
    max-width: 110%;
    /* Slightly reduced size */
    width: auto;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(192, 38, 211, 0.3));
    animation: float 6s ease-in-out infinite;
}

/* Simulated Diamond Glow Pulse */
.hero-image-container::after {
    content: '';
    position: absolute;
    /* Approximate position of the diamond in the image center/hands */
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(192, 38, 211, 0.8) 0%, transparent 70%);
    opacity: 0.6;
    animation: pulse-glow 3s infinite alternate;
    pointer-events: none;
    mix-blend-mode: screen;
}

.eyebrow {
    display: block;
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}

h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(90deg, #fff, var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subheadline {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-glow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.9;
    }
}

/* --- BUTTONS --- */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s var(--ease-out);
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(192, 38, 211, 0.2);
    border: 1px solid var(--primary);
}

.cta-button.primary:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: 0 0 30px rgba(192, 38, 211, 0.4);
}

.cta-button.big {
    font-size: 1.4rem;
    padding: 1.5rem 3rem;
}

/* --- SECTIONS COMMON --- */
.section {
    padding: 100px 0;
}

.section.dark-bg {
    background: var(--bg-surface);
}

.section-header.center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
}

/* --- IDENTIFICATION --- */
.identification {
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-surface));
}

.content-grid {
    display: grid;
    gap: 4rem;
}

.text-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pain-points li {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.pain-points li:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.pain-points i {
    color: var(--accent-red);
    min-width: 24px;
    height: 24px;
}

.pain-points strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #fff;
}

.pain-points p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- TRUTH --- */
.truth {
    background-image:
        radial-gradient(circle at top right, rgba(45, 226, 230, 0.05), transparent 400px);
}

.truth-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.card.glass h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--secondary);
}

.card.glass p {
    color: var(--text-muted);
}

.truth-bomb {
    text-align: center;
    margin-top: 4rem;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
}

/* --- WHAT IS --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(200, 170, 110, 0.2);
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-radius: 50px;
}

.list-check ul {
    margin-top: 2rem;
}

.list-check li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    padding: 1rem;
    background: var(--bg-dark);
    border-radius: 6px;
    border-left: 3px solid transparent;
}

.list-check li.negative {
    border-left-color: var(--accent-red);
}

.list-check li.negative i {
    color: var(--accent-red);
}

.list-check li.positive {
    border-left-color: var(--primary);
}

.list-check li.positive i {
    color: var(--primary);
}

/* --- METHOD --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.step-item {
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--bg-surface-2);
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.step-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.step-item h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 1.25rem;
}

.step-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- WHO FOR --- */
.qualification-box {
    display: flex;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    flex-wrap: wrap;
}

.for-who,
.not-for-who {
    flex: 1;
    padding: 4rem;
    min-width: 300px;
}

.not-for-who {
    background: rgba(255, 70, 85, 0.05);
}

.qualification-box h3 {
    margin-bottom: 2rem;
    text-align: center;
}

.qualification-box ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.icon-success {
    color: var(--primary);
}

.icon-danger {
    color: var(--accent-red);
}

.divider-vertical {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    display: none;
}

@media(min-width: 900px) {
    .divider-vertical {
        display: block;
    }
}

/* --- LOGIC PROOF --- */
.logic-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.highlight-box {
    margin-top: 3rem;
    border: 1px solid var(--secondary);
    padding: 2rem;
    border-radius: 8px;
    color: #fff;
    background: rgba(200, 170, 110, 0.05);
}

.highlight-box strong {
    color: var(--secondary);
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* --- TRANSFORMATION --- */
.before-after-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.state {
    flex: 1;
    min-width: 300px;
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.state.after {
    background: linear-gradient(135deg, var(--bg-surface), rgba(192, 38, 211, 0.1));
    border-color: rgba(192, 38, 211, 0.3);
}

.state h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.state ul li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.arrow-icon {
    color: var(--text-muted);
    font-size: 2rem;
}

/* --- OFFER --- */
.offer-card {
    background: radial-gradient(circle at center, #1b1b29, #0e0e14);
    border: 1px solid rgba(192, 38, 211, 0.2);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.offer-header h2 {
    font-size: 3rem;
    background: linear-gradient(90deg, #fff, var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.features-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.price-container {
    margin: 3rem 0;
}

.price-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.price {
    font-family: var(--font-heading);
    font-weight: 800;
    color: #fff;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 4px;
}

.value {
    font-size: 4rem;
    color: var(--primary);
}

.challenge-text {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    font-style: italic;
}

.guarantee {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- FOOTER --- */
footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-dark);
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.5;
    margin-top: 1rem;
}

/* --- ANIMATIONS --- */
[data-animate] {
    opacity: 0;
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-down"] {
    transform: translateY(-30px);
}

[data-animate="fade-in"] {
    transform: translateY(0);
}

.animate-visible {
    opacity: 1;
    transform: translateY(0);
}