/* =========================================
   CSS variables and Base Styles
   ========================================= */
:root {
    /* Colors - Deep Premium Dark */
    --bg-dark: #050507;
    --primary-accent: #FF5A00;
    --secondary-accent: #FFA900;
    --text-primary: #f5f5f7;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --border-color: rgba(255, 255, 255, 0.06);

    /* Premium Glass Variables */
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.09);
    --glass-glow: rgba(255, 90, 0, 0.12);

    /* Fonts */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --font-mono: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

    /* Metrics */
    --container-width: 1240px;
    --section-spacing: 160px;
    --card-padding: 40px;
    --border-radius: 20px;

    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Properties */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 68px;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

/* Numbers & Stats */
.font-mono-bold,
.stat-value,
.stat-number,
.card-number,
.hero-badge,
.step-marker,
.reason-number {
    font-family: var(--font-mono);
    font-weight: 700;
}

/* Uppercase Labels & Badges */
.stat-label,
.hero-badge,
.section-tagline,
.card-subtitle,
.link-group h4,
.logo-item {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.text-accent {
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-accent-cyan {
    color: var(--secondary-accent);
}

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

p.large {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.center {
    text-align: center;
}

ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* =========================================
   Layout & Background
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-spacing) 0;
    position: relative;
    z-index: 10;
}

.site-background {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-glow-1 {
    position: absolute;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(255, 90, 0, 0.08) 0%, transparent 50%);
    top: -20%; left: -10%;
    animation: drift 20s ease-in-out infinite alternate;
}

.bg-glow-2 {
    position: absolute;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(255, 169, 0, 0.05) 0%, transparent 60%);
    bottom: -10%; right: -10%;
    animation: drift 25s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 10%) scale(1.1); }
}

.noise-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: 1;
}

.perspective-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.2;
    transform: perspective(1000px) rotateX(60deg) scale(2);
    transform-origin: center 80%;
    mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.orb-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: var(--primary-accent);
}

.orb-2 {
    bottom: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--secondary-accent);
}

/* 3D Glass Shards */
.glass-shard {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 60%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 1;
}

.shard-1 {
    top: 15%;
    right: 10%;
    width: 150px;
    height: 150px;
    transform: rotateX(45deg) rotateY(20deg) rotateZ(15deg);
    animation: shardFloat 15s ease-in-out infinite;
}

.shard-2 {
    bottom: 10%;
    left: 15%;
    width: 200px;
    height: 200px;
    transform: rotateX(-30deg) rotateY(-15deg) rotateZ(-10deg);
    animation: shardFloat 20s ease-in-out infinite reverse;
}

.shard-3 {
    top: 60%;
    right: 25%;
    width: 100px;
    height: 100px;
    transform: rotateX(10deg) rotateY(45deg) rotateZ(30deg);
    animation: shardFloat 12s ease-in-out infinite 2s;
    opacity: 0.5;
}

.shard-4 {
    top: 20%;
    left: 30%;
    width: 80px;
    height: 80px;
    transform: rotateX(50deg) rotateY(-30deg) rotateZ(50deg);
    animation: shardFloat 18s ease-in-out infinite -5s;
    opacity: 0.3;
}

@keyframes shardFloat {

    0%,
    100% {
        transform: translate(0, 0) rotateX(10deg) rotateY(10deg);
    }

    50% {
        transform: translate(20px, -40px) rotateX(30deg) rotateY(20deg);
    }
}

/* =========================================
   Shared Components
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    font-family: var(--font-body);
}

.btn-primary {
    background: rgba(10, 10, 10, 0.6);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 90, 0, 0.1), inset 0 0 0 1px rgba(255, 90, 0, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    z-index: -2;
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover::after {
    opacity: 0.6;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--primary-accent);
    background: rgba(255, 90, 0, 0.06);
    color: var(--primary-accent);
}

.arrow {
    margin-left: 10px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn:hover .arrow {
    transform: translateX(6px);
}

.glass-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: var(--card-padding);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px -4px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 40%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.glass-card:hover {
    border-color: rgba(255, 90, 0, 0.15);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
    box-shadow: 
        0 16px 48px -8px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 90, 0, 0.06);
    transform: translateY(-4px);
}

.section-header {
    margin-bottom: 4rem;
}

/* =========================================
   Navbar
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
}

.nav-links a:not(.btn):hover {
    opacity: 1;
    color: var(--secondary-accent);
}

.nav-links .btn {
    padding: 0.6rem 1.5rem;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    transition: 0.3s;
}

/* =========================================
   Section 1: Hero
   ========================================= */
.section-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    /* Offset nav */
    position: relative;
    overflow: hidden;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-badge-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 12px;
    border-radius: 100px;
    background: rgba(255, 90, 0, 0.08);
    border: 1px solid rgba(255, 90, 0, 0.2);
    margin-bottom: 2rem;
    overflow: hidden;
}

.hero-badge-container::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-accent);
    animation: pulseDot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-badge {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.hero-subtext {
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 0 2.5rem 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Hero Metrics Strip */
.hero-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 3rem;
    padding: 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
    flex: 1;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.metric-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    font-weight: 500;
}

.metric-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* Modern Web3 Growth Dashboard */
.glass-stack {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-float-card {
    position: absolute;
    width: 320px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: floatCard 6s ease-in-out infinite;
    z-index: 3;
}

.glass-float-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.card-top {
    top: 5%;
    left: 5%;
    z-index: 4;
    animation-delay: 0s;
}

.card-bottom {
    bottom: 5%;
    right: 5%;
    z-index: 3;
    animation-delay: -3s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

.float-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.float-orb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-accent);
    box-shadow: 0 0 12px var(--primary-accent);
}

.float-orb.cyan {
    background: var(--secondary-accent);
    box-shadow: 0 0 12px var(--secondary-accent);
}

/* Area Chart */
.area-chart {
    width: 100%;
    height: 80px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
}

.area-chart svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.chart-line {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawAreaLine 3s ease-out forwards 0.5s;
}

.chart-fill {
    opacity: 0;
    animation: fadeInFill 2s ease-out forwards 1.5s;
}

@keyframes drawAreaLine {
    to { stroke-dashoffset: 0; }
}

@keyframes fadeInFill {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mini Metrics */
.mini-metrics {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mini-metric-value {
    font-size: 2.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.mini-metric-trend {
    font-size: 0.95rem;
    color: #00e676;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 230, 118, 0.1);
    padding: 6px 12px;
    border-radius: 100px;
    font-weight: 600;
    width: fit-content;
}

/* Floating Crypto Tokens */
.crypto-icon {
    position: absolute;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    z-index: 4;
    font-family: var(--font-heading);
}

.btc {
    top: 5%; right: 10%;
    color: #F7931A;
    border-color: rgba(247, 147, 26, 0.4);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
    animation: floatIcon 5s ease-in-out infinite;
}

.eth {
    top: 45%; left: 5%;
    color: #627EEA;
    border-color: rgba(98, 126, 234, 0.4);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
    animation: floatIcon 6s ease-in-out infinite 1s;
}

.sol {
    bottom: -5%; right: 20%;
    color: #14F195;
    border-color: rgba(20, 241, 149, 0.4);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
    animation: floatIcon 4.5s ease-in-out infinite 2s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(8deg); }
}

/* =========================================
   Section 2: World Map (Cinematic)
   ========================================= */
.section-world-map {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cinematic-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.world-headline-group {
    max-width: var(--container-width);
    margin: 0 auto 40px;
    padding: 0 2rem;
    z-index: 10;
    position: relative;
    text-align: center;
}

.world-main-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 0;
    color: #fff;
    text-transform: uppercase;
}

.text-highlight-orange {
    color: var(--primary-accent);
    position: relative;
    display: inline-block;
}

.text-highlight-orange::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--primary-accent);
    opacity: 0.15;
    z-index: -1;
    filter: blur(8px);
}

.what-we-are-content {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

.what-we-are-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary-accent);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.what-we-are-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    font-weight: 400;
}

/* Map Visualization Wrapper */
.map-visualization-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(255, 90, 0, 0.03) 0%, transparent 70%);
}

.map-neural-background {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255,90,0,0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
    animation: meshDrift 60s linear infinite;
}

@keyframes meshDrift {
    from { background-position: 0 0; }
    to { background-position: 40px 40px; }
}

.map-grid-layer {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 100px 100px;
    transform: perspective(1000px) rotateX(60deg) scale(2);
    transform-origin: center bottom;
    opacity: 0.2;
}

.cinematic-world-map {
    width: 95%;
    max-width: 1600px;
    height: 100%;
    z-index: 5;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.8));
}

.map-landmasses {
    fill: #0a0a0f;
    transition: fill 0.5s ease;
}

.map-path {
    fill: #0d0d14;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 0.4;
    transition: all 0.5s ease;
}

.map-path:hover {
    fill: #141420;
    stroke: rgba(255, 90, 0, 0.1);
}

.con-line {
    fill: none;
    stroke: var(--primary-accent);
    stroke-width: 1;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    opacity: 0.4;
    filter: drop-shadow(0 0 2px var(--primary-accent));
}

.con-line.active {
    animation: drawLine 3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.node-group {
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.node-group.active {
    opacity: 1;
    transform: translateY(0);
}

.node-glow {
    fill: var(--primary-accent);
    opacity: 0.2;
    filter: blur(4px);
    animation: nodePulse 3s ease-in-out infinite;
}

.node-core {
    fill: var(--primary-accent);
    filter: drop-shadow(0 0 5px var(--primary-accent));
}

.node-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 600;
    fill: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    pointer-events: none;
    text-anchor: middle;
}

/* Signal Pulse Styles */
.signal-pulse {
    opacity: 0;
    filter: drop-shadow(0 0 5px var(--primary-accent));
}

.signal-pulse.active {
    opacity: 1;
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.5); opacity: 0.4; }
}



/* Background Effects */
.map-particle-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.map-particle-container::before,
.map-particle-container::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.05;
    animation: particleDrift 40s linear infinite;
}

.map-particle-container::after {
    background-size: 150px 150px;
    opacity: 0.02;
    animation: particleDrift 60s linear infinite reverse;
}

@keyframes particleDrift {
    from { transform: translate(0, 0) rotate(0deg); }
    to { transform: translate(50px, 50px) rotate(5deg); }
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .world-main-headline { font-size: 3rem; }
}

@media (max-width: 768px) {
    .section-world-map { padding: 80px 0; }
    .world-main-headline { font-size: 2.22rem; }
    .what-we-are-text { font-size: 1.1rem; }
    .map-visualization-wrapper { height: 400px; }
}

/* =========================================
   Section 3: Services
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Center the 5th card or span it */
.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
    grid-column: auto;
}

/* Service Card Transitions & Watermark */
.service-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::after {
    content: attr(data-number);
    position: absolute;
    right: 5%;
    bottom: -15%;
    font-family: var(--font-mono);
    font-size: 8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    pointer-events: none;
    line-height: 1;
    transition: var(--transition-smooth);
}

.service-card>* {
    position: relative;
    z-index: 2;
}

@media (min-width: 769px) {
    .service-card:hover {
        background: linear-gradient(145deg, rgba(255, 90, 0, 0.06) 0%, rgba(255, 255, 255, 0.015) 100%);
        border-color: rgba(255, 90, 0, 0.35);
        box-shadow: 
            0 16px 48px -8px rgba(0, 0, 0, 0.6),
            0 0 40px rgba(255, 90, 0, 0.08),
            inset 0 1px 0 rgba(255, 90, 0, 0.15);
        transform: translateY(-4px) scale(1.01);
    }

    .service-card:hover::after {
        color: rgba(255, 90, 0, 0.1);
        transform: translateY(-10px);
    }
}

/* Accordion Structuring */
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-title-group {
    flex: 1;
}

.accordion-icon {
    display: none;
}

.card-number {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--primary-accent);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--secondary-accent);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.card-desc {
    margin-bottom: 0;
}

/* =========================================
   Section 4: Process
   ========================================= */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 4rem;
}

.timeline-line {
    position: absolute;
    top: 24px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--bg-dark), var(--border-color) 10%, var(--border-color) 90%, var(--bg-dark));
    z-index: 1;
    overflow: hidden;
}

.timeline-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 90, 0, 0.1) 40%, 
        #FF5A00 50%, 
        rgba(255, 90, 0, 0.1) 60%, 
        transparent 100%);
    animation: bloodVeinFlow 3s linear infinite;
    z-index: 2;
}

@keyframes bloodVeinFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.process-step {
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
}

.step-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.process-step:hover .step-marker {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    border-color: transparent;
    color: white;
    box-shadow: 0 12px 32px rgba(255, 90, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: scale(1.1) translateY(-4px);
}

.step-title {
    font-size: 1.25rem;
    font-family: var(--font-body);
}

.step-desc {
    font-size: 0.9rem;
}

/* =========================================
   Section 5: Why Coinveda
   ========================================= */
/* Expanding Cards UI - Why Coinveda */
.expanding-cards-wrapper {
    display: flex;
    width: 100%;
    height: 300px; /* Reduced from 550px */
    gap: 12px;
    margin-top: 4rem;
}

.reason-expand-card {
    flex: 0.6;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.reason-expand-card.active {
    flex: 4;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 90, 0, 0.3);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5), 
                inset 0 0 40px rgba(255, 90, 0, 0.05);
}

/* Sidebar (Collapsed State) */
.card-side-bar {
    width: 100px; /* Increased from 80px */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 25px 5px; /* Adjusted padding */
    flex-shrink: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
}

.reason-expand-card.active .card-side-bar {
    border-right-color: transparent;
    opacity: 0.3;
    pointer-events: none;
}

.card-number {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-accent);
}

.card-vertical-title {
    writing-mode: horizontal-tb; /* Removed vertical-rl */
    transform: none; /* Removed rotation */
    font-size: 0.85rem; /* Smaller font for sidebar */
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    white-space: normal; /* Allow wrapping */
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    line-height: 1.3;
}

.card-icon-arrow {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.2);
    transition: transform 0.4s ease;
}

.reason-expand-card.active .card-icon-arrow {
    transform: rotate(90deg);
    opacity: 0;
}

/* Main Content (Expanded State) */
.card-main-content {
    flex-grow: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 30px 40px 10px 40px; /* Reduced bottom padding */
    display: flex;
    flex-direction: column;
}

.reason-expand-card.active .card-main-content {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.3s;
}

.card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.content-header {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.2rem; /* Reduced from 2.5rem */
}

.content-number {
    font-size: 2.8rem; /* Reduced from 4rem */
    font-family: var(--font-mono);
    color: rgba(255, 90, 0, 0.15);
    line-height: 0.8;
    font-weight: 800;
}

.content-title {
    font-size: 1.6rem; /* Reduced from 2rem */
    margin-bottom: 0;
    color: white;
}

/* Content Layout (Simplified Text-Only) */
.content-body {
    display: flex;
    justify-content: flex-start; /* Start from top to eliminate bottom space */
    align-items: flex-start;
    max-width: 800px;
    margin: 0;
    text-align: left; /* Left align for a tighter professional look */
}

.content-desc {
    font-size: 1.15rem; /* Slightly smaller for density */
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-weight: 300;
}

.reason-expand-card:hover .content-desc {
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .expanding-cards-wrapper {
        flex-direction: column;
        height: auto;
        gap: 1rem;
    }

    .reason-expand-card {
        flex: none !important;
        width: 100%;
        height: auto;
        min-height: 80px;
        flex-direction: column;
    }

    .card-side-bar {
        width: 100%;
        height: 80px;
        flex-direction: row;
        padding: 0 25px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .card-vertical-title {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .reason-expand-card.active .card-main-content {
        height: auto;
    }

    .content-desc {
        font-size: 1.1rem;
    }
}

/* =========================================
   Section: Stats Bar
   ========================================= */
.section-stats {
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 4rem;
    background: rgba(10, 10, 10, 0.4);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 90, 0, 0.5), transparent);
}

@media (max-width: 768px) {
    .stats-bar {
        flex-direction: column;
        gap: 2rem;
        padding: 2.5rem 2rem;
    }

    .stat-divider {
        width: 100px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 90, 0, 0.5), transparent);
    }
}

/* =========================================
   Section 6: For Brands
   ========================================= */
.overflow-hidden {
    overflow: hidden;
}

.brands-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
}

.ticker-wrap {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    background: rgba(255, 90, 0, 0.05);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.ticker {
    display: flex;
    width: max-content;
    animation: ticker 30s linear infinite;
    align-items: center;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.ticker-item {
    padding: 0 2rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.8);
}

.ticker-divider {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--secondary-accent);
    flex-shrink: 0;
}

/* =========================================
   Section 7: For Creators
   ========================================= */
.creators-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.creator-benefits {
    margin: 2rem 0;
}

.creator-benefits li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.creator-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 2px;
    background-color: var(--secondary-accent);
}

.stat-box {
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 2rem;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-value.highlight-blue {
    color: var(--primary-accent);
}

.stat-value.highlight-cyan {
    color: var(--secondary-accent);
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.creator-cta {
    margin-top: 2rem;
}

/* =========================================
   Section: Trusted Strip
   ========================================= */
.trusted-strip {
    background: rgba(10, 10, 10, 0.4);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.fade-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, var(--bg-dark), transparent);
    z-index: 2;
    pointer-events: none;
}

.fade-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to left, var(--bg-dark), transparent);
    z-index: 2;
    pointer-events: none;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding-left: 5rem;
    width: max-content;
    animation: marquee-left-to-right 30s linear infinite;
}

.logo-item {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    /* Muted gray/white */
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    cursor: default;
}

.logo-item:hover {
    color: rgba(255, 255, 255, 0.9);
}

@keyframes marquee-left-to-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

@media (max-width: 768px) {
    .trusted-strip {
        padding: 2rem 0;
    }

    .logo-item {
        font-size: 1.4rem;
    }

    .logo-track {
        gap: 3rem;
        padding-left: 3rem;
    }

    .fade-left,
    .fade-right {
        width: 80px;
    }
}

/* =========================================
   Contact Section — Conversion Block
   ========================================= */
.section-contact {
    padding: var(--section-spacing) 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.section-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 90, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.contact-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-contact .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 3.5rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
    box-shadow:
        0 8px 32px -8px rgba(0, 0, 0, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.06);
}

/* Orange edge glow line at the top */
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
    opacity: 0.6;
    transition: opacity 0.4s;
}

/* Radial shimmer glow on hover */
.contact-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    background: radial-gradient(circle at 50% 0%, rgba(255, 90, 0, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 90, 0, 0.35);
    box-shadow:
        0 20px 60px -15px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(255, 90, 0, 0.12),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover::after {
    opacity: 1;
}

.contact-card .contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 90, 0, 0.1);
    border: 1px solid rgba(255, 90, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-accent);
    transition: all 0.4s;
}

.contact-card:hover .contact-icon {
    background: var(--primary-accent);
    color: #fff;
    box-shadow: 0 0 25px rgba(255, 90, 0, 0.5);
    transform: scale(1.1);
}

.contact-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #fff;
}

.contact-info {
    margin-bottom: 0;
}

.contact-link {
    color: var(--text-secondary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.contact-link:hover {
    color: var(--primary-accent);
    border-bottom-color: var(--primary-accent);
}

.section-contact .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.section-contact .social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.4s;
}

.section-contact .social-icon:hover {
    background: var(--primary-accent);
    border-color: var(--primary-accent);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 90, 0, 0.5);
    transform: translateY(-3px) scale(1.1);
}

/* =========================================
   Section 8: Footer
   ========================================= */
.site-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
    background: linear-gradient(to bottom, transparent, rgba(255, 90, 0, 0.05));
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-tagline {
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    font-family: var(--font-mono);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.link-group ul li {
    margin-bottom: 0.75rem;
}

.link-group a {
    color: var(--text-secondary);
}

.link-group a:hover {
    color: var(--secondary-accent);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
}

.social-icon:hover {
    background: var(--primary-accent);
    border-color: var(--primary-accent);
    color: white !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* =========================================
   Animations
   ========================================= */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translate(0, 0) !important;
}

/* Section titles: fade-in + slide-up (20px) */
.section-title.animate-on-scroll,
.about-content.animate-on-scroll,
.creators-content.animate-on-scroll,
.section-header.animate-on-scroll {
    transform: translateY(20px);
}

/* Cards: fade-in only */
.service-card.animate-on-scroll,
.reason-card.animate-on-scroll,
.stat-box.animate-on-scroll,
.quote-box.animate-on-scroll {
    transform: translateY(0);
}

/* Process steps: sequential reveal from left to right */
.process-step.animate-on-scroll {
    transform: translateX(-30px);
}

/* Delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Process steps 0.15s stagger overrides */
.process-step.delay-1 {
    transition-delay: 0.15s;
}

.process-step.delay-2 {
    transition-delay: 0.30s;
}

.process-step.delay-3 {
    transition-delay: 0.45s;
}

.process-step.delay-4 {
    transition-delay: 0.60s;
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline-line {
        top: 0;
        bottom: 0;
        left: 34px;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, var(--bg-dark), var(--border-color) 10%, var(--border-color) 90%, var(--bg-dark));
    }

    .process-step {
        flex-direction: row;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .step-marker {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .creators-layout {
        grid-template-columns: 1fr;
    }

    .creators-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* Logo Accent */
.logo-accent {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   Creator Application Form
   ========================================= */
.section-creator-form {
    padding: 4rem 0 var(--section-spacing);
    position: relative;
    z-index: 10;
}

.section-creator-form.form-visible {
    display: block !important;
    animation: slideFormIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideFormIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.creator-form-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    position: relative;
}

.form-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.form-close:hover {
    color: var(--primary-accent);
    background: rgba(255, 90, 0, 0.1);
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.creator-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-input:focus {
    border-color: var(--primary-accent);
    background: rgba(255, 90, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 90, 0, 0.1);
}

.btn-form-submit {
    margin-top: 0.5rem;
    width: 100%;
    padding: 1.1rem;
    font-size: 1.05rem;
}

.form-feedback {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
}

.form-feedback.success {
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.3);
    color: #00c853;
}

.form-feedback.error {
    background: rgba(255, 60, 60, 0.1);
    border: 1px solid rgba(255, 60, 60, 0.3);
    color: #ff3c3c;
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 80px;
    }

    body {
        font-size: 16px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtext {
        margin: 0 auto 3rem auto;
    }

    .phone-container {
        transform: rotateY(0) rotateX(0);
    }

    @keyframes phoneFloat {
        0% {
            transform: translateY(0px) rotateY(0) rotateX(0);
        }

        50% {
            transform: translateY(-20px) rotateY(0) rotateX(0);
        }

        100% {
            transform: translateY(0px) rotateY(0) rotateX(0);
        }
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        border-left: 1px solid var(--border-color);
        padding: 6rem 2rem 2rem;
        flex-direction: column;
        align-items: flex-start;
        display: flex !important;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 12px 0;
        width: 100%;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1000;
    }

    .ticker-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
    }

    .ticker {
        animation: none;
        width: max-content;
        padding: 0 1rem;
    }

    .ticker-item {
        scroll-snap-align: center;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .accordion-header {
        cursor: pointer;
        padding: 1rem 0;
        align-items: center;
    }

    .card-title-group {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .card-number {
        margin-bottom: 0;
        border-bottom: none;
        padding-bottom: 0;
    }

    .card-title {
        margin-bottom: 0;
        font-size: 1.25rem;
    }

    .accordion-icon {
        display: block;
        width: 20px;
        height: 20px;
        position: relative;
        transition: transform 0.3s ease;
    }

    .accordion-icon::before,
    .accordion-icon::after {
        content: '';
        position: absolute;
        background: var(--text-primary);
        transition: transform 0.3s ease;
    }

    .accordion-icon::before {
        top: 9px;
        left: 0;
        width: 20px;
        height: 2px;
    }

    .accordion-icon::after {
        top: 0;
        left: 9px;
        width: 2px;
        height: 20px;
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        margin-top: 0;
    }

    .service-card.active .accordion-content {
        max-height: 500px;
        opacity: 1;
        margin-top: 1.5rem;
    }

    .service-card.active .accordion-icon::after {
        transform: rotate(90deg);
        opacity: 0;
    }

    .service-card.active {
        border-color: rgba(255, 90, 0, 0.4);
        background: rgba(255, 90, 0, 0.05);
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact Section — Mobile */
    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .creators-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Global Network Map Mobile Refinements */
@media (max-width: 768px) {
    .heroic-map-title {
        font-size: 2rem;
    }
    .global-network-wrapper {
        min-height: 350px;
    }
    .map-node text {
        display: none;
    }
}