
/* CSS Reset & Base Styles */
        :root {
            --bg-dark-violet: #1a082e;
            --accent-mint: #98ffdb;
            --text-light-gray: #d9d5e3;
            --card-glass-violet: rgba(56, 30, 87, 0.45);
            --card-border-light: rgba(217, 213, 227, 0.2);
            --header-font: 'Inter', 'Helvetica Neue', Arial, sans-serif;
            --body-font: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            --highlight-violet: #7743db;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-dark-violet);
            color: var(--text-light-gray);
            font-family: var(--body-font);
            font-size: 16px;
            line-height: 1.6;
            overflow-x: hidden;
            background-image:
                radial-gradient(circle at 10% 10%, rgba(152, 255, 219, 0.1) 0, transparent 30%),
                radial-gradient(circle at 90% 80%, rgba(119, 67, 219, 0.15) 0, transparent 40%);
        }

        /* General Layout & Typography */
        .aegis-nexus-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--header-font);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.75em;
            line-height: 1.2;
        }

        h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
        h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
        p { margin-bottom: 1.5rem; }
        a { color: var(--accent-mint); text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #ffffff; }

        section {
            padding: 80px 0;
            position: relative;
        }

        .cta-button-prime {
            display: inline-block;
            padding: 15px 35px;
            font-family: var(--header-font);
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--bg-dark-violet);
            background-color: var(--accent-mint);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cta-button-prime:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(152, 255, 219, 0.2);
        }
        
        .section-decal {
            position: absolute;
            font-family: var(--header-font);
            font-weight: 100;
            font-size: clamp(10rem, 25vw, 20rem);
            color: rgba(255, 255, 255, 0.03);
            z-index: -1;
            user-select: none;
        }

        /* Glassmorphism Card Style */
        .crystal-pane {
            background: var(--card-glass-violet);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--card-border-light);
            border-radius: 16px;
            padding: 2.5rem;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .crystal-pane:hover {
            border-color: rgba(152, 255, 219, 0.5);
            transform: translateY(-5px);
        }

        /* Animations */
        .scroll-animated-element {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .scroll-animated-element.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- HEADER --- */
        .celestial-header {
            padding: 20px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            top: 0;
            left: 0;
            transition: background-color 0.3s ease;
        }
        .celestial-header.scrolled {
            background-color: rgba(26, 8, 46, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .header-grid-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .header-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
        }
        .header-logo span {
            color: var(--accent-mint);
        }

        .main-navigation menu {
            display: flex;
            gap: 20px;
            list-style: none;
        }
        
        .main-navigation a, .dropdown .dropbtn {
            color: var(--text-light-gray);
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 5px;
            transition: background-color 0.3s ease, color 0.3s ease;
            position: relative;
        }
        
        .main-navigation a:hover, .dropdown:hover .dropbtn {
            color: #fff;
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .dropdown {
            position: relative;
            display: inline-block;
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: var(--bg-dark-violet);
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 8px;
            padding: 10px 0;
            border: 1px solid var(--card-border-light);
        }
        
        .dropdown-content a {
            color: var(--text-light-gray);
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            width: 100%;
            text-align: left;
        }
        
        .dropdown-content a:hover { 
            background-color: var(--card-glass-violet);
            color: #fff;
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
        }

        .mobile-nav-toggle {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
        }
        .mobile-nav-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 5px;
            transition: all 0.3s ease-in-out;
        }

        /* --- HERO SECTION --- */
        .hero-vista {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
        }
        .hero-content {
            max-width: 750px;
            text-align: left;
        }
        .hero-content h1 {
            text-shadow: 0 0 20px rgba(152, 255, 219, 0.3);
        }
        .hero-subheading {
            font-size: 1.25rem;
            margin: 2rem 0;
            max-width: 600px;
            color: var(--text-light-gray);
        }

        /* --- JOURNEY GRID SECTION --- */
        .journey-grid-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }
        .journey-step {
            padding: 2rem;
            text-align: center;
        }
        .step-number {
            font-size: 3rem;
            font-weight: 100;
            color: var(--accent-mint);
            line-height: 1;
            margin-bottom: 1rem;
        }
        .step-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        /* --- ADVANTAGES SECTION --- */
        .advantages-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }
        .advantage-card svg {
            width: 48px;
            height: 48px;
            margin-bottom: 1.5rem;
            color: var(--accent-mint);
        }
        
        /* --- GUIDE ARTICLE SECTION --- */
        .deep-dive-treatise .section-title-display {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent-mint);
            margin-bottom: 1rem;
            text-align: center;
        }
        .deep-dive-treatise h2 {
            font-size: 2.25rem;
            text-align: center;
            margin-bottom: 4rem;
        }
        .article-content-wrapper {
            background: rgba(10, 2, 20, 0.3);
            border-radius: 16px;
            padding: 3rem 4rem;
            border: 1px solid var(--card-border-light);
        }
        .article-content-wrapper h2 {
            font-size: 2rem;
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-mint);
            text-align: left;
        }
        .article-content-wrapper p {
            margin-bottom: 1.5rem;
        }
        .article-content-wrapper ul, .article-content-wrapper ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
         .article-content-wrapper li {
            margin-bottom: 0.75rem;
        }
        .article-content-wrapper img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }
        .article-content-wrapper table {
            width: 100%;
            margin: 2rem 0;
            border-collapse: collapse;
            background: var(--card-glass-violet);
            border-radius: 8px;
            overflow: hidden;
        }
        .article-content-wrapper th, .article-content-wrapper td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--card-border-light);
        }
        .article-content-wrapper th {
            background-color: rgba(152, 255, 219, 0.1);
            font-family: var(--header-font);
        }

        /* --- TESTIMONIALS SECTION --- */
        #testimonials { background-color: rgba(15, 5, 29, 0.5); }
        .testimonial-galaxy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }
        .testimonial-card {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .testimonial-author {
            margin-top: 2rem;
            font-weight: 600;
            color: #fff;
        }
        .testimonial-author span {
            display: block;
            font-weight: 400;
            color: var(--accent-mint);
            font-size: 0.9rem;
        }

        /* --- FAQ SECTION --- */
        .clarity-matrix-wrapper {
            max-width: 800px;
            margin: 4rem auto 0;
        }
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--card-border-light);
            border-radius: 8px;
            overflow: hidden;
            background: var(--card-glass-violet);
            backdrop-filter: blur(12px);
        }
        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: var(--header-font);
            font-weight: 600;
            font-size: 1.1rem;
            color: #fff;
            position: relative;
        }
        .faq-question::after {
            content: '+';
            font-size: 2rem;
            font-weight: 300;
            color: var(--accent-mint);
            transition: transform 0.3s ease;
        }
        .faq-question.active::after {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
            padding: 0 1.5rem;
        }
        
        .faq-answer p {
            margin-bottom: 1rem;
        }

        /* --- INCLUDED SECTION --- */
        .offering-core .aegis-nexus-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        .included-list { list-style: none; }
        .included-list li {
            font-size: 1.1rem;
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
        }
        .included-list li svg {
            width: 24px;
            height: 24px;
            color: var(--accent-mint);
            margin-right: 15px;
            flex-shrink: 0;
        }
        .visual-representation {
            padding: 2rem;
            text-align: center;
        }
        .visual-representation h3 {
            color: var(--accent-mint);
        }

        /* --- FOOTER --- */
        .abyss-footer {
            background: linear-gradient(to top, rgba(15, 5, 29, 1), transparent);
            padding: 60px 0 30px;
            margin-top: 50px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--card-border-light);
            margin-bottom: 30px;
        }
        .footer-column h4 {
            color: #fff;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column ul li {
            margin-bottom: 0.75rem;
        }
        .footer-column ul a {
            color: var(--text-light-gray);
        }
        .footer-column ul a:hover {
            color: var(--accent-mint);
            padding-left: 5px;
        }
        .footer-bottom {
            text-align: center;
            font-size: 0.9rem;
            color: rgba(217, 213, 227, 0.6);
        }

        /* --- Responsive Styles --- */
        @media (max-width: 992px) {
            .offering-core .aegis-nexus-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            body { font-size: 15px; }
            section { padding: 60px 0; }
            .aegis-nexus-container { padding: 0 15px; }

            .main-navigation {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: linear-gradient(to bottom, var(--bg-dark-violet), rgba(26, 8, 46, 0.95));
                padding: 20px 0;
            }
            .main-navigation.active { display: block; }
            .main-navigation menu {
                flex-direction: column;
                align-items: center;
            }
            .mobile-nav-toggle { display: block; }

            .hero-content { text-align: center; }
            .hero-subheading { margin: 2rem auto; }
            
            .article-content-wrapper { padding: 2rem 1.5rem; }
        }


/* CSS Reset & Base Styles */         :root {             --bg-dark-violet: #1a082e;             --accent-mint: #98ffdb;             --text-light-gray: #d9d5e3;             --card-glass-violet: rgba(56, 30, 87, 0.45);             --card-border-light: rgba(217, 213, 227, 0.2);             --header-font: 'Inter', 'Helvetica Neue', Arial, sans-serif;             --body-font: 'Roboto', 'Helvetica Neue', Arial, sans-serif;             --highlight-violet: #7743db;         }          *, *::before, *::after {             box-sizing: border-box;             margin: 0;             padding: 0;         }          html {             scroll-behavior: smooth;         }          body {             background-color: var(--bg-dark-violet);             color: var(--text-light-gray);             font-family: var(--body-font);             font-size: 16px;             line-height: 1.6;             overflow-x: hidden;             background-image:                 radial-gradient(circle at 10% 10%, rgba(152, 255, 219, 0.1) 0, transparent 30%),                 radial-gradient(circle at 90% 80%, rgba(119, 67, 219, 0.15) 0, transparent 40%);         }          /* General Layout & Typography */        .aegis-nexus-container {             max-width: 1100px;             margin: 0 auto;             padding: 0 20px;         }          h1, h2, h3, h4, h5, h6 {             font-family: var(--header-font);             font-weight: 700;             color: #ffffff;             margin-bottom: 0.75em;             line-height: 1.2;         }          h1 { font-size: clamp(2.5rem, 5vw, 4rem); }         h2 { font-size: clamp(2rem, 4vw, 2.75rem); }         h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }         p { margin-bottom: 1.5rem; }         a { color: var(--accent-mint); text-decoration: none; transition: color 0.3s ease; }         a:hover { color: #ffffff; }          section {             padding: 80px 0;             position: relative;         }         .cta-button-prime {             display: inline-block;             padding: 15px 35px;             font-family: var(--header-font);             font-weight: 600;             font-size: 1.1rem;             color: var(--bg-dark-violet);             background-color: var(--accent-mint);             border: none;             border-radius: 50px;             cursor: pointer;             text-decoration: none;             transition: transform 0.3s ease, box-shadow 0.3s ease;         }         .cta-button-prime:hover {             transform: translateY(-3px);             box-shadow: 0 10px 20px rgba(152, 255, 219, 0.2);         }                 .section-decal {             position: absolute;             font-family: var(--header-font);             font-weight: 100;             font-size: clamp(10rem, 25vw, 20rem);             color: rgba(255, 255, 255, 0.03);             z-index: -1;             user-select: none;         }          /* Glassmorphism Card Style */        .crystal-pane {             background: var(--card-glass-violet);             backdrop-filter: blur(12px);             -webkit-backdrop-filter: blur(12px);             border: 1px solid var(--card-border-light);             border-radius: 16px;             padding: 2.5rem;             transition: transform 0.3s ease, border-color 0.3s ease;         }        .crystal-pane:hover {             border-color: rgba(152, 255, 219, 0.5);             transform: translateY(-5px);         }          /* Animations */        .scroll-animated-element {             opacity: 0;             transform: translateY(30px);             transition: opacity 0.8s ease-out, transform 0.8s ease-out;         }        .scroll-animated-element.is-visible {             opacity: 1;             transform: translateY(0);         }          /* --- HEADER --- */        .celestial-header {             padding: 20px 0;             position: fixed;             width: 100%;             z-index: 1000;             top: 0;             left: 0;             transition: background-color 0.3s ease;         }        .celestial-header.scrolled {             background-color: rgba(26, 8, 46, 0.8);             backdrop-filter: blur(10px);             -webkit-backdrop-filter: blur(10px);         }         .header-grid-wrapper {             display: flex;             justify-content: space-between;             align-items: center;         }                 .header-logo {             font-size: 1.5rem;             font-weight: 700;             color: #fff;             text-decoration: none;         }        .header-logo span {             color: var(--accent-mint);         }         .main-navigation menu {             display: flex;             gap: 20px;             list-style: none;         }                 .main-navigation a,.dropdown .dropbtn {             color: var(--text-light-gray);             font-weight: 500;             padding: 5px 10px;             border-radius: 5px;             transition: background-color 0.3s ease, color 0.3s ease;             position: relative;         }                 .main-navigation a:hover,.dropdown:hover .dropbtn {             color: #fff;             background-color: rgba(255, 255, 255, 0.1);         }                 .dropdown {             position: relative;             display: inline-block;         }          .dropbtn {            background: none;            border: none;            font-family: inherit;            font-size: inherit;            cursor: pointer;         }
         .dropdown-content {             display: none;             position: absolute;             background-color: var(--bg-dark-violet);             min-width: 160px;             box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);             z-index: 1;             border-radius: 8px;             padding: 10px 0;             border: 1px solid var(--card-border-light);         }                 .dropdown-content a {             color: var(--text-light-gray);             padding: 12px 16px;             text-decoration: none;             display: block;             width: 100%;             text-align: left;         }                 .dropdown-content a:hover {              background-color: var(--card-glass-violet);             color: #fff;         }                 .dropdown:hover .dropdown-content {             display: block;         }         .mobile-nav-toggle {             display: none;             cursor: pointer;             background: none;             border: none;         }        .mobile-nav-toggle span {             display: block;             width: 25px;             height: 3px;             background-color: #fff;             margin: 5px;             transition: all 0.3s ease-in-out;         }          /* --- HERO SECTION --- */        .hero-vista {             min-height: 100vh;             display: flex;             align-items: center;             padding-top: 100px;         }        .hero-content {             max-width: 750px;             text-align: left;         }        .hero-content h1 {             text-shadow: 0 0 20px rgba(152, 255, 219, 0.3);         }        .hero-subheading {             font-size: 1.25rem;             margin: 2rem 0;             max-width: 600px;             color: var(--text-light-gray);         }          /* --- JOURNEY GRID SECTION --- */        .journey-grid-layout {             display: grid;             grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));             gap: 2rem;             margin-top: 4rem;         }        .journey-step {             padding: 2rem;             text-align: center;         }        .step-number {             font-size: 3rem;             font-weight: 100;             color: var(--accent-mint);             line-height: 1;             margin-bottom: 1rem;         }        .step-title {             font-size: 1.25rem;             font-weight: 600;             color: #fff;             margin-bottom: 0.5rem;         }          /* --- ADVANTAGES SECTION --- */        .advantages-layout {             display: grid;             grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));             gap: 2rem;             margin-top: 4rem;         }        .advantage-card svg {             width: 48px;             height: 48px;             margin-bottom: 1.5rem;             color: var(--accent-mint);         }                  /* --- GUIDE ARTICLE SECTION --- */        .deep-dive-treatise .section-title-display {             font-size: 1.1rem;             text-transform: uppercase;             letter-spacing: 2px;             color: var(--accent-mint);             margin-bottom: 1rem;             text-align: center;         }        .deep-dive-treatise h2 {             font-size: 2.25rem;             text-align: center;             margin-bottom: 4rem;         }        .article-content-wrapper {             background: rgba(10, 2, 20, 0.3);             border-radius: 16px;             padding: 3rem 4rem;             border: 1px solid var(--card-border-light);         }        .article-content-wrapper h2 {             font-size: 2rem;             margin-top: 2.5rem;             margin-bottom: 1.5rem;             padding-bottom: 0.5rem;             border-bottom: 2px solid var(--accent-mint);             text-align: left;         }        .article-content-wrapper p {             margin-bottom: 1.5rem;         }        .article-content-wrapper ul, .article-content-wrapper ol {             margin-bottom: 1.5rem;             padding-left: 2rem;         }         .article-content-wrapper li {             margin-bottom: 0.75rem;         }        .article-content-wrapper img {             width: 100%;             height: auto;             border-radius: 12px;             margin: 2rem 0;             box-shadow: 0 8px 25px rgba(0,0,0,0.3);         }        .article-content-wrapper table {             width: 100%;             margin: 2rem 0;             border-collapse: collapse;             background: var(--card-glass-violet);             border-radius: 8px;             overflow: hidden;         }        .article-content-wrapper th, .article-content-wrapper td {             padding: 1rem;             text-align: left;             border-bottom: 1px solid var(--card-border-light);         }        .article-content-wrapper th {             background-color: rgba(152, 255, 219, 0.1);             font-family: var(--header-font);         }          /* --- TESTIMONIALS SECTION --- */         #testimonials { background-color: rgba(15, 5, 29, 0.5); }        .testimonial-galaxy-grid {             display: grid;             grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));             gap: 2rem;             margin-top: 4rem;         }        .testimonial-card {             display: flex;             flex-direction: column;             justify-content: space-between;         }        .testimonial-author {             margin-top: 2rem;             font-weight: 600;             color: #fff;         }        .testimonial-author span {             display: block;             font-weight: 400;             color: var(--accent-mint);             font-size: 0.9rem;         }          /* --- FAQ SECTION --- */        .clarity-matrix-wrapper {             max-width: 800px;             margin: 4rem auto 0;         }        .faq-item {             margin-bottom: 1rem;             border: 1px solid var(--card-border-light);             border-radius: 8px;             overflow: hidden;             background: var(--card-glass-violet);             backdrop-filter: blur(12px);         }        .faq-question {             padding: 1.5rem;             cursor: pointer;             display: flex;             justify-content: space-between;             align-items: center;             font-family: var(--header-font);             font-weight: 600;             font-size: 1.1rem;             color: #fff;             position: relative;         }        .faq-question::after {             content: '+';             font-size: 2rem;             font-weight: 300;             color: var(--accent-mint);             transition: transform 0.3s ease;         }        .faq-question.active::after {             transform: rotate(45deg);         }        .faq-answer {             max-height: 0;             overflow: hidden;             transition: max-height 0.5s ease-out, padding 0.5s ease-out;             padding: 0 1.5rem;         }                 .faq-answer p {             margin-bottom: 1rem;         }          /* --- INCLUDED SECTION --- */        .offering-core .aegis-nexus-container {             display: grid;             grid-template-columns: 1fr 1fr;             gap: 4rem;             align-items: center;         }        .included-list { list-style: none; }        .included-list li {             font-size: 1.1rem;             margin-bottom: 1.25rem;             display: flex;             align-items: center;         }        .included-list li svg {             width: 24px;             height: 24px;             color: var(--accent-mint);             margin-right: 15px;             flex-shrink: 0;         }        .visual-representation {             padding: 2rem;             text-align: center;         }        .visual-representation h3 {             color: var(--accent-mint);         }          /* --- FOOTER --- */        .abyss-footer {             background: linear-gradient(to top, rgba(15, 5, 29, 1), transparent);             padding: 60px 0 30px;             margin-top: 50px;         }        .footer-grid {             display: grid;             grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));             gap: 2rem;             padding-bottom: 40px;             border-bottom: 1px solid var(--card-border-light);             margin-bottom: 30px;         }        .footer-column h4 {             color: #fff;             margin-bottom: 1.5rem;             font-size: 1.1rem;         }        .footer-column ul {             list-style: none;         }        .footer-column ul li {             margin-bottom: 0.75rem;         }        .footer-column ul a {             color: var(--text-light-gray);         }        .footer-column ul a:hover {             color: var(--accent-mint);             padding-left: 5px;         }        .footer-bottom {             text-align: center;             font-size: 0.9rem;             color: rgba(217, 213, 227, 0.6);         }
        /* --- Additional Styles --- */
        .subpage-hero {
            min-height: auto;
            align-items: flex-end;
            padding-top: 140px;
            padding-bottom: 60px;
        }
        .subpage-hero .hero-content {
            max-width: 100%;
            text-align: center;
        }
        #policy {
            padding-top: 0;
        }
        .article-content-wrapper ul li {
            list-style-type: disc;
        }
        .article-content-wrapper h3 {
            font-size: 1.4rem;
            color: var(--accent-mint);
            margin-top: 2rem;
            border-bottom: none;
            text-align: left;
        }
          /* --- Responsive Styles --- */         @media (max-width: 992px) {            .offering-core .aegis-nexus-container {                 grid-template-columns: 1fr;             }         }          @media (max-width: 768px) {             body { font-size: 15px; }             section { padding: 60px 0; }            .aegis-nexus-container { padding: 0 15px; }             .main-navigation {                 display: none;                 position: absolute;                 top: 80px;                 left: 0;                 width: 100%;                 background: linear-gradient(to bottom, var(--bg-dark-violet), rgba(26, 8, 46, 0.95));                 padding: 20px 0;             }            .main-navigation.active { display: block; }            .main-navigation menu {                 flex-direction: column;                 align-items: center;             }            .mobile-nav-toggle { display: block; }             .hero-content { text-align: center; }            .hero-subheading { margin: 2rem auto; }                         .article-content-wrapper { padding: 2rem 1.5rem; }
            .subpage-hero {
                padding-top: 100px;
                padding-bottom: 40px;
            }
         }

/* CSS Reset & Base Styles */
        :root {
            --bg-dark-violet: #1a082e;
            --accent-mint: #98ffdb;
            --text-light-gray: #d9d5e3;
            --card-glass-violet: rgba(56, 30, 87, 0.45);
            --card-border-light: rgba(217, 213, 227, 0.2);
            --header-font: 'Inter', 'Helvetica Neue', Arial, sans-serif;
            --body-font: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            --highlight-violet: #7743db;
        }
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--bg-dark-violet);
            color: var(--text-light-gray);
            font-family: var(--body-font);
            font-size: 16px;
            line-height: 1.6;
            overflow-x: hidden;
            background-image:
                radial-gradient(circle at 10% 10%, rgba(152, 255, 219, 0.1) 0, transparent 30%),
                radial-gradient(circle at 90% 80%, rgba(119, 67, 219, 0.15) 0, transparent 40%);
        }
        /* General Layout & Typography */
       .aegis-nexus-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--header-font);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.75em;
            line-height: 1.2;
        }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
        h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
        p { margin-bottom: 1.5rem; }
        a { color: var(--accent-mint); text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #ffffff; }
        section {
            padding: 80px 0;
            position: relative;
        }
        .cta-button-prime {
            display: inline-block;
            padding: 15px 35px;
            font-family: var(--header-font);
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--bg-dark-violet);
            background-color: var(--accent-mint);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .cta-button-prime:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(152, 255, 219, 0.2);
        }
                .section-decal {
            position: absolute;
            font-family: var(--header-font);
            font-weight: 100;
            font-size: clamp(10rem, 25vw, 20rem);
            color: rgba(255, 255, 255, 0.03);
            z-index: -1;
            user-select: none;
        }
        /* Glassmorphism Card Style */
       .crystal-pane {
            background: var(--card-glass-violet);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--card-border-light);
            border-radius: 16px;
            padding: 2.5rem;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
       .crystal-pane:hover {
            border-color: rgba(152, 255, 219, 0.5);
            transform: translateY(-5px);
        }
        /* Animations */
       .scroll-animated-element {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
       .scroll-animated-element.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* --- HEADER --- */
       .celestial-header {
            padding: 20px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            top: 0;
            left: 0;
            transition: background-color 0.3s ease;
        }
       .celestial-header.scrolled {
            background-color: rgba(26, 8, 46, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        .header-grid-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
                .header-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
        }
       .header-logo span {
            color: var(--accent-mint);
        }
        .main-navigation menu {
            display: flex;
            gap: 20px;
            list-style: none;
        }
                .main-navigation a,.dropdown .dropbtn {
            color: var(--text-light-gray);
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 5px;
            transition: background-color 0.3s ease, color 0.3s ease;
            position: relative;
            background: none;
            border: none;
            font-family: inherit;
            font-size: inherit;
            cursor: pointer;
        }
                .main-navigation a:hover,.dropdown:hover .dropbtn {
            color: #fff;
            background-color: rgba(255, 255, 255, 0.1);
        }
                .dropdown {
            position: relative;
            display: inline-block;
        }
                .dropdown-content {
            display: none;
            position: absolute;
            background-color: var(--bg-dark-violet);
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 8px;
            padding: 10px 0;
            border: 1px solid var(--card-border-light);
        }
                .dropdown-content a {
            color: var(--text-light-gray);
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            width: 100%;
            text-align: left;
        }
                .dropdown-content a:hover {
            background-color: var(--card-glass-violet);
            color: #fff;
        }
                .dropdown:hover .dropdown-content {
            display: block;
        }
        .mobile-nav-toggle {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
        }
       .mobile-nav-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 5px;
            transition: all 0.3s ease-in-out;
        }
        /* --- General Hero Section (Used on home) --- */
       .hero-vista {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
        }
       .hero-content {
            max-width: 750px;
            text-align: left;
        }
       .hero-content h1 {
            text-shadow: 0 0 20px rgba(152, 255, 219, 0.3);
        }
       .hero-subheading {
            font-size: 1.25rem;
            margin: 2rem 0;
            max-width: 600px;
            color: var(--text-light-gray);
        }

        /* --- Additional Styles for FAQ Page --- */
        .faq-hero-section {
            padding: 140px 0 60px 0;
            text-align: center;
            background: linear-gradient(180deg, rgba(26, 8, 46, 0) 0%, var(--bg-dark-violet) 100%);
        }
        .faq-hero-section h1 {
            color: var(--accent-mint);
        }
        .faq-hero-section .hero-subheading {
            margin: 1.5rem auto;
            max-width: 700px;
        }
        .faq-more-questions {
            margin-top: 5rem;
            text-align: center;
            padding: 3rem;
            background: var(--card-glass-violet);
            border: 1px solid var(--card-border-light);
            border-radius: 16px;
        }
         .faq-more-questions h3 {
            font-size: 1.75rem;
            color: #fff;
         }

        /* --- FAQ SECTION --- */
       #faq-list {
            padding-top: 0;
        }
       .clarity-matrix-wrapper {
            max-width: 800px;
            margin: 4rem auto 0;
        }
       .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--card-border-light);
            border-radius: 8px;
            overflow: hidden;
            background: var(--card-glass-violet);
            backdrop-filter: blur(12px);
            transition: background-color 0.3s ease;
        }
        .faq-item:hover {
            background: rgba(56, 30, 87, 0.65);
        }
       .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: var(--header-font);
            font-weight: 600;
            font-size: 1.1rem;
            color: #fff;
            position: relative;
        }
       .faq-question::after {
            content: '+';
            font-size: 2rem;
            font-weight: 300;
            color: var(--accent-mint);
            transition: transform 0.3s ease;
        }
       .faq-question.active::after {
            transform: rotate(45deg);
        }
       .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            padding: 0 1.5rem;
            color: var(--text-light-gray);
        }
                .faq-answer p {
            margin: 0;
            padding-bottom: 1.5rem;
        }
         /* --- FOOTER --- */
       .abyss-footer {
            background: linear-gradient(to top, rgba(15, 5, 29, 1), transparent);
            padding: 60px 0 30px;
            margin-top: 50px;
        }
       .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--card-border-light);
            margin-bottom: 30px;
        }
       .footer-column h4 {
            color: #fff;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
       .footer-column ul {
            list-style: none;
        }
       .footer-column ul li {
            margin-bottom: 0.75rem;
        }
       .footer-column ul a {
            color: var(--text-light-gray);
        }
       .footer-column ul a:hover {
            color: var(--accent-mint);
            padding-left: 5px;
        }
       .footer-bottom {
            text-align: center;
            font-size: 0.9rem;
            color: rgba(217, 213, 227, 0.6);
        }
        /* --- Responsive Styles --- */
        @media (max-width: 768px) {
            body { font-size: 15px; }
            section { padding: 60px 0; }
           .aegis-nexus-container { padding: 0 15px; }
            .main-navigation {
                display: none;
                position: absolute;
                top: 74px;
                left: 0;
                width: 100%;
                background: linear-gradient(to bottom, var(--bg-dark-violet), rgba(26, 8, 46, 0.95));
                padding: 20px 0;
            }
           .main-navigation.active { display: block; }
           .main-navigation menu {
                flex-direction: column;
                align-items: center;
            }
           .mobile-nav-toggle { display: block; }
            .hero-content { text-align: center; }
           .hero-subheading { margin: 2rem auto; }
            .article-content-wrapper { padding: 2rem 1.5rem; }
            .faq-hero-section {
                padding-top: 120px;
            }
        }




/* === STYLES FOR BLOG LISTING PAGE === */

.subpage-hero {
    min-height: auto;
    align-items: center;
    text-align: center;
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, rgba(26, 8, 46, 0) 0%, var(--bg-dark-violet) 100%);
}

.subpage-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

#blog-archive {
    padding-top: 0;
    padding-bottom: 80px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0; /* Override crystal-pane padding */
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(152, 255, 219, 0.5);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #000;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.blog-card-content h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 0.95rem;
    color: var(--text-light-gray);
    margin-bottom: 0;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .subpage-hero {
        padding-top: 120px;
        padding-bottom: 40px;
    }
}
