
:root {
            --charcoal-bg: #212121;
            --dark-gray-surface: #2E2E2E;
            --amber-accent: #FFBF00;
            --pure-white-text: #FFFFFF;
            --subtle-gray-text: #B0B0B0;
            --shadow-color: rgba(0, 0, 0, 0.4);
            --header-font: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
            --body-font: 'Verdana', Geneva, sans-serif;
        }

        /* --- Base & Reset --- */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            background-color: var(--charcoal-bg);
            font-family: var(--body-font);
            color: var(--pure-white-text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* --- Typography --- */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--header-font);
            color: var(--pure-white-text);
            line-height: 1.3;
            font-weight: 700;
        }

        h1 { font-size: 3rem; margin-bottom: 1rem; }
        h2 { font-size: 2.5rem; margin-bottom: 1rem; }
        h3 { font-size: 1.75rem; }
        p { color: var(--subtle-gray-text); margin-bottom: 1.5rem; }
        a { color: var(--amber-accent); text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: var(--pure-white-text); }
        
        /* --- Layout & Structure --- */
        .cosmic-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        .section-title h2 {
            margin-bottom: 0.5rem;
        }
        .section-title p {
            max-width: 600px;
            margin: 0 auto;
        }

        /* --- Floating Card Style --- */
        .astral-card {
            background-color: var(--dark-gray-surface);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px var(--shadow-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .astral-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px var(--shadow-color);
        }

        /* --- Animations --- */
        .celestial-fade-in {
            opacity: 0;
            transform: translateY(25px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .celestial-fade-in.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Header & Navigation --- */
        .stellar-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background-color: rgba(33, 33, 33, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .brand-logo {
            font-family: var(--header-font);
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--pure-white-text);
        }
        
        .brand-logo span {
            color: var(--amber-accent);
        }

        .nav-toggle-button {
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 24px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }
        
        .nav-toggle-button .bar {
            width: 30px;
            height: 3px;
            background-color: var(--pure-white-text);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(33, 33, 33, 0.98);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
            z-index: 999;
        }
        
        .nav-overlay.is-active {
            opacity: 1;
            visibility: visible;
        }

        .nav-overlay ul {
            list-style: none;
            text-align: center;
        }

        .nav-overlay li {
            margin: 2rem 0;
        }

        .nav-overlay a {
            font-family: var(--header-font);
            font-size: 2.5rem;
            color: var(--pure-white-text);
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .nav-overlay a:hover {
            color: var(--amber-accent);
        }

        /* --- Hero Section --- */
        .hero-vortex {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px; 
        }

        .hero-content {
            max-width: 800px;
        }
        .hero-content .sub-heading {
            font-size: 1.2rem;
            color: var(--subtle-gray-text);
            margin-bottom: 2rem;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--amber-accent);
            color: var(--charcoal-bg);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-family: var(--header-font);
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .cta-button:hover {
            background-color: var(--pure-white-text);
            transform: translateY(-3px);
            color: var(--charcoal-bg);
        }
        
        .visual-element-placeholder {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            width: 40vw;
            height: 40vw;
            max-width: 500px;
            max-height: 500px;
            background: radial-gradient(circle, rgba(255, 191, 0, 0.2) 0%, rgba(33, 33, 33, 0) 70%);
            border-radius: 50%;
            z-index: -1;
            pointer-events: none;
        }

        /* --- Process Section --- */
        .process-continuum {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            position: relative;
        }
        .process-step {
            text-align: center;
            z-index: 2;
        }
        .step-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem auto;
            background-color: var(--dark-gray-surface);
            border: 2px solid var(--amber-accent);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
            font-family: var(--header-font);
            color: var(--amber-accent);
        }
        .process-step h3 {
            margin-bottom: 0.5rem;
            color: var(--pure-white-text);
        }

        .process-result {
            margin-top: 4rem;
            text-align: center;
            background: linear-gradient(to right, var(--dark-gray-surface), var(--charcoal-bg), var(--dark-gray-surface));
            padding: 3rem 2rem;
            border-radius: 12px;
        }
        
        /* --- Benefits Section --- */
        .benefits-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .benefit-card {
            text-align: left;
        }
        .benefit-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 1.5rem;
            color: var(--amber-accent);
        }
        .benefit-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        /* --- Testimonials Section --- */
        .testimonial-galaxy {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
        }
        .testimonial-card .astral-card {
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .testimonial-card footer {
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
        }
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
            background-color: var(--subtle-gray-text);
        }
        .testimonial-author h4 {
            font-size: 1.1rem;
            color: var(--pure-white-text);
        }
        .testimonial-author span {
            font-size: 0.9rem;
            color: var(--subtle-gray-text);
        }

        /* --- FAQ Section --- */
        .faq-cluster {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background-color: var(--dark-gray-surface);
            margin-bottom: 1rem;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            cursor: pointer;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
        }
        .faq-question h3 {
            color: var(--pure-white-text);
             font-size: 1.2rem;
        }
        .faq-icon {
            width: 24px;
            height: 24px;
            color: var(--amber-accent);
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .faq-answer div {
            padding: 0 2rem 1.5rem 2rem;
        }
        .faq-item.active .faq-answer {
            max-height: 500px; /* Adjust as needed */
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        /* --- Article Section --- */
        .article-expanse {
            background: var(--dark-gray-surface);
            padding: 4rem;
            border-radius: 12px;
        }
        .article-header-marker {
            text-align: center;
            margin-bottom: 3rem;
            font-family: var(--header-font);
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--amber-accent);
        }
        .article-expanse h2 {
            font-size: 2rem;
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--amber-accent);
            display: inline-block;
        }
        .article-expanse p {
            margin-bottom: 1.2rem;
            color: var(--subtle-gray-text);
            line-height: 1.8;
        }
        .article-expanse ul, .article-expanse ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        .article-expanse li {
            margin-bottom: 0.5rem;
            color: var(--subtle-gray-text);
        }
        .article-expanse strong, .article-expanse b {
            color: var(--pure-white-text);
        }
        .article-expanse table {
            width: 100%;
            margin: 2rem 0;
            border-collapse: collapse;
            background-color: var(--charcoal-bg);
        }
        .article-expanse th, .article-expanse td {
            text-align: left;
            padding: 1rem;
            border: 1px solid var(--dark-gray-surface);
        }
        .article-expanse th {
            background-color: var(--amber-accent);
            color: var(--charcoal-bg);
            font-family: var(--header-font);
        }
        .article-expanse img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 2rem 0;
            display: block;
        }
        
        /* --- What's Included Section --- */
        .Inclusion-Grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        .inclusion-list {
            list-style: none;
        }
        .inclusion-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        .inclusion-item svg {
            width: 24px;
            height: 24px;
            color: var(--amber-accent);
            margin-right: 1rem;
            flex-shrink: 0;
            margin-top: 5px;
        }
        .inclusion-visual {
            background-color: var(--dark-gray-surface);
            padding: 2rem;
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
        }
        .inclusion-visual svg {
            width: 150px;
            height: 150px;
            color: var(--amber-accent);
        }
        

        /* --- Footer --- */
        .deep-footer {
            background-color: var(--dark-gray-surface);
            padding: 4rem 5% 2rem 5%;
            margin-top: 5rem;
            border-top: 3px solid var(--amber-accent);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        .footer-column h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: var(--pure-white-text);
            font-family: var(--header-font);
        }

        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column a {
            color: var(--subtle-gray-text);
        }

        .footer-column a:hover {
            color: var(--amber-accent);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-bottom p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--subtle-gray-text);
        }
        
        /* --- Responsive Design --- */
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .hero-vortex { text-align: center; }
            .hero-content { margin: 0 auto; }
            .visual-element-placeholder { display: none; }
            .Inclusion-Grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            html { font-size: 15px; }
            .cosmic-container { padding: 3rem 0; }
            .nav-overlay a { font-size: 2rem; }
            .benefits-matrix { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
            .article-expanse { padding: 2rem; }
        }
         @media (max-width: 480px) {
            h1 { font-size: 2.2rem; }
            .benefits-matrix { grid-template-columns: 1fr; }
            .testimonial-galaxy { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
        }
