
:root {
            --bg-deep-burgundy: #2c0e19;
            --card-burgundy: #3a1523;
            --header-gold: #D4AF37;
            --text-rose-gray: #D1C4C4;
            --cta-accent: #e44d87;
            --font-header: 'Georgia', 'Times New Roman', serif;
            --font-body: 'Arial', 'Helvetica', sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-deep-burgundy);
            color: var(--text-rose-gray);
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .structure-capsule {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
            overflow: hidden;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-header);
            color: var(--header-gold);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.7rem; }
        
        p {
            margin-bottom: 1rem;
            color: var(--text-rose-gray);
        }

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

        a:hover {
            color: var(--header-gold);
        }

        .primary-cta {
            display: inline-block;
            background: linear-gradient(45deg, var(--cta-accent), #c13a6d);
            color: #fff;
            font-family: var(--font-body);
            font-weight: bold;
            font-size: 1.1rem;
            padding: 15px 35px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(228, 77, 135, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .primary-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(228, 77, 135, 0.6);
            color: #fff;
        }

        /* Header */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            z-index: 1000;
            background: rgba(44, 14, 25, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

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

        .logo-sphere {
            font-family: var(--font-header);
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--header-gold);
            letter-spacing: 1px;
        }
        
        .main-navigation ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        .main-navigation a {
            font-family: var(--font-body);
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            color: var(--text-rose-gray);
            padding: 5px 0;
            position: relative;
        }
        
        .main-navigation a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--header-gold);
            transition: width 0.3s ease;
        }

        .main-navigation a:hover::after {
            width: 100%;
        }

        .main-navigation a:hover {
            color: #fff;
        }

        /* Hero Section */
        #hero {
            padding-top: 200px;
            padding-bottom: 150px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: radial-gradient(circle at top right, rgba(228, 77, 135, 0.1), transparent 40%),
                        radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.1), transparent 50%);
        }

        .hero-content {
            max-width: 800px;
            text-align: center;
            margin: 0 auto;
        }
        
        .hero-content h1 {
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
        }

        .hero-content p {
            font-size: 1.2rem;
            max-width: 650px;
            margin: 25px auto 40px auto;
        }

        /* Benefits Section */
        .benefit-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .aether-card {
            background-color: var(--card-burgundy);
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .aether-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .aether-card svg {
            width: 50px;
            height: 50px;
            margin-bottom: 20px;
            fill: var(--header-gold);
        }

        .aether-card h3 {
            margin-bottom: 10px;
        }

        /* How It Works Section */
        .chronos-line {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .chronos-line::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: rgba(212, 175, 55, 0.2);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
            border-radius: 2px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: var(--bg-deep-burgundy);
            border: 4px solid var(--header-gold);
            top: 25px;
            border-radius: 50%;
            z-index: 1;
        }
        
        .timeline-left {
            left: 0;
            padding-right: 70px;
            text-align: right;
        }

        .timeline-right {
            left: 50%;
            padding-left: 70px;
        }
        
        .timeline-right::after {
            left: -10px;
        }

        .timeline-item-content {
            padding: 20px 30px;
            background-color: var(--card-burgundy);
            position: relative;
            border-radius: 8px;
        }

        /* Testimonials Section */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .testimonial-capsule {
            background-color: var(--card-burgundy);
            padding: 30px;
            border-radius: 10px;
            border-left: 5px solid var(--header-gold);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .testimonial-author-name {
            font-weight: bold;
            color: var(--header-gold);
        }

        /* Product Composition Section */
        .product-composition-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
            align-items: center;
        }
        
        .product-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            background: var(--card-burgundy);
            border-radius: 15px;
            padding: 50px;
        }
        
        .product-visual svg {
            width: 150px;
            height: auto;
        }

        .product-list ul {
            list-style: none;
        }

        .product-list li {
            font-size: 1.1rem;
            padding: 10px 0 10px 35px;
            position: relative;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .product-list li::before {
            content: '✓';
            color: var(--header-gold);
            position: absolute;
            left: 0;
            font-size: 1.5rem;
        }


        /* Article Section */
        .article-section {
            background-color: var(--card-burgundy);
            padding: 60px 0;
        }
        
        .article-intro {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .article-intro .section-title {
            font-family: var(--font-header);
            font-size: 1.2rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--header-gold);
            margin-bottom: 5px;
        }
        
        .article-intro .section-subtitle {
            font-size: 1.3rem;
        }

        article {
            background: transparent;
            padding: 20px;
        }

        article h2 {
            font-size: 2.2rem;
            border-bottom: 2px solid rgba(212, 175, 55, 0.3);
            padding-bottom: 10px;
            margin-top: 40px;
            margin-bottom: 25px;
        }

        article p, article ul, article ol, article table {
            margin-bottom: 20px;
            font-size: 1.1em;
            line-height: 1.7;
        }
        
        article ul, article ol {
            padding-left: 40px;
        }
        
        article b, article strong {
            color: #e8c67c;
        }
        
        article img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 20px 0;
        }
        
        article table {
            width: 100%;
            border-collapse: collapse;
        }
        
        article th, article td {
            padding: 12px 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: left;
        }
        
        article th {
            background-color: rgba(212, 175, 55, 0.1);
            font-family: var(--font-header);
            color: var(--header-gold);
        }

        /* FAQ Section */
        .faq-item {
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            padding: 20px 0;
        }

        .faq-question {
            font-family: var(--font-header);
            font-size: 1.3rem;
            color: var(--text-rose-gray);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s;
        }
        
        .faq-question:hover {
            color: #fff;
        }

        .faq-icon {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--header-gold);
            transition: transform 0.4s ease;
            width: 25px;
            height: 25px;
            text-align: center;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .faq-answer p {
            padding-top: 15px;
            color: #b0a2a2;
        }
        
        .faq-item.is-open .faq-answer {
            max-height: 300px;
        }
        
        .faq-item.is-open .faq-icon {
            transform: rotate(45deg);
        }

        /* Footer */
        .site-footer {
            background-color: #1a0810;
            padding: 60px 0;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 50px;
        }
        
        .footer-about .logo-sphere {
           font-size: 2.2rem;
           margin-bottom: 15px;
           display: block;
        }
        
        .footer-links-group h4 {
            color: var(--header-gold);
            font-size: 1.2rem;
            margin-bottom: 20px;
        }       

        .footer-links-group ul {
            list-style: none;
        }
        
        .footer-links-group li {
            margin-bottom: 10px;
        }

        .footer-links-group a {
            color: var(--text-rose-gray);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            font-size: 0.9rem;
            color: #a08f8f;
        }
        
        /* Animations */
        .revealable {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .revealable.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2rem; }

            .chronos-line::after { display: none; }
            .timeline-item, .timeline-left, .timeline-right { width: 100%; left: 0; padding-left: 20px; padding-right: 20px; text-align: left; }
            .timeline-item::after { left: -10px; }

            .product-composition-grid { grid-template-columns: 1fr; }
            .product-visual { margin-bottom: 30px; }
            
            .footer-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            #hero { padding-top: 150px; padding-bottom: 100px; text-align: center; }
            .hero-content {
                max-width: 100%;
            }
            .header-grid { flex-direction: column; gap: 15px; }
            .benefit-grid { grid-template-columns: 1fr; }
            .testimonial-grid { grid-template-columns: 1fr; }
            h1 { font-size: 2.2rem; }
        }









#blog-list-section {
    background-color: var(--bg-deep-burgundy);
    padding: 80px 0;
}
#blog-list-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.blog-post-card {
    background-color: var(--card-burgundy);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}
.blog-post-image-link {
    display: block;
    overflow: hidden;
}
.blog-post-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.blog-post-card:hover img {
    transform: scale(1.05);
}
.blog-post-content {
    padding: 25px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-post-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}
.blog-post-content h3 a {
    color: var(--header-gold);
}
.blog-post-content h3 a:hover {
    text-decoration: underline;
    text-decoration-color: var(--cta-accent);
}
.blog-post-content p {
    font-size: 1rem;
    color: var(--text-rose-gray);
    flex-grow: 1;
    margin-bottom: 25px;
}
.read-more-link {
    color: var(--cta-accent);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    align-self: flex-start;
    transition: all 0.3s ease;
}
.read-more-link:hover {
    color: #fff;
    transform: translateX(5px);
}
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .blog-post-content h3 {
        font-size: 1.3rem;
    }
    .blog-post-card img {
        height: 200px;
    }
}
