
/* FONT SETUP - System Fonts to avoid external calls */
        /* Italic Serif for Hero */
        @font-face {
            font-family: 'HeroSerif';
            src: local('Georgia'), local('Times New Roman'), serif;
            font-style: italic;
            font-weight: bold;
        }

        /* Sans-serif for Body */
        @font-face {
            font-family: 'BodySans';
            src: local('Helvetica Neue'), local('Arial'), sans-serif;
            font-weight: 400;
        }
        @font-face {
            font-family: 'BodySans';
            src: local('Helvetica Neue'), local('Arial'), sans-serif;
            font-weight: 700;
        }


        /* CSS RESET & CORE STYLES */
        :root {
            --color-background: #0D0D0D;
            --color-surface: #1A1A1A;
            --color-text-primary: #FFFFFF;
            --color-text-secondary: #B3B3B3;
            --gradient-main: linear-gradient(110deg, #9F2BFF, #F5389D);
            --font-hero: 'HeroSerif', serif;
            --font-body: 'BodySans', sans-serif;
            --shadow-glow: 0 0 15px rgba(245, 56, 157, 0.4), 0 0 25px rgba(159, 43, 255, 0.3);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--color-background);
            color: var(--color-text-primary);
            font-family: var(--font-body);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* GLOBAL STYLES */
        .page-wrapper {
            width: 100%;
            overflow-x: hidden;
        }

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

        section {
            padding: 8rem 0;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-body);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.5rem; }

        p {
            margin-bottom: 1rem;
            color: var(--color-text-secondary);
            max-width: 800px;
        }

        a {
            color: var(--color-text-primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
        }

        img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
        }

        /* ANIMATION UTILITIES */
        .apparition-effect {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .apparition-effect.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- HEADER --- */
        .site-header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            padding: 2rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-link {
            font-weight: bold;
            font-size: 1.5rem;
            letter-spacing: 1px;
        }
        .main-navigation ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }
        .main-navigation a {
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            padding: 0.5rem 0;
        }
        .main-navigation a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gradient-main);
            transition: width 0.3s ease;
        }
        .main-navigation a:hover::after {
            width: 100%;
        }

        /* --- HERO SECTION --- */
        .hero-nexus {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 6rem 2rem;
        }

        .hero-nexus::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 70vw;
            height: 70vh;
            min-width: 600px;
            min-height: 600px;
            background: var(--gradient-main);
            filter: blur(150px);
            transform: translate(-50%, -50%);
            opacity: 0.3;
            animation: pulse-glow 20s infinite alternate;
        }

        @keyframes pulse-glow {
            from { transform: translate(-50%, -50%) scale(0.8); }
            to { transform: translate(-50%, -50%) scale(1.2); }
        }

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

        .hero-title {
            font-family: var(--font-hero);
            font-size: clamp(3rem, 7vw, 6rem);
            font-weight: bold;
            font-style: italic;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            transform: skewY(-4deg);
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: var(--color-text-primary);
            max-width: 700px;
            margin: 0 auto 2.5rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 3rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--color-text-primary);
            background: var(--gradient-main);
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: var(--shadow-glow);
        }

        .cta-button:hover {
            transform: scale(1.05) translateY(-3px);
            box-shadow: 0 0 25px rgba(245, 56, 157, 0.6), 0 0 40px rgba(159, 43, 255, 0.5);
            background: var(--gradient-main); /* Re-apply for hover color */
            -webkit-text-fill-color: initial;
        }
        
        /* --- CORE FEATURES BLOCK --- */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .feature-card {
            background-color: var(--color-surface);
            padding: 2.5rem;
            border-radius: 12px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            background-color: #222222;
        }
        .feature-icon {
            margin-bottom: 1.5rem;   
            height: 48px;
            width: 48px;
        }

        .feature-icon svg {
            width: 48px;
            height: 48px;
        }
        .feature-title {
            font-size: 1.4rem;
            margin-bottom: 0.75rem;
        }
        .feature-description {
            font-size: 1rem;
            line-height: 1.6;
        }

        /* --- ARTICLE BLOCK --- */
        .article-section {
            background-color: var(--color-surface);
            padding: 6rem 0;
        }
        .article-section .section-title {
            text-align: center;
            font-family: var(--font-body);
            color: var(--color-text-secondary);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 1rem;
        }
        .article-section .section-subtitle {
           font-size: 2.5rem;
           text-align: center;
           max-width: 800px;
           margin: 0 auto 4rem;
           font-weight: 700;
           color: var(--color-text-primary);
        }
        .article-content h2 {
            font-size: 2rem;
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid;
            border-image-slice: 1;
            border-image-source: var(--gradient-main);
        }
        .article-content p {
            max-width: none;
            padding: 0 1rem; /* Horizontal padding for paragraphs */
        }
        .article-content ul, .article-content ol {
            padding-left: 2rem;
            margin-bottom: 1rem;
            padding: 0 3rem;
        }
         .article-content li {
            margin-bottom: 0.5rem;
            color: var(--color-text-secondary);
        }
        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background-color: #000;
        }
        .article-content th, .article-content td {
            border: 1px solid #333;
            padding: 1rem;
            text-align: left;
        }
        .article-content th {
            background: var(--gradient-main);
            color: var(--color-text-primary);
        }
        .article-content td {
            color: var(--color-text-secondary);
        }

        /* --- SOCIAL PROOF (TESTIMONIALS) --- */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }
        .testimonial-card {
            background-color: var(--color-surface);
            padding: 2rem;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
        }
        .testimonial-quote {
            flex-grow: 1;
            margin-bottom: 1.5rem;
            font-style: italic;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
        }
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-main);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .author-name {
            font-weight: bold;
            color: var(--color-text-primary);
        }
        .author-result {
            font-size: 0.9rem;
            color: var(--color-text-secondary);
        }

        /* --- FAQ --- */
        #faq {
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid #333;
            padding: 1.5rem 0;
        }
        .faq-question {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.3rem;
            font-weight: 500;
        }
        .faq-icon {
            width: 30px;
            height: 30px;
            min-width: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: #9F2BFF;
            transition: transform 0.3s ease;
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out;
        }
        .faq-answer p {
            padding-top: 1rem;
        }

        /* --- INCLUDED BLOCK --- */
        .inclusion-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: center;
        }
        .inclusion-item {
            padding: 2rem;
        }
        .inclusion-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background-color: var(--color-surface);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }
        .inclusion-item:hover .inclusion-icon {
            transform: scale(1.1);
        }
        .inclusion-icon svg {
            width: 40px;
            height: 40px;
            fill: #9F2BFF;
        }

        /* --- HOW IT WORKS BLOCK --- */
        .how-it-works-timeline {
            position: relative;
            display: flex;
            justify-content: space-between;
            gap: 2rem;
        }
        .how-it-works-timeline::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 5%;
            right: 5%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #444, transparent);
        }
        .timeline-step {
            position: relative;
            flex: 1;
            text-align: center;
            padding-top: 80px;
        }
        .step-number {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 80px;
            border: 2px solid #444;
            border-radius: 50%;
            background-color: var(--color-background);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            color: var(--color-text-secondary);
            transition: border-color 0.3s ease, color 0.3s ease;
        }
        .timeline-step:hover .step-number {
            color: var(--color-text-primary);
            border-image-source: var(--gradient-main);
            border-image-slice: 1;
        }

        /* --- FOOTER --- */
        .site-footer {
            background-color: var(--color-surface);
            padding: 5rem 0 2rem;
            margin-top: 5rem;
            clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 4rem;
        }
        .footer-about h3, .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: var(--color-text-primary);
        }
        .footer-about p {
           max-width: 300px;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column li {
            margin-bottom: 0.75rem;
        }
        .footer-column a {
            color: var(--color-text-secondary);
        }
        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 2rem;
            text-align: center;
            font-size: 0.9rem;
            color: var(--color-text-secondary);
        }

        /* RESPONSIVENESS */
        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: 1fr;
                 text-align: center;
            }
             .footer-about p {
               margin: 0 auto 1.5rem;
            }
            .how-it-works-timeline {
                flex-direction: column;
                align-items: center;
            }
             .how-it-works-timeline::before {
                top: 5%;
                bottom: 5%;
                left: 50%;
                width: 2px;
                height: 90%;
                transform: translateX(-1px);
                 background: linear-gradient(180deg, transparent, #444, transparent);
            }
            .timeline-step {
                padding-top: 0;
                padding-left: 80px;
                text-align: left;
                width: 100%;
                max-width: 400px;
            }
            .step-number {
                top: 50%;
                left: 0;
                transform: translateY(-50%);
            }
        }
        @media (max-width: 768px) {
            h2, .article-section .section-subtitle { font-size: 2rem; }
            section { padding: 4rem 0; }
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }
            body { line-height: 1.6; }
        }
        @media (max-width: 480px) {
            .main-navigation ul {
                gap: 1.5rem;
            }
        }


.faq-page-header {
            padding-top: 12rem;
            padding-bottom: 6rem;
            text-align: center;
            background: linear-gradient(180deg, rgba(13, 13, 13, 0) 0%, var(--color-background) 100%), 
                        radial-gradient(ellipse at center, rgba(159, 43, 255, 0.1) 0%, rgba(13, 13, 13, 0) 70%);
        }
        .faq-page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }
        .faq-page-header p {
            font-size: 1.2rem;
            color: var(--color-text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }
        @media (max-width: 768px) {
            .faq-page-header h1 {
                font-size: 2.5rem;
            }
            .faq-page-header {
                padding-top: 10rem;
                padding-bottom: 4rem;
            }
        }