/* ===================== DESIGN SYSTEM ===================== */
:root {
    --bg-dark: #020a1a;
    --bg-mid: #041228;
    --blue-bright: #0af;
    --blue-glow: #0066ff;
    --blue-electric: #00d4ff;
    --blue-deep: #0a1f3d;
    --blue-mid: #0a3a6b;
    --text-primary: #e8f4ff;
    --text-muted: #7aa8cc;
    --border: rgba(0, 170, 255, 0.15);
    --gradient-hero: linear-gradient(135deg, #020a1a 0%, #041a3a 50%, #020a1a 100%);

    /* Refined transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-mid: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===================== BACKGROUND GRID ===================== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 170, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 170, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ===================== NAV ===================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(2, 10, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-glow));
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.4);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.nav-links a:hover {
    color: var(--blue-bright);
}

.nav-cta {
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-glow));
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600 !important;
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.3);
    transition: all var(--transition-mid) !important;
}

.nav-cta:hover {
    box-shadow: 0 0 40px rgba(0, 170, 255, 0.5) !important;
    transform: translateY(-2px);
    color: #fff !important;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 80px;
    overflow: hidden;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: pulse-glow 6s ease-in-out infinite;
}

.hero-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    top: 20%;
    right: 5%;
    pointer-events: none;
    animation: pulse-glow 8s ease-in-out infinite reverse;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue-bright);
    background: rgba(0, 170, 255, 0.08);
    border: 1px solid rgba(0, 170, 255, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
    display: inline-block;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease both;
}

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    max-width: 1000px;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-electric), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.6;
    margin: 0 auto 48px;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-glow));
    color: #fff;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 30px rgba(0, 170, 255, 0.3), 0 4px 20px rgba(0, 102, 255, 0.2);
    transition: all var(--transition-mid);
    letter-spacing: 0.01em;
}

.btn-primary:hover {
    box-shadow: 0 0 50px rgba(0, 170, 255, 0.5), 0 8px 30px rgba(0, 102, 255, 0.3);
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all var(--transition-mid);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: rgba(0, 170, 255, 0.4);
    background: rgba(0, 170, 255, 0.08);
    transform: translateY(-2px);
}

/* Floating crystal */
.hero-crystal {
    position: relative;
    margin-top: 80px;
    width: 240px;
    height: 240px;
    animation: float 7s ease-in-out infinite, fadeIn 1.5s ease 0.8s both;
}

.crystal-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.crystal-face {
    position: absolute;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.25), rgba(0, 102, 255, 0.05));
    border: 1px solid rgba(0, 170, 255, 0.3);
    border-radius: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    box-shadow: 0 0 40px rgba(0, 170, 255, 0.15), inset 0 0 20px rgba(0, 170, 255, 0.05);
    backdrop-filter: blur(5px);
}

.crystal-face:nth-child(2) {
    transform: translate(-50%, -50%) rotate(30deg);
    opacity: 0.6;
}

.crystal-face:nth-child(3) {
    transform: translate(-50%, -50%) rotate(60deg);
    opacity: 0.3;
}

.crystal-face:nth-child(4) {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-glow));
    border-radius: 10px;
    transform: translate(-50%, -50%) rotate(45deg);
    box-shadow: 0 0 40px rgba(0, 170, 255, 0.7);
    animation: spin-slow 10s linear infinite;
}

@keyframes spin-slow {
    from {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(405deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(2deg);
    }
}

/* Stats bar */
.stats-bar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 0;
    margin: -40px 60px 0;
    background: rgba(4, 18, 40, 0.85);
    border: 1px solid var(--border);
    border-radius: 20px;
    backdrop-filter: blur(30px);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease 1s both;
}

.stat-item {
    flex: 1;
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
    transition: background var(--transition-mid);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-item:hover {
    background: rgba(0, 170, 255, 0.03);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-value {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue-bright), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    font-weight: 500;
    text-transform: uppercase;
}

/* ===================== SECTIONS ===================== */
section {
    position: relative;
    z-index: 1;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 60px;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
}

.section-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 650px;
    margin-top: 24px;
}

/* ===================== WHAT IS SECTION ===================== */
.what-is {
    background: linear-gradient(180deg, transparent, rgba(4, 18, 40, 0.4), transparent);
}

.what-is .section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.what-is-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hexagon-grid {
    position: relative;
    width: 400px;
    height: 400px;
}

.hex {
    position: absolute;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all var(--transition-mid);
}

.hex-1 {
    width: 140px;
    height: 160px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.6), rgba(0, 102, 255, 0.4));
    box-shadow: 0 0 60px rgba(0, 170, 255, 0.5);
    animation: hex-pulse 4s ease-in-out infinite;
}

.hex-2 {
    width: 90px;
    height: 104px;
    top: 5%;
    left: 25%;
    background: rgba(0, 170, 255, 0.15);
    border: 1px solid rgba(0, 170, 255, 0.3);
    animation: hex-pulse 4s ease-in-out 0.5s infinite;
}

.hex-3 {
    width: 90px;
    height: 104px;
    top: 5%;
    right: 5%;
    background: rgba(0, 102, 255, 0.25);
    animation: hex-pulse 4s ease-in-out 1s infinite;
}

.hex-4 {
    width: 90px;
    height: 104px;
    bottom: 5%;
    left: 5%;
    background: rgba(0, 170, 255, 0.1);
    animation: hex-pulse 4s ease-in-out 1.5s infinite;
}

.hex-5 {
    width: 70px;
    height: 80px;
    bottom: 15%;
    right: 10%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.5), rgba(0, 102, 255, 0.3));
    animation: hex-pulse 4s ease-in-out 2s infinite;
}

.hex-6 {
    width: 60px;
    height: 70px;
    top: 40%;
    left: -5%;
    background: rgba(0, 170, 255, 0.1);
    animation: hex-pulse 4s ease-in-out 0.8s infinite;
}

@keyframes hex-pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(0, 0) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(0, -10px) scale(1.05);
    }
}

.hex-1 {
    animation: hex-pulse-main 4s ease-in-out infinite;
}

@keyframes hex-pulse-main {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -55%) scale(1.08);
    }
}

/* ===================== BENEFITS ===================== */
.benefits {
    background: rgba(2, 10, 26, 0.6);
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-card {
    background: rgba(4, 18, 40, 0.7);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-mid);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
    transform: scaleX(0);
    transition: transform var(--transition-mid);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    border-color: rgba(0, 170, 255, 0.4);
    transform: translateY(-8px) scale(1.01);
    background: rgba(4, 18, 40, 0.9);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 170, 255, 0.05);
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.1) 0%, transparent 70%);
    transition: opacity var(--transition-mid);
    opacity: 0.5;
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.15), rgba(0, 102, 255, 0.05));
    border: 1px solid rgba(0, 170, 255, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--blue-bright);
    transition: all var(--transition-mid);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(0, 170, 255, 0.4));
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--blue-bright);
    color: var(--blue-electric);
    background: rgba(0, 170, 255, 0.2);
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
}

.benefit-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.benefit-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 400;
}

.benefit-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 30px;
    font-size: 0.9rem;
    color: var(--blue-bright);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: gap var(--transition-fast);
}

.benefit-link:hover {
    gap: 14px;
}

/* ===================== ASSET TYPES ===================== */
.asset-types {
    background: radial-gradient(circle at bottom, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
}

.asset-types .section-inner {
    text-align: center;
}

.asset-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 80px;
}

.asset-card {
    background: rgba(4, 18, 40, 0.65);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 24px;
    transition: all var(--transition-mid);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.asset-card:hover {
    border-color: rgba(0, 170, 255, 0.5);
    background: rgba(0, 170, 255, 0.08);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.asset-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-bright);
    transition: all var(--transition-mid);
}

.asset-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(0, 170, 255, 0.3));
}

.asset-card:hover .asset-icon {
    transform: translateY(-5px) scale(1.1);
    color: var(--blue-electric);
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
}

.asset-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.asset-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 400;
}

/* ===================== 4 STEPS ===================== */
.steps .section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.steps-left {
    position: sticky;
    top: 120px;
}

.step-item {
    display: flex;
    gap: 30px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: all var(--transition-mid);
}

.step-item:first-child {
    border-top: 1px solid var(--border);
}

.step-item:hover .step-num {
    color: var(--blue-bright);
    border-color: var(--blue-bright);
    background: rgba(0, 170, 255, 0.1);
}

.step-item:hover .step-title {
    color: var(--blue-bright);
}

.step-num {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(0, 170, 255, 0.25);
    border: 1px solid rgba(0, 170, 255, 0.15);
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-mid);
    background: rgba(255, 255, 255, 0.02);
}

.step-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color var(--transition-fast);
    color: #fff;
}

.step-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 400;
}

.steps-right {
    background: rgba(4, 18, 40, 0.9);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.steps-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 170, 255, 0.1), transparent 70%);
}

.pipeline-visual {
    position: relative;
}

.pipeline-node {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    position: relative;
}

.pipeline-node+.pipeline-node::before {
    content: '';
    position: absolute;
    top: 0;
    left: 22px;
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, var(--blue-bright), transparent);
    transform: translateY(-20px);
}

.p-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-glow));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.6);
    color: #fff;
}

.p-label {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.p-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 4px;
}

.progress-bar-wrap {
    margin: 40px 0;
    background: rgba(0, 170, 255, 0.1);
    border-radius: 100px;
    height: 6px;
    overflow: hidden;
    border: 1px solid rgba(0, 170, 255, 0.15);
}

.progress-bar {
    width: 75%;
    height: 100%;
    background: linear-gradient(90deg, var(--blue-glow), var(--blue-bright));
    border-radius: 100px;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.6);
    animation: progress-anim 4s ease-in-out infinite alternate;
}

@keyframes progress-anim {
    from {
        width: 30%;
    }

    to {
        width: 95%;
    }
}

.mini-token {
    background: rgba(0, 170, 255, 0.06);
    border: 1px solid rgba(0, 170, 255, 0.2);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    transition: all var(--transition-mid);
}

.mini-token:hover {
    background: rgba(0, 170, 255, 0.1);
    border-color: rgba(0, 170, 255, 0.4);
}

.token-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue-bright);
    background: rgba(0, 170, 255, 0.15);
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.token-value {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 170, 255, 0.6);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 35px rgba(0, 170, 255, 0.9);
        transform: scale(1.05);
    }
}

/* ===================== MARQUEE ===================== */
.marquee-section {
    padding: 40px 0;
    background: rgba(0, 102, 255, 0.05);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 80px;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
}

.marquee-item {
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    transition: color var(--transition-fast);
}

.marquee-item:hover {
    color: #fff;
}

.marquee-dot {
    width: 8px;
    height: 8px;
    background: var(--blue-bright);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--blue-bright);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===================== BLOG ===================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.blog-card {
    background: rgba(4, 18, 40, 0.75);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-mid);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: rgba(0, 170, 255, 0.5);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    background: rgba(4, 18, 40, 0.95);
}

.blog-thumb {
    height: 220px;
    background: linear-gradient(135deg, var(--bg-mid), var(--bg-dark));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-bright);
    transition: all var(--transition-mid);
    border-bottom: 1px solid var(--border);
}

.blog-thumb svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 12px rgba(0, 170, 255, 0.3));
    transition: all var(--transition-mid);
}

.blog-card:hover .blog-thumb {
    background: rgba(0, 170, 255, 0.05);
}

.blog-card:hover .blog-thumb svg {
    transform: scale(1.1);
    color: var(--blue-electric);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.blog-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(4, 18, 40, 0.8));
    pointer-events: none;
}

.blog-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 12px;
}

.blog-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #fff;
    transition: color var(--transition-fast);
}

.blog-card:hover .blog-title {
    color: var(--blue-bright);
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 24px;
}

.blog-date {
    font-size: 0.8rem;
    color: rgba(122, 168, 204, 0.6);
    margin-top: auto;
    font-weight: 500;
}

/* ===================== CTA ===================== */
.cta-section {
    background: radial-gradient(circle at center, rgba(0, 66, 160, 0.2) 0%, transparent 80%);
    padding-bottom: 100px;
}

.cta-section .section-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
    background: rgba(4, 18, 40, 0.5);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 80px 100px;
    backdrop-filter: blur(20px);
}

.cta-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
}

.cta-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 24px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 580px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
    min-width: 240px;
}

/* ===================== FOOTER ===================== */
footer {
    background: rgba(2, 6, 16, 1);
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 10;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 60px 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border);
}

.footer-brand p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 24px;
    font-weight: 400;
    max-width: 340px;
}

.footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col ul a {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-weight: 400;
}

.footer-col ul a:hover {
    color: var(--blue-bright);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    gap: 30px;
}

.footer-copy {
    font-size: 0.9rem;
    color: rgba(122, 168, 204, 0.5);
    font-weight: 400;
}

.footer-legal {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 0.85rem;
    color: rgba(122, 168, 204, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-weight: 500;
}

.footer-legal a:hover {
    color: var(--blue-bright);
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
        transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 170, 255, 0.2);
    border-radius: 4px;
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 170, 255, 0.5);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .cta-section .section-inner {
        padding: 60px;
    }
}

@media (max-width: 900px) {
    nav {
        padding: 16px 30px;
    }

    .nav-links {
        display: none;
    }

    .section-inner {
        padding: 80px 30px;
    }

    .what-is .section-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .steps .section-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .steps-left {
        position: relative;
        top: 0;
    }

    .asset-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section .section-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .cta-sub {
        margin: 24px auto 0;
    }

    .cta-actions {
        align-items: center;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        margin: 0 30px;
        flex-wrap: wrap;
    }

    .stat-item {
        min-width: 50%;
        padding: 30px 15px;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(4) {
        border-right: none;
    }

    .stat-item:nth-child(5) {
        min-width: 100%;
        border-top: 1px solid var(--border);
    }
}

@media (max-width: 600px) {
    .stat-item {
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
}