
/* CSS Variables & Base Styles */
        :root {
            --bg-dark-blue: #1a202c;
            --card-dark: #2d3748;
            --accent-coral: #ff7a5c;
            --accent-coral-hover: #ff6a48;
            --text-white: #f7fafc;
            --text-gray: #a0aec0;
            --border-color: #4a5568;

            --font-serif-wide: 'Playfair Display', serif; /* Fallback to serif */
            --font-sans-narrow: 'Roboto Condensed', sans-serif; /* Fallback to sans-serif */
            --font-mono: 'Roboto Mono', monospace; /* Fallback to monospace */

            --section-padding: 6rem 0;
        }

        /* Generic Font Fallbacks to avoid external loads */
        @font-face {
          font-family: 'Playfair Display';
          font-style: normal;
          font-weight: 700;
          src: local('Playfair Display Bold'), local('PlayfairDisplay-Bold'), 
               url(data:application/font-woff;charset=utf-8;base64,dUM...) format('woff'); /* Placeholder*/
        }
        @font-face {
          font-family: 'Roboto Condensed';
          font-style: normal;
          font-weight: 400;
          src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), 
               url(data:application/font-woff;charset=utf-8;base64,dUM...) format('woff'); /* Placeholder*/
        }
        @font-face {
          font-family: 'Roboto Mono';
          font-style: normal;
          font-weight: 400;
          src: local('Roboto Mono'), local('RobotoMono-Regular'), 
               url(data:application/font-woff;charset=utf-8;base64,dUM...) format('woff'); /* Placeholder*/
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-dark-blue);
            color: var(--text-white);
            font-family: var(--font-sans-narrow), 'Helvetica Neue', Arial, sans-serif;
            font-size: 1.1rem;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Layout & Container */
        .page-container {
            width: 90%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .lndsc-section {
            padding: var(--section-padding);
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
             font-family: var(--font-serif-wide), Times, serif;
             font-weight: 700;
             line-height: 1.2;
             color: var(--text-white);
                          letter-spacing: 0.02em;
        }
        
        h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            letter-spacing: 0.05em;
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 2.5rem;
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--accent-coral);
            font-family: var(--font-sans-narrow);
        }

        p {
            margin-bottom: 1.5rem;
            color: var(--text-gray);
        }
        
        a {
            color: var(--accent-coral);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--accent-coral-hover);
        }
        
        .numeric-mono {
            font-family: var(--font-mono), monospace;
            color: var(--text-white);
        }

        /* Header */
        .main-header-wrapper {
            padding: 1.5rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            background-color: rgba(26, 32, 44, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
        }

        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand-logo a {
            font-family: var(--font-serif-wide);
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--text-white);
            text-decoration: none;
        }
        
        .main-nav-toggle {
            font-family: var(--font-sans-narrow);
            cursor: pointer;
            background: none;
            border: 1px solid var(--border-color);
            color: var(--text-white);
            padding: 0.5rem 1rem;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1002;
        }
        
        .main-nav-toggle:hover {
            background-color: var(--accent-coral);
            border-color: var(--accent-coral);
        }
        
        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--bg-dark-blue);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s;
            z-index: 1001;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .nav-overlay-menu {
            list-style: none;
            text-align: center;
        }
        
        .nav-overlay-menu li {
            margin: 2rem 0;
        }

        .nav-overlay-menu a {
            font-family: var(--font-serif-wide);
            font-size: clamp(2rem, 5vw, 3rem);
            color: var(--text-white);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .nav-overlay-menu a:hover {
             color: var(--accent-coral);
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
        }
        
        .hero-content {
            max-width: 800px;
        }

        .hero-content p {
            font-size: 1.25rem;
            max-width: 60ch;
            color: var(--text-gray);
            margin-top: 1.5rem;
            margin-bottom: 2.5rem;
        }
        
        .action-button {
            display: inline-block;
            font-family: var(--font-sans-narrow);
            font-size: 1.2rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-white);
            background-color: var(--accent-coral);
            border: 2px solid var(--accent-coral);
            padding: 1rem 2.5rem;
            text-decoration: none;
            transition: all 0.3s ease-out;
        }

        .action-button:hover {
            background-color: transparent;
            color: var(--accent-coral);
        }

        /* How it Works Section */
        .steps-container {
            border-left: 2px solid var(--border-color);
            padding-left: 2rem;
        }

        .step-item {
            position: relative;
            margin-bottom: 4rem;
        }
        
        .step-item:last-child {
            margin-bottom: 0;
        }

        .step-item::before {
            content: '';
            position: absolute;
            left: -2.75rem;
            top: 0;
            width: 1.5rem;
            height: 1.5rem;
            background-color: var(--bg-dark-blue);
            border: 2px solid var(--accent-coral);
            transform: rotate(45deg);
        }

        .step-item h3 {
            margin-bottom: 0.5rem;
        }

        /* Article Section */
        .article-leader {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .article-leader .lead-text {
            font-family: var(--font-serif-wide);
            font-size: 1.5rem;
            color: var(--text-gray);
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }
        
        .article-leader .sub-lead {
            font-size: 1.2rem;
            max-width: 70ch;
            margin: 0 auto;
            color: var(--text-gray);
        }
        
        .article-content h2 {
            border-top: 1px solid var(--border-color);
            padding-top: 2rem;
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            font-size: clamp(1.8rem, 3vw, 2.5rem);
        }

        .article-content p {
            color: var(--text-gray);
            margin-bottom: 1.5rem;
        }
        
        .article-content p:last-child {
            margin-bottom: 0;
        }

        .article-content b, .article-content strong {
            color: var(--text-white);
        }
        
        .article-content ul, .article-content ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .article-content li {
            margin-bottom: 0.5rem;
            color: var(--text-gray);
        }

        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            border: 1px solid var(--border-color);
        }

        .article-content th, .article-content td {
            text-align: left;
            padding: 1rem;
            border: 1px solid var(--border-color);
        }

        .article-content th {
            background-color: var(--card-dark);
            font-family: var(--font-sans-narrow);
            color: var(--text-white);
        }
        
        .article-content img {
            width: 100%;
            height: auto;
            display: block;
            margin: 2rem 0;
        }

        /* Benefits Section */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2px;
            background-color: var(--border-color);
            border: 2px solid var(--border-color);
        }

        .benefit-card {
            background-color: var(--card-dark);
            padding: 2.5rem;
            transition: background-color 0.3s ease;
        }
        
        .benefit-card:hover {
            background-color: #3a475a;
        }

        .benefit-card .icon-wrapper {
            margin-bottom: 1.5rem;
        }

        .benefit-card .icon-wrapper svg {
            width: 48px;
            height: 48px;
            color: var(--accent-coral);
        }
        
        .benefit-card h3 {
            font-family: var(--font-sans-narrow);
            font-size: 1.3rem;
            color: var(--text-white);
        }

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

        .testimonial-card {
            background-color: var(--card-dark);
            padding: 2rem;
            display: flex;
            flex-direction: column;
        }

        .testimonial-quote {
            flex-grow: 1;
            font-family: var(--font-serif-wide);
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            border-left: 3px solid var(--accent-coral);
            padding-left: 1.5rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 50px;
            height: 50px;
            margin-right: 1rem;
        }
        
        .author-info .name {
            font-weight: bold;
            color: var(--text-white);
        }
        
        .author-info .title {
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        
        /* FAQ Section */
        .faq-item {
             border-bottom: 1px solid var(--border-color);
        }
        
        .faq-question {
            padding: 1.5rem 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: var(--font-serif-wide);
            font-size: 1.4rem;
        }
        
        .faq-question:hover {
            color: var(--accent-coral);
        }
        
        .faq-toggle {
            transition: transform 0.3s ease;
            font-size: 1.5rem;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
        }
        
        .faq-answer p {
            padding-bottom: 1.5rem;
            margin-bottom: 0;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px; /* Adjust as needed */
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        

        /* What's Included Section */
        #what-is-included {
            background-color: var(--card-dark);
        }
        .included-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            list-style: none;
        }
        
        .included-item {
            display: flex;
            align-items: flex-start;
        }

        .included-item svg {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            color: var(--accent-coral);
            margin-right: 1rem;
            margin-top: 5px;
        }

        /* Footer */
        .main-footer {
            background-color: #11151c;
            padding: 4rem 0;
            font-size: 0.9rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 3rem;
        }
        
        .footer-column h4 {
            font-family: var(--font-sans-narrow);
            font-size: 1.1rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            color: var(--text-white);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.75rem;
        }
        
        .footer-column a {
            color: var(--text-gray);
        }
        .footer-column a:hover {
            color: var(--text-white);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            color: var(--text-gray);
        }

        /* Animation */
        .anim-target {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .anim-target.is-visible {
            opacity: 1;
            transform: translateY(0);
        }


.page-header-section {
            padding-top: 150px;
            padding-bottom: 4rem;
            background-color: var(--card-dark);
            border-bottom: 1px solid var(--border-color);
        }
        .page-header-section h1 {
            margin-bottom: 1rem;
        }
        .page-header-section p {
            font-size: 1.2rem;
            max-width: 70ch;
            color: var(--text-gray);
        }
        #faq-list h2 {
            text-align: center;
        }