
/* --- CSS Reset & Base Styles --- */
        :root {
            --dark-surface: #121212;
            --dark-element: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --gradient-start: #DA00FF;
            --gradient-end: #FF00C7;
            --accent-gradient: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            --font-headings: 'Helvetica Neue', 'Arial', sans-serif;
            --font-body: 'Georgia', 'Times New Roman', serif;
            --scroll-behavior: smooth;
        }

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

        html {
            font-size: 16px;
            scroll-behavior: var(--scroll-behavior);
        }

        body {
            background-color: var(--dark-surface);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-headings);
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }
        
        .animated-header {
            font-family: var(--font-headings);
            font-weight: 100; /* Start thin */
            transition: font-weight 0.3s ease;
            font-variation-settings: 'wght' 100;
        }

        p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        a {
            color: var(--text-primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        @media (max-width: 768px) {
            section {
                padding: 4rem 1rem;
            }
        }

        /* --- Animations on Scroll --- */
        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .reveal-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Header & Navigation --- */
        .cypher-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 2rem;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(18, 18, 18, 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(--font-headings);
            font-weight: 800;
            font-size: 1.5rem;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .cypher-nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        .cypher-nav a {
            font-family: var(--font-headings);
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .cypher-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent-gradient);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .cypher-nav a:hover::after, .cypher-nav a:focus::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        .mobile-nav-toggle {
            display: none;
            cursor: pointer;
            z-index: 1001;
        }

        @media (max-width: 768px) {
            .cypher-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: var(--dark-element);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease-in-out;
            }
            .cypher-nav.is-open {
                right: 0;
            }
            .cypher-nav ul {
                flex-direction: column;
                text-align: center;
            }
            .mobile-nav-toggle {
                display: block;
                /* Simple hamburger icon */
                width: 30px;
                height: 22px;
                position: relative;
            }
            .mobile-nav-toggle span {
                display: block;
                position: absolute;
                height: 3px;
                width: 100%;
                background: var(--text-primary);
                border-radius: 3px;
                left: 0;
                transition: all 0.3s ease-in-out;
            }
            .mobile-nav-toggle span:nth-child(1) { top: 0px; }
            .mobile-nav-toggle span:nth-child(2) { top: 9px; }
            .mobile-nav-toggle span:nth-child(3) { top: 18px; }
        }

        /* --- Hero Section --- */
        .hero-vortex {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 8rem;
            position: relative;
            overflow: hidden;
        }

        .hero-vortex::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 120vw;
            height: 120vh;
            background: radial-gradient(circle, rgba(126, 0, 142, 0.15) 0%, rgba(18, 18, 18, 0) 60%);
            transform: translate(-50%, -50%);
            animation: pulse 10s infinite ease-in-out;
        }

        @keyframes pulse {
            0% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.1); }
            100% { transform: translate(-50%, -50%) scale(1); }
        }

        .hero-content {
            z-index: 2;
            max-width: 900px;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 1.5rem;
        }

        .hero-content h1 span {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .hero-content p {
            font-size: 1.25rem;
            max-width: 600px;
            margin: 0 auto 2.5rem;
            color: var(--text-secondary);
        }

        .pulse-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            font-family: var(--font-headings);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            background: var(--accent-gradient);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            z-index: 1;
        }

        .pulse-button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 25px var(--gradient-end);
        }

        .urgency-trigger {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
            opacity: 0.8;
        }

        /* --- Section: Process Flow --- */
        .process-flow-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: center;
        }
        
        .section-header { text-align: center; margin-bottom: 4rem; }
        .section-header h2 { font-size: 2.5rem; }
        .section-header p { max-width: 600px; margin: 0 auto; color: var(--text-secondary); }

        .flow-step {
            background: var(--dark-element);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .step-number {
            position: absolute;
            top: -1.5rem;
            left: 50%;
            transform: translateX(-50%);
            width: 3rem;
            height: 3rem;
            background: var(--accent-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-headings);
            font-weight: 700;
            font-size: 1.2rem;
            border: 4px solid var(--dark-surface);
        }

        .flow-step h3 {
            margin-top: 1.5rem;
            font-size: 1.5rem;
            color: var(--text-primary);
        }

        /* --- Section: Product Composition --- */
        .in-the-box-grid {
            background: var(--dark-element);
            border-radius: 12px;
            padding: 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        
        .box-list ul {
            list-style: none;
            padding-left: 0;
        }

        .box-list li {
            font-family: var(--font-headings);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .box-list li svg {
            width: 24px;
            height: 24px;
            margin-right: 1rem;
            fill: url(#gradient-icon);
        }

        @media (max-width: 768px) {
            .in-the-box-grid {
                grid-template-columns: 1fr;
                padding: 2rem;
            }
            .product-visual { order: -1; }
        }
        
        .product-visual-placeholder {
            width: 100%;
            height: 300px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px dashed rgba(255,255,255,0.2);
            color: var(--text-secondary);
        }

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

        .benefit-card {
            background-color: var(--dark-element);
            border-radius: 8px;
            padding: 2rem;
            border-left: 4px solid;
            border-image-slice: 1;
            border-image-source: var(--accent-gradient);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .benefit-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 1.5rem;
            stroke-width: 1.5;
        }

        .benefit-card h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
        }

        /* --- FAQ Section --- */
        .faq-item {
            background: var(--dark-element);
            border-radius: 8px;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-family: var(--font-headings);
            font-size: 1.2rem;
            padding: 1.5rem;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-icon {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
        }
        
        .faq-answer-content {
            padding: 0 1.5rem 1.5rem 1.5rem;
        }
        
        .faq-answer-content p {
            margin-bottom: 1rem;
        }

        /* --- Social Proof / Testimonials --- */
        .testimonial-carousel {
            display: grid;
            grid-auto-flow: column;
            grid-auto-columns: 80%;
            gap: 1.5rem;
            overflow-x: auto;
            -ms-overflow-style: none; /* IE and Edge */
            scrollbar-width: none; /* Firefox */
            padding-bottom: 2rem;
            scroll-snap-type: x mandatory;
        }
        
        .testimonial-carousel::-webkit-scrollbar {
            display: none;
        }

        .testimonial-card {
            background: var(--dark-element);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.1);
            scroll-snap-align: center;
            display: flex;
            flex-direction: column;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
            border: 2px solid var(--gradient-end);
        }

        .testimonial-author h4 { margin: 0; }
        .testimonial-author span { color: var(--text-secondary); font-size: 0.9rem; }
        .testimonial-body { flex-grow: 1; }
        
        @media(min-width: 768px) {
            .testimonial-carousel {
                grid-auto-columns: calc(50% - 1rem);
            }
        }
        @media(min-width: 1024px) {
            .testimonial-carousel {
                grid-auto-columns: calc(33.333% - 1rem);
            }
        }

        /* --- Article Section --- */
        .article-container {
            background: var(--dark-element);
            padding: 3rem;
            border-radius: 12px;
        }

        .article-lead {
            font-size: 1.25rem;
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 3rem;
            font-family: var(--font-headings);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .article-content h2 {
            font-size: 1.8rem;
            color: var(--text-primary);
            margin-top: 2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid;
            border-image-slice: 1;
            border-image-source: var(--accent-gradient);
            display: inline-block;
        }
        
        .article-content p, .article-content li {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .article-content ul, .article-content ol {
            margin-left: 1.5rem;
            margin-bottom: 1rem;
        }

        .article-content img {
            width: 100%;
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 1.5rem 0;
            object-fit: cover;
        }

        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            text-align: left;
        }

        .article-content th, .article-content td {
            padding: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .article-content th {
            background: var(--accent-gradient);
            color: var(--text-primary);
            font-family: var(--font-headings);
        }
        
        .article-content td {
             background-color: #2a2a2a;
        }

        /* --- Footer --- */
        .cypher-footer {
            background-color: var(--dark-element);
            color: var(--text-secondary);
            padding: 4rem 2rem 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 3rem;
            margin-bottom: 2rem;
        }

        .footer-column h4 {
            font-family: var(--font-headings);
            font-size: 1.1rem;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            position: relative;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 30px;
            height: 2px;
            background: var(--accent-gradient);
        }

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

        .footer-column li {
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            color: var(--text-secondary);
            transition: color 0.3s ease, padding-left 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--text-primary);
            padding-left: 5px;
        }
        
        .footer-bottom {
            text-align: center;
            font-size: 0.9rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-bottom p {
            margin-bottom: 0;
        }





/* --- Blog Listing Section --- */
.blog-listing {
    padding-top: 0;
}

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

.blog-card {
    background: var(--dark-element);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 0, 199, 0.2);
}

.blog-card > a {
    display: block;
    height: 200px;
}

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

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

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

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-headings);
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--text-primary);
}

.blog-card h3 a:hover {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-card p {
    color: var(--text-secondary);
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.read-more-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: transparent;
    border-width: 2px;
    border-style: solid;
    border-image-slice: 1;
    border-image-source: var(--accent-gradient);
    color: var(--text-primary);
    border-radius: 50px;
    text-align: center;
    align-self: flex-start;
    font-weight: 600;
    font-family: var(--font-headings);
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: var(--accent-gradient);
    color: var(--text-primary);
    box-shadow: 0 0 15px var(--gradient-end);
    border-image-source: none;
    border-color: transparent;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .blog-listing {
        padding: 4rem 1rem;
        padding-top: 0;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
