:root {
    --ativo-purple: #9d3ef5;
    --ativo-purple-dark: #8b2fdf;
    --deep-slate: #2d2e3f;
    --pure-white: #ffffff;
    --electric-orange: #ff6b35;
    --vibrant-yellow: #ffc107;
    --success-green: #00c853;
    --neutral-gray: #6c757d;
    --light-gray: #f8f9fa;
    --border-gray: #dee2e6;

    --font-family: 'Montserrat', sans-serif;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 64px;
    --space-xxxl: 96px;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);

    --transition: 0.3s ease;
}

/* === ACCESSIBILITY === */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--ativo-purple);
    color: var(--pure-white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    font-weight: 600;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* === RESET === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--deep-slate);
    background: var(--pure-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 { font-size: clamp(36px, 5vw, 56px); letter-spacing: -1.5px; }
h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -1px; }
h3 { font-size: clamp(20px, 3vw, 28px); letter-spacing: -0.5px; }

.text-gradient {
    background: linear-gradient(135deg, var(--ativo-purple), var(--electric-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--ativo-purple);
    color: var(--pure-white);
}

.btn-primary:hover {
    background: var(--ativo-purple-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--deep-slate);
    border-color: var(--border-gray);
}

.btn-secondary:hover {
    border-color: var(--ativo-purple);
    color: var(--ativo-purple);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-nav {
    background: var(--pure-white);
    color: var(--ativo-purple);
    padding: 10px 24px;
    font-size: 14px;
}

.btn-nav:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-md) var(--space-md);
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 8px 32px rgba(157, 62, 245, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    transition: all 0.3s ease;
}

.nav.scrolled .nav-content {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow:
        0 8px 32px rgba(157, 62, 245, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

/* Golden nav when over dark sections */
.nav.over-dark .nav-link {
    color: var(--vibrant-yellow);
    text-shadow: 0 1px 3px rgba(255, 193, 7, 0.3);
}

.nav.over-dark .nav-link:hover {
    color: #ffd54f;
    text-shadow: 0 2px 8px rgba(255, 193, 7, 0.5);
}

.nav.over-dark .logo,
.nav.over-dark .logo-text {
    color: var(--vibrant-yellow);
    text-shadow: 0 1px 3px rgba(255, 193, 7, 0.3);
}

.nav.over-dark .nav-toggle span {
    background: var(--vibrant-yellow);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--deep-slate);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--deep-slate);
}

.nav-links {
    display: none;
    align-items: center;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: rgba(45, 46, 63, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color var(--transition);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.nav-link:hover {
    color: var(--ativo-purple);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--deep-slate);
    transition: all var(--transition);
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
    .nav-links {
        position: fixed;
        top: 90px;
        left: var(--space-md);
        right: var(--space-md);
        background: linear-gradient(135deg, #2d2e3f 0%, #3a3b4f 100%);
        border-radius: var(--radius-lg);
        flex-direction: column;
        gap: 0;
        padding: var(--space-md) 0;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.3s ease;
        z-index: 999;
    }

    .nav-links .nav-link {
        color: rgba(255, 255, 255, 0.9);
        padding: var(--space-md) var(--space-xl);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-shadow: none;
        transition: all 0.2s ease;
    }

    .nav-links .nav-link:last-child {
        border-bottom: none;
    }

    .nav-links .nav-link:hover {
        background: rgba(157, 62, 245, 0.15);
        color: var(--pure-white);
    }

    .nav-toggle.active ~ .nav-links,
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        display: flex;
    }

    .nav-link {
        padding: var(--space-md) var(--space-xl);
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .btn-nav {
        margin: var(--space-md) var(--space-xl) 0;
        display: block;
        text-align: center;
    }
}

/* === HERO SECTION - SIMPLE === */
.hero-globe {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px var(--space-md) var(--space-xl);
    background: #ffffff;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-globe-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: none;
}

.hero-title {
    font-size: clamp(52px, 7vw, 88px) !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
    line-height: 1 !important;
    color: #2d2e3f !important;
    margin: 0 0 var(--space-lg) 0 !important;
    position: relative;
}

.hero-title-line {
    display: block;
    margin-bottom: 0.15em;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    margin: 0 0 var(--space-xl) 0;
    max-width: 540px;
}

.hero-cta {
    margin-top: var(--space-xl);
}

.hero-cta .btn {
    font-size: 18px;
    padding: 16px 48px;
}

.hero-globe-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
}

.globe-container {
    width: 900px;
    height: 900px;
    position: relative;
    perspective: 1500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

@keyframes rotateGlobe {
    0% {
        transform: rotateY(0deg) rotateX(-15deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(-15deg);
    }
}

.globe-dots-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    pointer-events: none;
    animation: rotateGlobe 60s linear infinite;
}

.globe-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #9d3ef5;
    transform-style: preserve-3d;
    will-change: transform, opacity;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.globe-dot.active {
    background: #ff6b35;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.8);
}

@media (max-width: 1024px) {
    .hero-globe-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-globe-wrapper {
        height: 500px;
    }

    .globe-container {
        width: 500px;
        height: 500px;
    }

    /* Markets & Innovation - 2 columns on tablet */
    .markets-grid,
    .innovation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .product-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 767px) {
    .nav {
        padding: var(--space-sm) var(--space-sm);
    }

    .nav-content {
        padding: var(--space-xs) var(--space-md);
        border-radius: 40px;
    }

    .logo img {
        width: 120px;
        height: auto;
    }

    .hero-globe {
        padding: calc(80px + var(--space-xl)) var(--space-sm) var(--space-lg);
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 52px) !important;
        margin-bottom: var(--space-md) !important;
    }

    .hero-subtitle {
        font-size: clamp(16px, 4vw, 18px);
        margin-bottom: var(--space-lg);
    }

    .hero-cta .btn {
        font-size: 16px;
        padding: 14px 32px;
        width: 100%;
        max-width: 280px;
    }

    .hero-globe-wrapper {
        height: 400px;
        margin-top: var(--space-lg);
    }

    .globe-container {
        width: 380px;
        height: 380px;
    }

    .globe-dot {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .hero-globe {
        padding: calc(70px + var(--space-md)) var(--space-xs) var(--space-md);
    }

    .hero-title {
        font-size: 32px !important;
        letter-spacing: -0.02em !important;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-globe-wrapper {
        height: 320px;
    }

    .globe-container {
        width: 300px;
        height: 300px;
    }

    .hero-cta .btn {
        font-size: 15px;
        padding: 12px 28px;
    }

    /* Extra small adjustments for Markets & Innovation */
    .market-card,
    .innovation-card {
        padding: var(--space-md);
    }

    .market-icon,
    .card-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .market-title,
    .card-title {
        font-size: 15px;
    }

    .section-title {
        font-size: clamp(32px, 8vw, 40px);
    }

    .section-description {
        font-size: 15px;
    }
}

/* === INTEGRATED PRODUCT SECTIONS === */
.product-integrated {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xxxl) var(--space-md);
    position: relative;
}

.product-assetlink {
    background: linear-gradient(180deg, #ffffff 0%, #f8f7ff 50%, #fff9f5 100%);
}

.product-timer {
    background: linear-gradient(180deg, #fff9f5 0%, #fff5f0 50%, #f8f7ff 100%);
}

.product-socia {
    background: linear-gradient(180deg, #f8f7ff 0%, #faf9ff 50%, #ffffff 100%);
}

.product-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxxl);
    align-items: center;
}

.product-content {
    padding: var(--space-xl);
}

.product-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #2d2e3f;
    margin: 0 0 var(--space-sm) 0;
}

.product-tagline {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
    color: #9d3ef5;
    margin: 0 0 var(--space-md) 0;
}

.product-description {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.7;
    color: #666;
    margin: 0 0 var(--space-xl) 0;
}

.product-stats {
    display: flex;
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
}

.stat-item {
    flex: 1;
}

.stat-value {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: #9d3ef5;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.product-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.feature-item i {
    color: #9d3ef5;
    font-size: 18px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 16px 32px;
    background: #9d3ef5;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.product-link:hover {
    background: #8b2fdf;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(157, 62, 245, 0.3);
}

/* AssetLink - Blockchain Layers */
.blockchain-layers {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: var(--space-xl);
}

.chain-layer {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: layerFadeIn 0.6s ease forwards;
}

.chain-layer[data-layer="1"] { animation-delay: 0.2s; }
.chain-layer[data-layer="2"] { animation-delay: 0.4s; }
.chain-layer[data-layer="3"] { animation-delay: 0.6s; }
.chain-layer[data-layer="4"] { animation-delay: 0.8s; }

@keyframes layerFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.layer-blocks {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xs);
}

.block {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, rgba(157, 62, 245, 0.1) 0%, rgba(157, 62, 245, 0.05) 100%);
    border: 2px solid rgba(157, 62, 245, 0.3);
    border-radius: 8px;
    position: relative;
}

@keyframes blockLightUp {
    0%, 90%, 100% {
        background: linear-gradient(135deg, rgba(157, 62, 245, 0.1) 0%, rgba(157, 62, 245, 0.05) 100%);
        border-color: rgba(157, 62, 245, 0.3);
        box-shadow: 0 0 0 rgba(157, 62, 245, 0);
    }
    10%, 80% {
        background: linear-gradient(135deg, rgba(157, 62, 245, 0.4) 0%, rgba(157, 62, 245, 0.25) 100%);
        border-color: rgba(157, 62, 245, 0.8);
        box-shadow: 0 0 20px rgba(157, 62, 245, 0.5);
    }
}

/* Layer 1 - Left to Right (1→2→3→4) */
.chain-layer[data-layer="1"] .block:nth-child(1) { animation: blockLightUp 4.8s ease infinite; animation-delay: 0s; }
.chain-layer[data-layer="1"] .block:nth-child(2) { animation: blockLightUp 4.8s ease infinite; animation-delay: 0.3s; }
.chain-layer[data-layer="1"] .block:nth-child(3) { animation: blockLightUp 4.8s ease infinite; animation-delay: 0.6s; }
.chain-layer[data-layer="1"] .block:nth-child(4) { animation: blockLightUp 4.8s ease infinite; animation-delay: 0.9s; }

/* Layer 2 - Right to Left (4→3→2→1) */
.chain-layer[data-layer="2"] .block:nth-child(4) { animation: blockLightUp 4.8s ease infinite; animation-delay: 1.2s; }
.chain-layer[data-layer="2"] .block:nth-child(3) { animation: blockLightUp 4.8s ease infinite; animation-delay: 1.5s; }
.chain-layer[data-layer="2"] .block:nth-child(2) { animation: blockLightUp 4.8s ease infinite; animation-delay: 1.8s; }
.chain-layer[data-layer="2"] .block:nth-child(1) { animation: blockLightUp 4.8s ease infinite; animation-delay: 2.1s; }

/* Layer 3 - Left to Right (1→2→3→4) */
.chain-layer[data-layer="3"] .block:nth-child(1) { animation: blockLightUp 4.8s ease infinite; animation-delay: 2.4s; }
.chain-layer[data-layer="3"] .block:nth-child(2) { animation: blockLightUp 4.8s ease infinite; animation-delay: 2.7s; }
.chain-layer[data-layer="3"] .block:nth-child(3) { animation: blockLightUp 4.8s ease infinite; animation-delay: 3s; }
.chain-layer[data-layer="3"] .block:nth-child(4) { animation: blockLightUp 4.8s ease infinite; animation-delay: 3.3s; }

/* Layer 4 - Right to Left (4→3→2→1) */
.chain-layer[data-layer="4"] .block:nth-child(4) { animation: blockLightUp 4.8s ease infinite; animation-delay: 3.6s; }
.chain-layer[data-layer="4"] .block:nth-child(3) { animation: blockLightUp 4.8s ease infinite; animation-delay: 3.9s; }
.chain-layer[data-layer="4"] .block:nth-child(2) { animation: blockLightUp 4.8s ease infinite; animation-delay: 4.2s; }
.chain-layer[data-layer="4"] .block:nth-child(1) { animation: blockLightUp 4.8s ease infinite; animation-delay: 4.5s; }

.layer-label {
    font-size: 12px;
    color: #9d3ef5;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timer - Giant Clock */
.giant-clock {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clock-face-large {
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 500px;
}

.hour-hand {
    animation: rotateHour 120s linear infinite;
    transform-origin: 250px 250px;
}

.minute-hand {
    animation: rotateMinute 60s linear infinite;
    transform-origin: 250px 250px;
}

@keyframes rotateHour {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateMinute {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.clock-center-content {
    text-align: center;
    padding: var(--space-md);
}

.clock-title {
    font-size: 36px;
    font-weight: 900;
    color: #ff6b35;
    margin: 0 0 var(--space-xs) 0;
}

.clock-tagline {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    margin: 0;
}

/* Sócia - Agent Network */
.agent-network {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-large {
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 500px;
}

.network-connection {
    opacity: 0;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
}

.network-connection[data-order="1"] { animation: drawConnection 0.8s ease 0.3s forwards; }
.network-connection[data-order="2"] { animation: drawConnection 0.8s ease 0.4s forwards; }
.network-connection[data-order="3"] { animation: drawConnection 0.8s ease 0.5s forwards; }
.network-connection[data-order="4"] { animation: drawConnection 0.8s ease 0.6s forwards; }
.network-connection[data-order="5"] { animation: drawConnection 0.8s ease 0.7s forwards; }
.network-connection[data-order="6"] { animation: drawConnection 0.8s ease 0.8s forwards; }
.network-connection[data-order="7"] { animation: drawConnection 0.8s ease 0.9s forwards; }
.network-connection[data-order="8"] { animation: drawConnection 0.8s ease 1s forwards; }

@keyframes drawConnection {
    to {
        opacity: 1;
        stroke-dashoffset: 0;
    }
}

.agent-node {
    opacity: 0;
    transform: scale(0);
}

.agent-node[data-order="1"] { animation: popIn 0.5s ease 0.2s forwards; }
.agent-node[data-order="2"] { animation: popIn 0.5s ease 0.5s forwards; }
.agent-node[data-order="3"] { animation: popIn 0.5s ease 0.6s forwards; }
.agent-node[data-order="4"] { animation: popIn 0.5s ease 0.8s forwards; }
.agent-node[data-order="5"] { animation: popIn 0.5s ease 1s forwards; }
.agent-node[data-order="6"] { animation: popIn 0.5s ease 1.1s forwards; }

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    60% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.agent-node.central {
    stroke-width: 4;
}

.network-center-content {
    text-align: center;
    padding: var(--space-sm);
}

.network-title {
    font-size: 32px;
    font-weight: 900;
    color: #9d3ef5;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .blockchain-layers,
    .giant-clock,
    .agent-network {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .product-integrated {
        padding: var(--space-xxl) var(--space-sm);
        min-height: auto;
    }

    .product-content {
        padding: var(--space-md);
        text-align: center;
    }

    .product-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .product-features-list {
        grid-template-columns: 1fr;
    }

    .product-link {
        width: 100%;
        justify-content: center;
    }

    .blockchain-layers,
    .giant-clock,
    .agent-network {
        height: 300px;
    }

    .layer-blocks {
        gap: var(--space-xs);
    }

    .block {
        width: 60px;
        height: 45px;
    }

    .clock-title,
    .network-title {
        font-size: 24px;
    }
}

/* === HERO SECTION - BENTO GRID (OLD) === */
.hero {
    min-height: 100vh;
    padding: calc(90px + var(--space-xxl)) var(--space-md) var(--space-xl);
    background: linear-gradient(180deg, #f8f7ff 0%, #ffffff 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(157, 62, 245, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(157, 62, 245, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(5, 150px);
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Base block styles */
.hero-block {
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    transition: all var(--transition);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.hero-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 25%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.3) 75%,
        transparent 100%
    );
    transition: left 0.6s ease-out;
    pointer-events: none;
    z-index: 2;
}

.hero-block:hover::before {
    left: 100%;
}

.hero-block:not(:hover)::before {
    left: -100%;
}

.hero-block:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.block-hidden-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-lg);
    z-index: 3;
}

.hero-block:hover .block-hidden-content {
    opacity: 1;
    pointer-events: auto;
}

.block-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.block-main-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: opacity 0.4s ease;
}

/* Prevent content overlap with product logos */
.block-product .block-main-content,
.block-product .block-hidden-content {
    padding-right: 60px;
}

.hero-block:hover .block-main-content {
    opacity: 0;
    pointer-events: none;
}

/* Main statement block - largest */
.block-main {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
    background: var(--deep-slate);
    color: var(--pure-white);
}

.block-title {
    font-size: clamp(26px, 2.8vw, 42px);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.block-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: auto;
}

.block-meta {
    margin-top: var(--space-md);
}

.block-link-subtle {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.block-link-subtle:hover {
    color: var(--pure-white);
    gap: var(--space-sm);
}

/* AssetLink product block */
.block-product-assetlink {
    grid-column: 4 / 6;
    grid-row: 1 / 3;
    background: linear-gradient(135deg, var(--ativo-purple), var(--vibrant-yellow));
    color: var(--pure-white);
}

.block-product-assetlink .block-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Product logo styling */
.product-logo {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    z-index: 4;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.product-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-block:hover .product-logo {
    background: rgba(255, 255, 255, 0.25);
}

.block-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--neutral-gray);
    margin-bottom: var(--space-sm);
}

.partner-logos-compact {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: auto;
}

.partner-logos-compact span {
    font-size: 16px;
    font-weight: 700;
    color: var(--deep-slate);
}

.block-stat {
    font-size: 22px;
    font-weight: 900;
    color: var(--ativo-purple);
    margin-top: var(--space-sm);
}

/* Stat blocks */
.block-stat-1 {
    grid-column: 6 / 7;
    grid-row: 1 / 3;
    background: var(--vibrant-yellow);
    color: var(--deep-slate);
}

/* Timer product block */
.block-product-timer {
    grid-column: 3 / 4;
    grid-row: 3 / 5;
    background: linear-gradient(135deg, var(--electric-orange), var(--vibrant-yellow));
    color: var(--pure-white);
}

.block-product-timer .block-label {
    color: rgba(255, 255, 255, 0.9);
}

.block-product-timer .stat-detail {
    color: rgba(255, 255, 255, 0.9);
}

.block-product-timer .block-hidden-content {
    justify-content: flex-start;
}

.block-product-timer .block-link-arrow {
    margin-top: auto;
    flex-shrink: 0;
    min-width: 40px;
    min-height: 40px;
}

.block-stat-3 {
    grid-column: 6 / 7;
    grid-row: 3 / 5;
    background: var(--success-green);
    color: var(--pure-white);
}

.stat-large {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label-large {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-xs);
    opacity: 0.9;
}

.stat-detail {
    font-size: 13px;
    opacity: 0.8;
}

/* R&D highlight */
.block-rnd {
    grid-column: 4 / 6;
    grid-row: 3 / 5;
    background: var(--electric-orange);
    color: var(--pure-white);
}

.block-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: var(--space-sm);
}

.block-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.block-mini-text {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: auto;
}

.status-badge-mini {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    margin-top: var(--space-sm);
    width: fit-content;
}

/* Socia product block */
.block-product-socia {
    grid-column: 1 / 3;
    grid-row: 3 / 5;
    background: linear-gradient(135deg, var(--ativo-purple), var(--success-green));
    color: var(--pure-white);
}

.block-product-socia .block-label {
    color: rgba(255, 255, 255, 0.9);
}

.block-link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--pure-white);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    margin-top: auto;
    flex-shrink: 0;
}

.block-link-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(4px);
}

/* Focus block */
.block-focus {
    grid-column: 1 / 3;
    grid-row: 5 / 6;
    background: linear-gradient(135deg, #9d3ef5, #a855f7);
    color: var(--pure-white);
    border: none;
}

.block-focus .block-main-content,
.block-focus .block-hidden-content {
    flex-direction: row;
    align-items: center;
    gap: var(--space-md);
}

.block-focus .block-icon {
    color: var(--pure-white);
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.block-focus .block-heading {
    color: var(--pure-white);
    margin-bottom: 4px;
}

.block-focus .block-mini-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Impact/quote block */
.block-impact {
    grid-column: 3 / 5;
    grid-row: 5 / 6;
    background: var(--deep-slate);
    color: var(--pure-white);
}

.quote-mark {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    color: var(--ativo-purple);
    margin-bottom: var(--space-xs);
}

.block-quote {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

/* Contact block */
.block-contact {
    grid-column: 5 / 7;
    grid-row: 5 / 6;
    background: var(--light-gray);
    border: 1px solid var(--border-gray);
}

.contact-email {
    font-size: 16px;
    font-weight: 700;
    color: var(--ativo-purple);
    text-decoration: none;
    transition: var(--transition);
}

.contact-email:hover {
    color: var(--ativo-purple-dark);
}

/* Responsive grid - Tablet */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(8, 120px);
    }

    .block-main {
        grid-column: 1 / 5;
        grid-row: 1 / 4;
    }

    .block-partners {
        grid-column: 1 / 3;
        grid-row: 4 / 6;
    }

    .block-stat-1 {
        grid-column: 3 / 4;
        grid-row: 4 / 6;
    }

    .block-stat-3 {
        grid-column: 4 / 5;
        grid-row: 4 / 6;
    }

    .block-rnd {
        grid-column: 1 / 3;
        grid-row: 6 / 8;
    }

    .block-product {
        grid-column: 3 / 5;
        grid-row: 6 / 8;
    }

    .block-stat-2 {
        grid-column: 1 / 3;
        grid-row: 8 / 9;
    }

    .block-focus {
        grid-column: 3 / 5;
        grid-row: 8 / 9;
    }

    .block-impact {
        grid-column: 1 / 5;
        grid-row: 9 / 10;
    }

    .block-contact {
        grid-column: 1 / 5;
        grid-row: 10 / 11;
    }
}

/* Responsive grid - Mobile */
@media (max-width: 768px) {
    .hero {
        padding: calc(80px + var(--space-sm)) var(--space-sm) var(--space-xl);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: var(--space-xs);
    }

    .block-main,
    .block-partners,
    .block-stat-1,
    .block-stat-2,
    .block-stat-3,
    .block-rnd,
    .block-product,
    .block-focus,
    .block-impact,
    .block-contact {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 180px;
    }

    .block-main {
        min-height: 300px;
    }

    .block-stat-1,
    .block-stat-2,
    .block-stat-3 {
        min-height: 140px;
    }

    .block-focus,
    .block-impact,
    .block-contact {
        min-height: 120px;
    }

    .block-title {
        font-size: 22px;
    }

    .stat-large {
        font-size: 36px;
    }

    .quote-mark {
        font-size: 28px;
    }

    /* Fix timer card overflow on mobile */
    .block-product-timer .block-main-content,
    .block-product-timer .block-hidden-content {
        padding: var(--space-md);
        padding-right: 60px;
    }

    .block-product-timer .stat-detail {
        font-size: 13px;
        line-height: 1.4;
    }
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ativo-purple);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-weight: 900;
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: 18px;
    color: var(--neutral-gray);
    line-height: 1.7;
}

/* === MARKETS & FOCUS SECTION === */
.markets-focus {
    padding: var(--space-xxxl) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f7ff 30%, #f5f3ff 70%, #f2f0ff 100%);
    color: var(--deep-slate);
    position: relative;
    overflow: hidden;
}

.markets-focus .section-label {
    color: var(--ativo-purple);
}

.markets-focus .section-title {
    color: var(--deep-slate);
}

.markets-focus .section-description {
    color: var(--neutral-gray);
}

/* Markets Grid */
.markets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xxl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.market-card {
    background: var(--pure-white);
    border: 1px solid rgba(157, 62, 245, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    opacity: 0;
    transform: translateY(30px);
}

.market-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.market-card:hover {
    border-color: var(--ativo-purple);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(157, 62, 245, 0.15);
}

.market-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--ativo-purple), var(--vibrant-yellow));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--pure-white);
    margin-bottom: var(--space-xs);
}

.market-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--deep-slate);
    margin: 0;
}

.market-value {
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--ativo-purple), var(--vibrant-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.market-opportunity {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.opportunity-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.opportunity-value {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--ativo-purple), var(--vibrant-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -1px;
}

.market-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.market-tags span {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    background: rgba(157, 62, 245, 0.15);
    border: 1px solid rgba(157, 62, 245, 0.3);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Optimization */
@media (max-width: 1024px) {
    .markets-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 767px) {
    .markets-focus {
        padding: var(--space-xxl) 0;
    }

    .markets-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .market-card {
        padding: var(--space-xl);
        gap: var(--space-md);
    }

    .market-number {
        font-size: 36px;
    }

    .market-title {
        font-size: 24px;
    }

    .market-description {
        font-size: 14px;
    }

    .opportunity-value {
        font-size: 28px;
    }

    .market-tags span {
        font-size: 11px;
        padding: 5px 10px;
    }
}

/* === INNOVATION SECTION === */
.innovation {
    padding: var(--space-xxxl) 0;
    background: linear-gradient(180deg,
        #f2f0ff 0%,
        #ede9ff 15%,
        #e3dfed 25%,
        #ccc7d8 35%,
        #9e99ad 45%,
        #756f85 55%,
        #5a5566 65%,
        #4a4557 75%,
        #3a3744 85%,
        #322f3c 95%,
        #2d2a37 100%);
    color: var(--deep-slate);
    position: relative;
}

.innovation .container {
    position: relative;
    z-index: 1;
}

.innovation .section-label {
    color: var(--ativo-purple);
}

.innovation .section-title {
    color: var(--deep-slate);
}

.innovation .section-description {
    color: var(--neutral-gray);
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.innovation-card {
    background: var(--pure-white);
    border: 1px solid rgba(157, 62, 245, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    opacity: 0;
    transform: translateY(30px);
}

.innovation-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.innovation-card:hover {
    border-color: var(--ativo-purple);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(157, 62, 245, 0.15);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--ativo-purple), var(--vibrant-yellow));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--pure-white);
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--deep-slate);
    margin: 0;
}

.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background: rgba(255, 193, 7, 0.15);
    color: #f59e0b;
    border: 1px solid #f59e0b;
}

.status-production {
    background: rgba(0, 200, 83, 0.15);
    color: #10b981;
    border: 1px solid #10b981;
}
    color: var(--neutral-gray);
    margin-bottom: var(--space-md);
}

/* Mobile Optimization for Innovation */
@media (max-width: 1024px) {
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 767px) {
    .innovation {
        padding: var(--space-xxl) 0;
    }

    .innovation-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .innovation-card {
        padding: var(--space-xl);
    }

    .card-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-description {
        font-size: 14px;
    }

    .innovation-cta {
        padding: var(--space-xl);
    }

    .innovation-cta h3 {
        font-size: 22px;
    }

    .innovation-cta p {
        font-size: 15px;
    }

    /* Fix research team button overflow on mobile */
    .innovation-cta .btn-lg {
        padding: 14px 20px;
        font-size: 14px;
        max-width: 100%;
        word-break: break-word;
    }

    .innovation-cta .btn-lg span {
        font-size: 13px;
    }
}

/* === PRODUCTS SECTION === */
.products {
    padding: var(--space-xxxl) 0;
    background: var(--light-gray);
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xxl);
}

.product-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    background: var(--pure-white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    align-items: center;
}

@media (min-width: 968px) {
    .product-card {
        grid-template-columns: 300px 1fr;
    }
}

.product-visual {
    position: relative;
}

.product-icon {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--pure-white);
    margin: 0 auto;
}

.product-icon-assetlink {
    background: linear-gradient(135deg, var(--ativo-purple), var(--vibrant-yellow));
}

.product-icon-socia {
    background: linear-gradient(135deg, var(--ativo-purple), var(--success-green));
}

.product-icon-timer {
    background: linear-gradient(135deg, var(--electric-orange), var(--vibrant-yellow));
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--ativo-purple);
    color: var(--pure-white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ativo-purple);
    margin-bottom: var(--space-xs);
}

.product-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    margin-bottom: var(--space-sm);
}

.product-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--neutral-gray);
    margin-bottom: var(--space-md);
}

.product-features {
    list-style: none;
    margin-bottom: var(--space-md);
}

.product-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
    font-size: 15px;
    color: var(--deep-slate);
}

.product-features i {
    color: var(--ativo-purple);
    font-size: 14px;
}


/* === CTA SECTION === */
.cta {
    padding: var(--space-xxxl) 0;
    background: linear-gradient(180deg,
        #2d2a37 0%,
        #2a2735 20%,
        #26232f 40%,
        #221f2d 60%,
        #1a1826 80%,
        #12101e 100%);
    color: var(--pure-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(2px 2px at 10% 20%, white, transparent),
        radial-gradient(2px 2px at 25% 35%, white, transparent),
        radial-gradient(1px 1px at 40% 10%, white, transparent),
        radial-gradient(2px 2px at 60% 45%, white, transparent),
        radial-gradient(1px 1px at 75% 25%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 15% 70%, white, transparent),
        radial-gradient(2px 2px at 35% 85%, white, transparent),
        radial-gradient(1px 1px at 55% 65%, white, transparent),
        radial-gradient(2px 2px at 80% 90%, white, transparent),
        radial-gradient(1px 1px at 45% 50%, rgba(157, 62, 245, 0.8), transparent),
        radial-gradient(1px 1px at 70% 80%, rgba(255, 107, 53, 0.8), transparent);
    background-size: 300px 300px, 400px 400px, 250px 250px, 350px 350px, 280px 280px, 320px 320px,
                     360px 360px, 290px 290px, 330px 330px, 310px 310px, 200px 200px, 220px 220px;
    background-position: 0 0, 50px 80px, 100px 120px, 150px 40px, 200px 160px, 250px 60px,
                         30px 140px, 180px 100px, 220px 180px, 80px 20px, 120px 90px, 170px 130px;
    animation: stars 120s linear infinite;
    opacity: 0.6;
    pointer-events: none;
}

@keyframes stars {
    from { transform: translateY(0); }
    to { transform: translateY(-200px); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

.cta .btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta .btn-secondary:hover {
    border-color: var(--pure-white);
}

/* === FOOTER === */
.footer {
    background: #12101e;
    color: var(--pure-white);
    padding: var(--space-xxl) 0 var(--space-lg);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(2px 2px at 10% 20%, white, transparent),
        radial-gradient(2px 2px at 25% 35%, white, transparent),
        radial-gradient(1px 1px at 40% 10%, white, transparent),
        radial-gradient(2px 2px at 60% 45%, white, transparent),
        radial-gradient(1px 1px at 75% 25%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 15% 70%, white, transparent),
        radial-gradient(2px 2px at 35% 85%, white, transparent),
        radial-gradient(1px 1px at 55% 65%, white, transparent),
        radial-gradient(2px 2px at 80% 90%, white, transparent),
        radial-gradient(1px 1px at 45% 50%, rgba(157, 62, 245, 0.8), transparent),
        radial-gradient(1px 1px at 70% 80%, rgba(255, 107, 53, 0.8), transparent);
    background-size: 300px 300px, 400px 400px, 250px 250px, 350px 350px, 280px 280px, 320px 320px,
                     360px 360px, 290px 290px, 330px 330px, 310px 310px, 200px 200px, 220px 220px;
    background-position: 0 0, 50px 80px, 100px 120px, 150px 40px, 200px 160px, 250px 60px,
                         30px 140px, 180px 100px, 220px 180px, 80px 20px, 120px 90px, 170px 130px;
    animation: stars 120s linear infinite;
    opacity: 0.6;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 3fr;
    }
}

.footer-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    transition: all 0.3s ease;
    position: relative;
}

.footer-social a:hover {
    background: var(--ativo-purple);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(157, 62, 245, 0.4);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-lg);
}

.footer-column h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: var(--space-xs);
    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--ativo-purple);
}

.footer-location {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin-top: var(--space-xs);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.footer-legal {
    display: flex;
    gap: var(--space-md);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--ativo-purple);
}

/* === UTILITIES === */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* === RESPONSIVE === */
@media (max-width: 767px) {
    .hero {
        padding: calc(80px + var(--space-xl)) var(--space-md) var(--space-xl);
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Markets Section */
    .markets-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding: 0 var(--space-sm);
    }

    .market-card {
        padding: var(--space-lg);
    }

    .market-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .market-title {
        font-size: 16px;
    }

    /* Innovation Section */
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding: 0 var(--space-sm);
    }

    .innovation-card {
        padding: var(--space-lg);
    }

    .card-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .card-title {
        font-size: 16px;
    }

    .status-badge {
        font-size: 9px;
        padding: 5px 12px;
    }

    /* CTA Section */
    .cta {
        padding: var(--space-xxl) var(--space-md);
    }

    .cta-title {
        font-size: clamp(28px, 7vw, 36px);
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer {
        padding: var(--space-xl) 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: var(--space-xl);
        padding: 0 var(--space-sm);
    }

    .section-label {
        font-size: 11px;
    }

    .section-description {
        font-size: 16px;
    }

    /* Container padding */
    .container {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }
}

/* ===================================
   PRODUCT SECTIONS
   =================================== */

/* === Base Product Section === */
.product-section {
    padding: var(--space-xxl) var(--space-md);
    background: linear-gradient(180deg, #fafafa 0%, #f5f3ff 100%);
    position: relative;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(157, 62, 245, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

@media (min-width: 1024px) {
    .product-section {
        padding: var(--space-xxxl) var(--space-md);
    }
}

/* === Product Card === */
.product-card {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 64px;
    border-radius: var(--radius-lg);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xxl);
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .product-card {
        padding: var(--space-xxl) var(--space-lg);
        min-height: 400px;
    }

    .product-name {
        font-size: clamp(42px, 10vw, 72px);
        letter-spacing: -2px;
    }
}

.product-name {
    font-size: clamp(56px, 8vw, 96px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    margin: 0;
    text-transform: uppercase;
    border-bottom: 4px solid rgba(255, 255, 255, 0.3);
    padding-bottom: var(--space-md);
    width: 100%;
    text-align: center;
}

.product-value {
    font-size: clamp(20px, 2.5vw, 32px);
    line-height: 1.5;
    font-weight: 500;
    opacity: 0.95;
    max-width: 900px;
    margin: 0;
    text-align: center;
}

/* === Product Features === */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    max-width: 900px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-pill i {
    font-size: 16px;
    color: inherit;
}

@media (max-width: 767px) {
    .feature-pill {
        font-size: 13px;
        padding: 10px 16px;
    }
}

/* === Product Fact Block === */
.product-fact {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: var(--space-xl) var(--space-xxl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 700px;
}

.fact-stat {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: var(--space-md);
    letter-spacing: -2px;
}

.fact-text {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.fact-source {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === Product CTA === */
.product-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 20px 48px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--deep-slate);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.product-cta:hover {
    background: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.product-cta i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.product-cta:hover i {
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .product-fact {
        padding: var(--space-lg) var(--space-xl);
    }

    .product-cta {
        width: 100%;
        justify-content: center;
        padding: 18px 32px;
    }
}

/* === AssetLink === */
.product-section-assetlink .product-card {
    background: linear-gradient(135deg, #9d3ef5 0%, #7c3aed 50%, #a855f7 100%);
    color: var(--pure-white);
    box-shadow: 0 20px 60px rgba(157, 62, 245, 0.3);
}

.product-section-assetlink .feature-pill i {
    color: var(--pure-white);
}

/* === Timer === */
.product-section-timer .product-card {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #fb923c 100%);
    color: var(--pure-white);
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.3);
}

.product-section-timer .feature-pill i {
    color: var(--pure-white);
}

/* === Socia === */
.product-section-socia .product-card {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #8b5cf6 100%);
    color: var(--pure-white);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
}

.product-section-socia .feature-pill i {
    color: var(--pure-white);
}

/* ===================================
   PRODUCT ANIMATIONS & ENHANCEMENTS
   =================================== */

/* Scroll Reveal Animations */
[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animations for Feature Pills */
[data-stagger] .feature-pill {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-stagger].revealed .feature-pill:nth-child(1) { transition-delay: 0.1s; }
[data-stagger].revealed .feature-pill:nth-child(2) { transition-delay: 0.2s; }
[data-stagger].revealed .feature-pill:nth-child(3) { transition-delay: 0.3s; }
[data-stagger].revealed .feature-pill:nth-child(4) { transition-delay: 0.4s; }
[data-stagger].revealed .feature-pill:nth-child(5) { transition-delay: 0.5s; }
[data-stagger].revealed .feature-pill:nth-child(6) { transition-delay: 0.6s; }

[data-stagger].revealed .feature-pill {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Enhanced Gradient Meshes with Animation */
.product-section-assetlink .product-card {
    background: linear-gradient(135deg, #9d3ef5 0%, #7c3aed 50%, #a855f7 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

.product-section-timer .product-card {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #fb923c 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

.product-section-socia .product-card {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #8b5cf6 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Visualization Containers */
.product-viz {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.product-viz canvas,
.product-viz svg {
    width: 100%;
    height: 100%;
}

/* AssetLink - Network Visualization */
.network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Sócia - Building SVG */
.building-svg {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 300px;
    height: 300px;
    opacity: 0.15;
}

.building-svg path {
    stroke: #ffffff;
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.building-svg.animate path {
    animation: drawBuilding 3s ease-out forwards;
}

@keyframes drawBuilding {
    to {
        stroke-dashoffset: 0;
    }
}

/* Timer - Clock Visualization */
.timer-clock {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 250px;
    height: 250px;
    transform: translateY(-50%);
    opacity: 0.3;
}

.timer-clock .seconds-hand {
    transform-origin: 100px 100px;
    transform: rotate(0deg);
}

.timer-clock.animate .seconds-hand {
    animation: rotateHand 8s linear forwards;
}

@keyframes rotateHand {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.timer-clock .clock-icon {
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.timer-clock.animate .clock-icon {
    opacity: 1;
    transform: scale(1);
}

.timer-clock.animate .clock-icon[data-position="12"] {
    animation: iconPulse 0.6s ease 0s;
}

.timer-clock.animate .clock-icon[data-position="3"] {
    animation: iconPulse 0.6s ease 2s;
}

.timer-clock.animate .clock-icon[data-position="6"] {
    animation: iconPulse 0.6s ease 4s;
}

.timer-clock.animate .clock-icon[data-position="9"] {
    animation: iconPulse 0.6s ease 6s;
}

@keyframes iconPulse {
    0%, 100% {
        opacity: 0.4;
        filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 1)) drop-shadow(0 0 20px rgba(157, 62, 245, 0.6));
    }
}

.clock-icon .icon-bg {
    transition: fill 0.3s ease;
}

.timer-clock .clock-icon {
    opacity: 0.4;
}

.building-svg {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 250px;
    height: 250px;
    transform: translateY(-50%);
    opacity: 0.3;
}

.building-outline {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
}

.building-svg.animate .building-outline {
    animation: drawBuilding 1.5s ease forwards;
}

@keyframes drawBuilding {
    to {
        stroke-dashoffset: 0;
    }
}

.network-line {
    opacity: 0;
}

.building-svg.animate .network-line[data-order="1"] {
    animation: fadeInLine 0.4s ease 2s forwards;
}

.building-svg.animate .network-line[data-order="2"] {
    animation: fadeInLine 0.4s ease 2.2s forwards;
}

.building-svg.animate .network-line[data-order="3"] {
    animation: fadeInLine 0.4s ease 2.4s forwards;
}

.building-svg.animate .network-line[data-order="4"] {
    animation: fadeInLine 0.4s ease 2.6s forwards;
}

.building-svg.animate .network-line[data-order="5"] {
    animation: fadeInLine 0.4s ease 2.8s forwards;
}

.building-svg.animate .network-line[data-order="6"] {
    animation: fadeInLine 0.4s ease 3s forwards;
}

@keyframes fadeInLine {
    0% {
        opacity: 0;
        stroke: rgba(157, 62, 245, 0);
    }
    100% {
        opacity: 1;
        stroke: rgba(157, 62, 245, 0.6);
    }
}

.network-node {
    opacity: 0.3;
}

.building-svg.animate .network-node[data-order="1"] {
    animation: lightUpNode 0.5s ease 3.2s forwards;
}

.building-svg.animate .network-node[data-order="2"] {
    animation: lightUpNode 0.5s ease 3.4s forwards;
}

.building-svg.animate .network-node[data-order="3"] {
    animation: lightUpNode 0.5s ease 3.6s forwards, nodeGlow 2s ease 4s infinite;
}

.building-svg.animate .network-node[data-order="4"] {
    animation: lightUpNode 0.5s ease 3.8s forwards;
}

.building-svg.animate .network-node[data-order="5"] {
    animation: lightUpNode 0.5s ease 4s forwards;
}

@keyframes lightUpNode {
    0% {
        opacity: 0.3;
        fill: rgba(255, 255, 255, 0.2);
    }
    100% {
        opacity: 1;
        fill: rgba(157, 62, 245, 0.8);
        filter: drop-shadow(0 0 6px rgba(157, 62, 245, 0.8));
    }
}

@keyframes nodeGlow {
    0%, 100% {
        filter: drop-shadow(0 0 6px rgba(157, 62, 245, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(157, 62, 245, 1)) drop-shadow(0 0 20px rgba(157, 62, 245, 0.6));
    }
}

.success-dot {
    opacity: 0;
}

.building-svg.animate .success-dot[data-order="1"] {
    animation: successPulse 2s ease 4.5s infinite;
}

.building-svg.animate .success-dot[data-order="2"] {
    animation: successPulse 2s ease 5s infinite;
}

.building-svg.animate .success-dot[data-order="3"] {
    animation: successPulse 2s ease 5.5s infinite;
}

@keyframes successPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(2);
        filter: drop-shadow(0 0 4px rgba(0, 255, 136, 0.8));
    }
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .building-svg {
        width: 200px;
        height: 200px;
        right: 50%;
        transform: translateX(50%) translateY(-50%);
    }

    .timer-clock {
        width: 200px;
        height: 200px;
        right: 50%;
        transform: translateX(50%) translateY(-50%);
    }

    .product-viz {
        opacity: 0.2;
    }
}

