/* 
   DXN Gano Massage Oil - Premium Wellness Style
   Design Foundation: Deep Blue (#01273b), Maroon, Gold, Beige
*/

:root {
    --color-bg: #fdfaf5;
    /* Soft Cream */
    --color-bg-dark: #f4efe6;
    /* Warm Beige */
    --color-primary: #802b2b;
    /* Refined Deep Maroon */
    --color-accent: #c4a04d;
    /* Luxury Muted Gold */
    --color-accent-soft: rgba(196, 160, 77, 0.15);
    --color-text: #2d2926;
    /* Dark Charcoal for readability */
    --color-text-dark: #1a1510;
    --color-text-muted: #6b665f;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --font-script: 'Alex Brush', cursive;
    /* Luxury Script */

    --transition-slow: 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    --transition-med: 0.4s ease;

    --container-width: 1200px;
}

/* Background Particles Container */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.2;
    pointer-events: none;
}

/* Cinematic Section Overlay */
.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-bg) 0%, transparent 15%, transparent 85%, var(--color-bg) 100%);
    pointer-events: none;
    z-index: 5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Refinement */
h1,
h2,
h3,
.serif {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--color-primary);
}

.script {
    font-family: var(--font-script);
    font-weight: 400;
    font-size: 1.4em;
    color: var(--color-accent);
}

h1 {
    font-size: clamp(3.5rem, 12vw, 7.5rem);
    line-height: 0.95;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
}

p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

.accent {
    color: var(--color-accent);
}

.text-center {
    text-align: center;
}

/* Layout Components */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
}

.section {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg);
}

.bg-warm {
    background-color: var(--color-bg-dark);
}

.text-white {
    color: white;
}

.text-white p {
    color: rgba(255, 255, 255, 0.7);
}

.text-white h1,
.text-white h2,
.text-white h3 {
    color: white;
}

.grid {
    display: grid;
    gap: 3rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 4rem 0;
    }
}

.align-center {
    align-items: center;
}

/* Scroll Progress */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    width: 0%;
    z-index: 1000;
}

/* Utility: Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-med);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #a00000);
    color: white;
    box-shadow: 0 10px 20px rgba(128, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(128, 0, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-outline:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

.btn-sm {
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
}

/* Sticky Header */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    padding: 1.2rem 0;
    background: rgba(253, 250, 245, 0.7);
    /* Match --color-bg with alpha */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(196, 160, 77, 0.1);
    transition: var(--transition-med);
}

.header-nav.scrolled {
    padding: 0.8rem 0;
    background: rgba(253, 250, 245, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.container-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    /* Adjusted height for visibility */
    width: auto;
    display: block;
    transition: var(--transition-med);
}

.header-nav.scrolled .logo-img {
    height: 40px;
    /* Smaller on scroll */
}

/* 1. Hero Section Refined */
#hero {
    min-height: calc(100vh - 80px);
    /* Adjust for header */
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 70% 50%, #fff7ed 0%, var(--color-bg) 100%);
    padding: 2rem 0;
}

.glow-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(196, 160, 77, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

#hero .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    text-align: left;
    gap: 2rem;
    z-index: 2;
    width: 100%;
}

.product-reveal {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 2rem 0;
}

.hero-image {
    max-width: 260px;
    height: auto;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.15));
    animation: floating-gentle 8s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes floating-gentle {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Benefit Indicators - Adjusted for 2-column */
.benefit-indicator {
    position: absolute;
    background: white;
    padding: 0.6rem 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 10;
    white-space: nowrap;
    transition: var(--transition-med);
    border: 1px solid rgba(196, 160, 77, 0.15);
    font-size: 0.85rem;
}

.benefit-indicator:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Reputation for balanced surround */
.benefit-1 {
    top: 15%;
    left: 0%;
    transform: translateX(-50%);
}

.benefit-2 {
    bottom: 20%;
    left: 5%;
    transform: translateX(-50%);
}

.benefit-3 {
    top: 25%;
    right: 0%;
    transform: translateX(50%);
}

.benefit-4 {
    bottom: 15%;
    right: 10%;
    transform: translateX(50%);
}

.benefit-indicator .icon-dot {
    width: 28px;
    height: 28px;
    background: var(--color-bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 0.9rem;
}

.headline-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero-script {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: -15px;
    position: relative;
    z-index: 3;
}

.tagline {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.subheadline {
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 480px;
    margin: 1rem 0 1.5rem;
    color: var(--color-text-muted);
}

@media (max-width: 991px) {
    #hero .content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-reveal {
        order: -1;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 11px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Sections Variation */
.light-section {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

.light-section .section-title {
    color: var(--color-text-dark);
}

/* Biology Section Refined */
#biology {
    background-color: var(--color-bg-dark);
}

.biology-split-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 991px) {
    .biology-split-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.section-header-left {
    text-align: left;
}

@media (max-width: 991px) {
    .section-header-left {
        text-align: center;
        margin-bottom: 3rem;
    }
}

.lead-text {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    color: var(--color-text-muted);
}

.biology-content {
    gap: 1.5rem;
}

.biology-content .bio-card {
    padding: 3.5rem 2.5rem;
    background: white;
    border-radius: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.02);
    transition: var(--transition-med);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.biology-content .bio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--color-accent);
    opacity: 0;
    transition: var(--transition-med);
}

.biology-content .bio-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.category-tag {
    display: block;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.biology-content .bio-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.biology-content .bio-card p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.card-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.card-footer .detail {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-style: italic;
}

.biology-content .bio-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

/* Carrier Science - Molecular Dashboard */
#carrier-science {
    background: radial-gradient(circle at center, #ffffff 0%, var(--color-bg) 100%);
    overflow: hidden;
    padding: 6rem 0;
}

.dashboard-header {
    margin-bottom: 4rem;
}

.molecule-dashboard {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.molecule-center {
    position: relative;
    z-index: 5;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.molecule-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.12));
    animation: float-slow 10s ease-in-out infinite;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    opacity: 0;
    animation: pulse-border 4s infinite;
}

@keyframes pulse-border {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Floating Data Nodes */
.data-node {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 160, 77, 0.2);
    padding: 1.5rem;
    border-radius: 24px;
    display: flex;
    gap: 1.2rem;
    max-width: 320px;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.data-node:hover {
    transform: scale(1.05) translateY(-5px);
    background: white;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--color-accent);
}

.node-icon {
    width: 48px;
    height: 48px;
    background: var(--color-bg-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.node-content h4 {
    color: var(--color-primary);
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.node-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Positioning Nodes */
.node-1 {
    top: 10%;
    right: 5%;
}

.node-2 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.node-3 {
    bottom: 5%;
    right: 10%;
}

@media (max-width: 991px) {
    .molecule-dashboard {
        height: auto;
        flex-direction: column;
        gap: 2rem;
    }

    .molecule-center {
        width: 250px;
        height: 250px;
        margin-bottom: 2rem;
    }

    .data-node {
        position: static;
        transform: none !important;
        max-width: 100%;
    }
}

/* Extraction Section - Interactive Hub Perfected */
#extraction {
    background: #ffffff;
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.background-decor-script {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
    font-family: var(--font-script);
    font-size: 25rem;
    color: rgba(196, 160, 77, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    user-select: none;
}

.infusion-hub-explorer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 5rem;
    position: relative;
    z-index: 5;
}

.hub-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The Core - More Glassmorphic */
.hub-core {
    position: relative;
    width: 280px;
    /* Reduced from 320px */
    height: 280px;
    background: rgba(253, 250, 245, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(196, 160, 77, 0.1);
    border-radius: 45% 55% 63% 37% / 41% 36% 64% 59%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: core-morph 12s ease-in-out infinite alternate;
    box-shadow:
        inset 0 0 50px rgba(196, 160, 77, 0.05),
        0 40px 100px rgba(0, 0, 0, 0.03);
}

@keyframes core-morph {
    0% {
        border-radius: 45% 55% 63% 37% / 41% 36% 64% 59%;
        transform: rotate(0deg) scale(1);
    }

    50% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        transform: rotate(5deg) scale(1.05);
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(-5deg) scale(1);
    }
}

.core-liquid {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--color-accent) 0%, transparent 70%);
    opacity: 0.15;
    border-radius: inherit;
    animation: liquid-swirl 8s linear infinite;
}

@keyframes liquid-swirl {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.core-label {
    text-align: center;
    z-index: 5;
}

.active-phase-num {
    display: block;
    font-size: 4rem;
    font-family: var(--font-serif);
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.active-phase-name {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-accent);
    font-weight: 700;
}

/* Nodes - Symmetrical Circular Arrangement */
.hub-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

.hub-node {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 110;
    cursor: pointer;
}

/* Perfect Triangle Layout */
.hub-node[style*="--i: 0;"] {
    transform: translate(-50%, -50%) translate(0, -220px);
}

.hub-node[style*="--i: 1;"] {
    transform: translate(-50%, -50%) translate(-210px, 110px);
}

.hub-node[style*="--i: 2;"] {
    transform: translate(-50%, -50%) translate(210px, 110px);
}

.node-trigger {
    width: 70px;
    height: 70px;
    background: white;
    border: 1px solid rgba(196, 160, 77, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.hub-node.active .node-trigger,
.hub-node:hover .node-trigger {
    background: var(--color-primary);
    color: white;
    transform: scale(1.15);
    border-color: var(--color-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.node-sonar {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    z-index: -1;
    animation: node-ping 4s infinite;
}

@keyframes node-ping {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.node-info {
    position: absolute;
    left: 50%;
    bottom: 85px;
    transform: translateX(-50%) translateY(10px);
    width: 250px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    text-align: center;
    background: white;
    padding: 1.2rem;
    border-radius: 15px;
    border: 1px solid rgba(196, 160, 77, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.hub-node.active .node-info,
.hub-node:hover .node-info {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.node-info h3 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 0.2rem;
}

.node-info p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.3;
}

/* Content Reveal Perfected */
.hub-content-reveal {
    background: var(--color-bg-dark);
    padding: 4rem;
    border-radius: 50px;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    border: 1px solid rgba(196, 160, 77, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.hub-content-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, transparent, var(--color-accent), transparent);
}

.phase-detail {
    position: absolute;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    width: 100%;
    /* Use full available width */
}

.phase-detail.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    position: relative;
}

.phase-detail .tagline {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 700;
}

.phase-detail h2 {
    font-size: 3.5rem;
    font-family: var(--font-serif);
    color: var(--color-primary);
    margin: 1.5rem 0;
    line-height: 1.1;
}

.phase-detail p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    text-align: left;
    /* Paragraphic alignment */
}

@media (max-width: 1200px) {
    .infusion-hub-explorer {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .hub-container {
        height: 500px;
    }

    .hub-nodes {
        width: 100%;
        height: 100%;
    }

    .hub-node[style*="--i: 0;"] {
        transform: translate(-50%, -50%) translate(0, -180px);
    }

    .hub-node[style*="--i: 1;"] {
        transform: translate(-50%, -50%) translate(-160px, 90px);
    }

    .hub-node[style*="--i: 2;"] {
        transform: translate(-50%, -50%) translate(160px, 90px);
    }
}

@media (max-width: 768px) {
    .hub-core {
        width: 220px;
        height: 220px;
    }

    .active-phase-num {
        font-size: 3rem;
    }

    .node-trigger {
        width: 55px;
        height: 55px;
        font-size: 0.9rem;
    }

    .hub-node[style*="--i: 0;"] {
        transform: translate(-50%, -50%) translate(0, -140px);
    }

    .hub-node[style*="--i: 1;"] {
        transform: translate(-50%, -50%) translate(-120px, 80px);
    }

    .hub-node[style*="--i: 2;"] {
        transform: translate(-50%, -50%) translate(120px, 80px);
    }

    .phase-detail h2 {
        font-size: 2.2rem;
    }

    .phase-detail p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hub-content-reveal {
        padding: 2.5rem 1.5rem;
        min-height: 300px;
    }

    .node-info {
        width: 180px;
        bottom: 65px;
        padding: 1rem;
    }

    .node-info h3 {
        font-size: 0.8rem;
    }

    .node-info p {
        font-size: 0.7rem;
    }
}

/* Potency Section: Thermal Intelligence Dashboard */
.thermal-dashboard {
    background: #0a0a0a;
    /* Dark thermal background */
    padding: 12rem 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.background-thermal-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(128, 0, 0, 0.2) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.thermal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

.thermal-visual-panel {
    position: relative;
    display: flex;
    justify-content: center;
}

.thermal-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 550px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.human-silhouette {
    position: relative;
    width: 200px;
    height: 400px;
    opacity: 0.8;
}

.body-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.body-path {
    transition: fill 1s ease;
}

/* Hotspots */
.thermal-hotspot {
    position: absolute;
    width: 40px;
    /* Larger hit area */
    height: 40px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Internal dot for visual center */
.thermal-hotspot::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px var(--color-accent);
    z-index: 2;
}

.hotspot-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    border-radius: 50%;
    animation: hotspot-ping 2s infinite;
    pointer-events: none;
    /* Prevent flickering */
}

@keyframes hotspot-ping {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

/* Scanner Line */
.thermal-scanner {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(128, 0, 0, 0.3), var(--color-accent), transparent);
    z-index: 10;
    pointer-events: none;
    animation: scan-move 4s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes scan-move {
    0% {
        top: -20%;
    }

    50% {
        top: 90%;
    }

    100% {
        top: -20%;
    }
}

/* Content Panel */
.dashboard-header {
    margin-bottom: 3rem;
}

.dashboard-header .tagline {
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 1rem;
}

.dashboard-header .section-title {
    color: white;
    font-size: 3.5rem;
}

.intelligence-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    min-height: 450px;
    overflow: hidden;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.thermal-status {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
}

.status-indicator.live {
    width: 8px;
    height: 8px;
    background: #ff3b3b;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff3b3b;
    animation: status-pulse 2s infinite;
}

@keyframes status-pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.thermal-analysis {
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    width: calc(100% - 6rem);
    left: 3rem;
}

.thermal-analysis.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    position: relative;
    width: 100%;
    left: 0;
}

.thermal-analysis h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.thermal-analysis p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.thermal-stats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thermal-stats li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.stat-value {
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.potency-cta {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 991px) {
    .thermal-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .thermal-container {
        height: 480px;
    }

    .dashboard-header .section-title {
        font-size: 2.5rem;
    }

    .intelligence-card {
        padding: 2.5rem 1.5rem;
    }

    .thermal-analysis {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 768px) {
    .thermal-dashboard {
        padding: 8rem 0;
    }

    .dashboard-header .section-title {
        font-size: 2.2rem;
    }

    .intelligence-card {
        padding: 2rem 1.2rem;
        min-height: 500px;
    }

    .potency-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

/* Protocol Section: Protective Intelligence Biosphere */
.protection-dashboard {
    background: #fdfaf5;
    /* Clean light theme */
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.biosphere-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(196, 160, 77, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.biosphere-explorer {
    position: relative;
    height: 700px;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.biosphere-core {
    position: relative;
    width: 300px;
    height: 300px;
    z-index: 10;
}

.smart-drop {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.1) 0%, rgba(196, 160, 77, 0.2) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    overflow: hidden;
    animation: drop-morph 8s ease-in-out infinite alternate;
    box-shadow: inset 0 20px 40px rgba(255, 255, 255, 0.5), 0 20px 50px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.drop-core {
    width: 60px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.8;
    box-shadow: 0 0 30px var(--color-primary);
}

.shield-aura {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    border: 1px solid rgba(196, 160, 77, 0.2);
    border-radius: 50%;
    animation: shield-ripple 4s linear infinite;
}

@keyframes shield-ripple {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes drop-morph {
    0% {
        border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    }

    100% {
        border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
    }
}

.defense-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.defense-node {
    position: absolute;
    width: 250px;
    padding: 2rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(196, 160, 77, 0.1);
    pointer-events: all;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* Strategic Positioning around the core with floating animations */
.defense-node[style*="--i:0;"] {
    top: 20%;
    left: 30%;
    animation: float-0 6s ease-in-out infinite;
}

.defense-node[style*="--i:1;"] {
    top: 20%;
    left: 70%;
    animation: float-1 7s ease-in-out infinite;
}

.defense-node[style*="--i:2;"] {
    top: 70%;
    left: 25%;
    animation: float-2 8s ease-in-out infinite;
}

.defense-node[style*="--i:3;"] {
    top: 75%;
    left: 75%;
    animation: float-3 5s ease-in-out infinite;
}

@keyframes float-0 {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-15px);
    }
}

@keyframes float-1 {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

@keyframes float-2 {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-12px);
    }
}

@keyframes float-3 {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-18px);
    }
}

.defense-node:hover {
    transform: translate(-50%, -55%) scale(1.02) !important;
    box-shadow: 0 20px 60px rgba(128, 0, 0, 0.1);
    border-color: var(--color-primary);
    animation-play-state: paused;
}

.node-icon {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.defense-node h4 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
    font-family: var(--font-serif);
}

.defense-node p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    text-align: left;
}

.biosphere-status-panel {
    margin-top: 4rem;
}

.status-indicator-ios {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(196, 160, 77, 0.1);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #4CAF50;
    border-radius: 50%;
    animation: status-pulse 2s infinite;
}

@media (max-width: 992px) {
    .biosphere-explorer {
        height: auto;
        flex-direction: column;
        gap: 4rem;
        padding: 4rem 0;
    }

    .defense-nodes {
        position: relative;
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
        pointer-events: all;
    }

    .defense-node {
        position: static;
        width: 100%;
        max-width: 400px;
        transform: none !important;
        margin: 0 auto;
        animation: none !important;
    }

    .defense-node:hover {
        transform: translateY(-10px) !important;
    }
}


@keyframes status-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.status-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
}

/* Audience Section: Persona Command Center (V2) */
.audience-dashboard {
    padding: 4rem 0 10rem;
    position: relative;
    overflow: hidden;
    background: #fdfaf5;
}

.persona-command-center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.persona-trigger {
    width: 320px;
    padding: 1.8rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(196, 160, 77, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.persona-trigger:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 25px 60px rgba(128, 0, 0, 0.1);
}

.persona-trigger .trigger-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.trigger-info {
    display: flex;
    flex-direction: column;
}

.trigger-label {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-sans);
    color: var(--color-primary);
}

.trigger-sub {
    font-size: 0.8rem;
    opacity: 0.6;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .persona-command-center {
        flex-direction: column;
        gap: 2rem;
    }

    .persona-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Masterclass Section: Detailed Creative Dashboard */
.masterclass-detailed-dashboard {
    background: #0a0a0a;
    border: 1px solid rgba(196, 160, 77, 0.2);
    border-radius: 40px;
    padding: 0;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.dashboard-header {
    background: linear-gradient(to right, #15110d, #0a0a0a);
    padding: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.masterclass-badge {
    background: var(--color-accent);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-family: var(--font-sans);
}

.dashboard-meta {
    display: flex;
    gap: 4rem;
}

.meta-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meta-label {
    font-size: 0.7rem;
    color: var(--color-accent);
    letter-spacing: 2px;
    font-weight: 700;
}

.meta-value {
    font-size: 1.4rem;
    font-family: var(--font-serif);
    color: white;
}

.dashboard-body {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-column,
.insights-column {
    flex: 1;
    padding: 4rem;
}

.schedule-column {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
}

.dashboard-subtitle {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-subtitle::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.session-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.session-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.session-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(196, 160, 77, 0.3);
}

.session-card.active {
    background: rgba(196, 160, 77, 0.08);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.session-day {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    color: white;
}

.session-detail {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.session-lang {
    color: var(--color-accent);
    font-weight: 800;
    font-size: 0.8rem;
}

.session-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.discovery-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.discovery-list li {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    line-height: 1.6;
}

.discovery-list li span {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.discovery-list li strong {
    color: white;
}

.dashboard-footer {
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.01);
}

.system-status {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    font-weight: 700;
}

.cta-glow {
    width: auto;
    min-width: 300px;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    box-shadow: 0 20px 40px rgba(128, 0, 0, 0.4);
}

@media (max-width: 992px) {
    .dashboard-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .dashboard-meta {
        gap: 2rem;
    }

    .dashboard-body {
        flex-direction: column;
    }

    .schedule-column {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dashboard-footer {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .cta-glow {
        width: 100%;
    }
}

/* Distributor Section: Intelligence Hub */
.distributor-intelligence-hub {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(196, 160, 77, 0.1);
}

.hub-advantages {
    padding: 5rem;
    background: #fdfaf5;
    text-align: left;
}

.hub-title {
    font-size: 2.8rem;
    color: var(--color-primary);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hub-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    max-width: 500px;
}

.advantage-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.advantage-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.adv-icon {
    font-size: 1.5rem;
    background: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.adv-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.adv-text strong {
    color: var(--color-primary);
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

/* Economic Analysis Dashboard */
.hub-economic-analysis {
    padding: 5rem;
    background: var(--color-primary);
    color: white;
    text-align: left;
    position: relative;
}

.analysis-header {
    margin-bottom: 4rem;
}

.product-code {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 1rem;
}

.analysis-title {
    font-size: 2rem;
    font-family: var(--font-serif);
}

.pricing-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.price-node {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.price-node:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.price-node.highlight {
    background: rgba(196, 160, 77, 0.15);
    border-color: var(--color-accent);
}

.node-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.node-value {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-sans);
}

.savings-indicator {
    grid-column: span 2;
    background: var(--color-accent);
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.savings-label {
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.savings-value {
    font-size: 1.5rem;
    font-weight: 900;
}

.analysis-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vol-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.analysis-note {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .distributor-intelligence-hub {
        grid-template-columns: 1fr;
    }

    .hub-advantages,
    .hub-economic-analysis {
        padding: 4rem 2rem;
    }
}

/* Footer & Final Conversion */
.dark-premium {
    background: #000;
    padding: 10rem 0 4rem;
}

.glow-btn {
    box-shadow: 0 0 30px var(--color-accent);
}

.glow-btn:hover {
    box-shadow: 0 0 50px var(--color-accent);
}

.footer-bottom {
    margin-top: 6rem;
    opacity: 0.5;
    font-size: 0.8rem;
}

.disclaimer {
    max-width: 600px;
    margin: 1rem auto 0;
    font-size: 0.7rem;
}

/* Animations Trigger */
.fade-up,
.stagger-reveal,
.reveal-text,
.reveal-card,
.reveal-left,
.reveal-right {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(128, 0, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(128, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(128, 0, 0, 0);
    }
}

.pulse-btn {
    animation: pulse 8s infinite;
}

/* Mobile Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--color-primary);
    color: white;
    text-align: center;
    padding: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none;
}

/* Final Conversion: Knowledge Core Portal (V3) */
.knowledge-core-portal {
    background: #000;
    padding: 20rem 0 8rem;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    perspective: 1500px;
    /* Enable 3D tilt */
}

/* Atmosphere & Depth */
.portal-atmosphere {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.glow-field {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(128, 0, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.field-1 {
    top: -10%;
    left: -10%;
}

.field-2 {
    bottom: -10%;
    right: -10%;
    animation: pulse-glow 10s infinite alternate;
}

@keyframes pulse-glow {
    from {
        opacity: 0.3;
        transform: scale(1);
    }

    to {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* World Tilt Container (JS Driven) */
.portal-world-tilt {
    position: relative;
    z-index: 10;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

/* Central Core Hub System */
.core-hub-system {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.knowledge-core {
    position: relative;
    width: 120px;
    height: 120px;
    z-index: 20;
}

.core-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.layer-outer {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 160, 77, 0.2);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

.layer-pulse {
    background: transparent;
    border: 2px solid var(--color-accent);
    animation: core-ring-pulse 3s infinite;
}

.layer-inner {
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    background: #1a0000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.core-energy {
    width: 40%;
    height: 40%;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--color-accent);
    animation: energy-throb 1.5s infinite;
}

@keyframes core-ring-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes energy-throb {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.2);
        filter: brightness(1.5);
    }
}

/* Symmetrical Wisdom Pathways */
.wisdom-pathway {
    position: absolute;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.path-line {
    height: 1px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    opacity: 0.3;
}

.wisdom-node {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(196, 160, 77, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
    /* Allow hovering if needed later */
}

.node-icon {
    color: var(--color-accent);
    font-size: 0.8rem;
}

.node-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.7);
}

/* Symmetrical Positioning */
.path-1 {
    top: -20%;
    left: -80%;
}

.path-1 .path-line {
    width: 120px;
    transform: rotate(150deg);
    transform-origin: right center;
}

.path-2 {
    top: 0%;
    right: -90%;
    flex-direction: row-reverse;
}

.path-2 .path-line {
    width: 150px;
    background: linear-gradient(-90deg, var(--color-accent), transparent);
}

.path-3 {
    bottom: -20%;
    left: -60%;
}

.path-3 .path-line {
    width: 100px;
    transform: rotate(-160deg);
    transform-origin: right center;
}

/* Content Focus */
.portal-content-focus {
    max-width: 800px;
    margin: 2rem auto 0;
}

.portal-title {
    font-size: 5.5rem;
    font-family: var(--font-serif);
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.portal-title .highlight {
    background: linear-gradient(180deg, var(--color-accent) 0%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portal-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.portal-master-trigger {
    padding: 2rem 5rem;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 4px;
    background: var(--color-primary);
    box-shadow: 0 40px 80px rgba(128, 0, 0, 0.4);
    border: 1px solid var(--color-accent);
}

/* Footer Bottom */
.portal-bottom-legal {
    margin-top: 15rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    gap: 4rem;
}

.legal-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

.legal-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    max-width: 600px;
}

@media (max-width: 1024px) {
    .portal-title {
        font-size: 3.5rem;
    }

    .wisdom-pathway {
        position: static;
        margin-bottom: 1.5rem;
        justify-content: center;
    }

    .path-line {
        display: none;
    }

    .core-hub-system {
        height: auto;
        margin-bottom: 3rem;
    }

    .legal-grid {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .legal-disclaimer {
        margin: 0 auto;
    }
}