
/* FONT SETUP: Sans-serif for Headers, Serif for Body */
        :root {
            --bg-dark-purple: #1a1423; /* Darker than requested for more contrast */
            --card-purple: #372a48;
            --accent-mint: #95f9c3;
            --text-light-gray: #dcdde1;
            --header-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            --body-serif: Georgia, 'Times New Roman', Times, serif;
        }

        /* GENERAL RESET & STYLES */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-dark-purple);
            color: var(--text-light-gray);
            font-family: var(--body-serif);
            font-size: 18px;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        .site-wrapper {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .container-fluid {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 0;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--header-sans);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.75rem; }
        p { margin-bottom: 20px; }
        p:last-of-type { margin-bottom: 0; }
        a { color: var(--accent-mint); text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #ffffff; }

        /* UNCONVENTIONAL STYLES */
        .cosmic-button {
            display: inline-block;
            padding: 15px 35px;
            font-family: var(--header-sans);
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            transition: all 0.4s ease;
            cursor: pointer;
            text-align: center;
        }

        .primary-cta {
            background-color: var(--accent-mint);
            color: var(--bg-dark-purple);
            border: 2px solid var(--accent-mint);
        }
        .primary-cta:hover {
            background-color: transparent;
            color: var(--accent-mint);
        }

        .secondary-cta {
            background-color: transparent;
            color: var(--text-light-gray);
            border: 2px solid var(--card-purple);
        }
        .secondary-cta:hover {
            border-color: var(--accent-mint);
            color: var(--accent-mint);
        }

        /* FADE-IN ANIMATION */
        .fade-in-element {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-in-element.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* HEADER */
        .celestial-header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 25px 5%;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand-logo {
            font-family: var(--header-sans);
            font-size: 1.5rem;
            font-weight: 900;
            letter-spacing: -1px;
            color: #fff;
        }
        .brand-logo span { color: var(--accent-mint); }

        .stellar-nav ul {
            list-style: none;
            display: flex;
            gap: 40px;
        }

        .stellar-nav a {
            font-family: var(--header-sans);
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 5px;
        }
        .stellar-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent-mint);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        }
        .stellar-nav a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* HERO SECTION */
        .hero-nebula {
            min-height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            padding-top: 120px;
            position: relative;
            background: radial-gradient(circle at 10% 20%, rgba(55, 42, 72, 0.9), var(--bg-dark-purple) 60%), radial-gradient(circle at 90% 80%, rgba(149, 249, 195, 0.15), var(--bg-dark-purple) 50%);
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }
        .hero-content h1 {
            background: linear-gradient(45deg, #ffffff, var(--accent-mint));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 25px;
            font-size: 4.5rem;
            font-weight: 900;
        }
        .hero-content p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 40px;
            color: var(--text-light-gray);
        }
        .hero-cta-cluster {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        .urgency-trigger {
            margin-top: 20px;
            font-size: 0.9rem;
            opacity: 0.8;
            font-style: italic;
        }
        .urgency-trigger span {
             font-weight: bold;
             color: var(--accent-mint);
        }

        /* STEP-BY-STEP PATHWAY SECTION */
        .pathway-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            position: relative;
        }
        .pathway-step {
            background-color: var(--card-purple);
            padding: 40px 30px;
            border-radius: 12px;
            border: 1px solid rgba(149, 249, 195, 0.1);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .pathway-step:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        .pathway-step_number {
            position: absolute;
            top: -20px;
            right: 10px;
            font-family: var(--header-sans);
            font-size: 6rem;
            font-weight: 900;
            color: rgba(149, 249, 195, 0.08);
            line-height: 1;
            z-index: 0;
            user-select: none;
        }
        .pathway-step h3 {
            position: relative;
            z-index: 1;
        }
        .pathway-step p {
            position: relative;
            z-index: 1;
            font-size: 0.95rem;
        }


        /* BENEFITS SECTION */
        .benefits-section .section-title { text-align: center; margin-bottom: 60px; }
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .benefit-card {
            border: 1px solid var(--card-purple);
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            transition: background-color 0.3s ease;
        }
        .benefit-card:hover {
            background-color: var(--card-purple);
        }
        .benefit-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 20px;
            stroke: var(--accent-mint);
            fill: none;
            stroke-width: 1.5;
        }

        /* ARTICLE SECTION */
        .article-container {
            background-color: var(--card-purple);
            padding: 50px;
            border-radius: 15px;
            margin-top: 50px;
        }
        .article-super-title {
            text-align: center;
            font-family: var(--header-sans);
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent-mint);
            margin-bottom: 15px;
        }
        .article-container h2 {
            border-bottom: 2px solid var(--accent-mint);
            padding-bottom: 10px;
            margin-top: 40px;
            margin-bottom: 30px;
        }
        .article-container h2:first-of-type {
            margin-top: 0;
        }
        .article-container p {
            padding: 0 10px;
            margin-bottom: 25px;
        }
        .article-container ul, .article-container ol {
            padding-left: 30px;
            margin-bottom: 25px;
        }
        .article-container li {
            margin-bottom: 10px;
        }
        .article-container b, .article-container strong {
            color: #fff;
            font-weight: 700;
        }
        .article-container table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            font-family: var(--body-serif);
        }
        .article-container th, .article-container td {
            border: 1px solid #5a4b6b;
            padding: 15px;
            text-align: left;
        }
        .article-container th {
            background-color: #2a2135;
            font-family: var(--header-sans);
            color: var(--accent-mint);
        }
        
        img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 30px 0;
            display: block;
        }

        /* FINAL CTA SECTION */
        .final-call-zone {
            background-color: var(--card-purple);
            border-radius: 20px;
            padding: 60px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .final-call-zone h2 {
            max-width: 600px;
        }
        .final-call-zone p {
            max-width: 550px;
            margin-bottom: 30px;
        }
        .capture-form {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            width: 100%;
            max-width: 600px;
        }
        .capture-form-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 1px solid #5a4b6b;
            background-color: var(--bg-dark-purple);
            color: var(--text-light-gray);
            border-radius: 50px;
            font-family: var(--body-serif);
            font-size: 1rem;
        }
        .capture-form-input:focus {
            outline: none;
            border-color: var(--accent-mint);
        }
        .trust-element {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* PRODUCT COMPOSITION */
        .composition-section .section-title { text-align: center; margin-bottom: 60px; }
        .composition-list {
            list-style: none;
            max-width: 800px;
            margin: 0 auto;
        }
        .composition-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid var(--card-purple);
        }
        .composition-item:last-child {
            border-bottom: none;
        }
        .composition-icon {
            width: 30px;
            height: 30px;
            stroke: var(--accent-mint);
            flex-shrink: 0;
        }
        .composition-item h4 {
            margin: 0;
            font-size: 1.25rem;
        }

        /* FAQ SECTION */
        .faq-section .section-title { text-align: center; margin-bottom: 60px; }
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid var(--card-purple);
        }
        .faq-question {
            padding: 25px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question h3 {
            margin: 0;
            font-size: 1.2rem;
            font-weight: 500;
        }
        .faq-toggle-icon {
            width: 24px;
            height: 24px;
            stroke: var(--text-light-gray);
            transition: transform 0.4s ease;
            flex-shrink: 0;
            margin-left: 20px;
        }
        .faq-item.active .faq-toggle-icon {
            transform: rotate(45deg);
            stroke: var(--accent-mint);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), padding 0.5s ease;
            padding: 0 20px;
        }
        .faq-item.active .faq-answer {
            max-height: 500px; /* Adjust if needed */
            padding: 0 20px 25px;
            transition: max-height 1s cubic-bezier(1, 0, 1, 0), padding 0.5s ease;
        }

        /* SOCIAL PROOF SECTION */
        .social-proof-section .section-title { text-align: center; margin-bottom: 60px; }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        .testimonial-card {
            background-color: var(--card-purple);
            padding: 30px;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
        }
        .testimonial-content {
            font-style: italic;
            flex-grow: 1;
        }
        .testimonial-author {
            margin-top: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--accent-mint);
        }
        .author-info h4 {
            margin: 0;
            font-size: 1rem;
        }
        .author-info span {
            font-size: 0.9rem;
            color: var(--accent-mint);
            opacity: 0.8;
            display: block;
        }

        /* FOOTER */
        .cosmic-footer {
            background-color: #110d1a;
            padding: 80px 5%;
            margin-top: 80px;
            position: relative;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-about .brand-logo {
            margin-bottom: 20px;
            display: inline-block;
        }
        .footer-about p {
            font-size: 0.9rem;
            max-width: 350px;
            opacity: 0.7;
        }
        .footer-links h4 {
            font-size: 1.1rem;
            color: var(--accent-mint);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: var(--text-light-gray);
            font-family: var(--body-serif);
            font-size: 0.95rem;
            opacity: 0.8;
        }
        .footer-links a:hover {
            opacity: 1;
            color: var(--accent-mint);
            padding-left: 5px;
        }
        .footer-bottom {
            text-align: center;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid var(--card-purple);
            font-size: 0.85rem;
            opacity: 0.6;
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 1024px) {
            h1 { font-size: 3rem; }
            .hero-content h1 { font-size: 3.5rem; }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .hero-content h1 { font-size: 2.8rem; }
            .stellar-nav { display: none; }
            .pathway-grid { grid-template-columns: 1fr; }
            .celestial-header { padding: 20px 5%;}
            .capture-form {
                flex-direction: column;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-about p {
                margin: 0 auto;
            }
        }
