/* =====================================
   CSS Custom Properties (Design System)
   ===================================== */
:root {
    /* Colors - Dark Mode Inverted */
    --color-white: #0a0a0a;
    --color-black: #e5e5e5;
    --color-gray-50: #0f0f0f;
    --color-gray-100: #141414;
    --color-gray-200: #1a1a1a;
    --color-gray-300: #262626;
    --color-gray-400: #404040;
    --color-gray-500: #525252;
    --color-gray-600: #737373;
    --color-gray-700: #a3a3a3;
    --color-gray-800: #d4d4d4;
    --color-gray-900: #e5e5e5;

    /* Accent Colors - Monotone */
    --color-accent-1: #525252;
    --color-accent-2: #404040;
    --color-accent-3: #262626;
    --gradient-primary: linear-gradient(135deg, #404040 0%, #262626 50%, #171717 100%);
    --gradient-subtle: linear-gradient(180deg, rgba(64, 64, 64, 0.08) 0%, rgba(38, 38, 38, 0.08) 100%);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
}

/* =====================================
   Base Styles
   ===================================== */
* {
    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-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--color-gray-900);
    background-color: var(--color-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* =====================================
   Navigation
   ===================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-base);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: #a3a3a3;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.beta-badge {
    font-family: var(--font-mono);
    font-size: 0.5625rem;
    font-weight: var(--font-weight-regular);
    color: #404040;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.125rem 0.375rem;
    border-radius: 2px;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.nav-links a {
    color: #525252;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: #a3a3a3;
}

.nav-cta {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a3a3a3 !important;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: #e5e5e5 !important;
}

/* =====================================
   Hero Section
   ===================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--color-black);
    margin-bottom: var(--space-lg);
}

.hero-title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-gray-600);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    opacity: 0;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-dashboard {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    width: 100%;
    max-width: 420px;
    opacity: 0;
    transform: translateY(20px);
}

.dashboard-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dashboard-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dashboard-stat .stat-label {
    margin-bottom: 0;
}

.dashboard-stat .stat-value {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: #a3a3a3;
}

.dashboard-graph {
    padding-top: var(--space-lg);
    height: 60px;
    position: relative;
}

.graph-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.graph-line::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(64, 64, 64, 0.3) 20%,
        rgba(64, 64, 64, 0.5) 40%,
        rgba(64, 64, 64, 0.3) 60%,
        rgba(64, 64, 64, 0.6) 80%,
        rgba(64, 64, 64, 0.4) 100%
    );
    mask: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    -webkit-mask: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: #404040;
    font-weight: var(--font-weight-regular);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.stat-value {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-black);
    margin-bottom: var(--space-xs);
}


.hero-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #1a1a1a 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    pointer-events: none;
    animation: pulseGlow 12s ease-in-out infinite;
}

.hero-gradient-2 {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #171717 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    pointer-events: none;
    animation: floatGlow 14s ease-in-out infinite;
}

/* Hero Background Elements */
.hero-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 4px;
    height: 4px;
    background: #404040;
    top: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 3px;
    height: 3px;
    background: #525252;
    top: 60%;
    left: 5%;
    animation: float 10s ease-in-out infinite 1s;
}

.shape-3 {
    width: 5px;
    height: 5px;
    background: #333333;
    top: 30%;
    right: 15%;
    animation: float 9s ease-in-out infinite 0.5s;
}

.shape-4 {
    width: 3px;
    height: 3px;
    background: #404040;
    top: 70%;
    right: 25%;
    animation: float 11s ease-in-out infinite 2s;
}

.shape-5 {
    width: 2px;
    height: 2px;
    background: #525252;
    top: 85%;
    left: 20%;
    animation: float 7s ease-in-out infinite 1.5s;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        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: 80px 80px;
    animation: gridMove 30s linear infinite;
}

/* Keyframe Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.2;
    }
}

@keyframes floatGlow {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.1;
    }
    33% {
        transform: translateY(-30px) translateX(20px);
        opacity: 0.15;
    }
    66% {
        transform: translateY(20px) translateX(-10px);
        opacity: 0.08;
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

/* =====================================
   Buttons
   ===================================== */
.btn {
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background: #e5e5e5;
    color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    animation: btnShine 5s ease-in-out infinite;
}

@keyframes btnShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.btn-primary:hover {
    transform: translateY(-1px);
    background: #d4d4d4;
}

.btn-secondary {
    background: transparent;
    color: #737373;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    color: #a3a3a3;
}

.btn-large {
    font-size: 1.125rem;
    padding: 1.125rem 2.5rem;
}

/* =====================================
   Features Section
   ===================================== */
.features {
    padding: var(--space-3xl) 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Section Decorations */
.section-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0.2;
}

.decoration-line.line-1 {
    width: 300px;
    top: 20%;
    left: -100px;
    animation: slideRight 15s linear infinite;
}

.decoration-line.line-2 {
    width: 200px;
    bottom: 30%;
    right: -100px;
    animation: slideLeft 12s linear infinite;
}

@keyframes slideRight {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(calc(100vw + 100%));
        opacity: 0;
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(calc(-100vw - 100%));
        opacity: 0;
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--color-black);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
    background: #111111;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: #a3a3a3;
    position: relative;
}

.feature-icon::after {
    display: none;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes iconGlow {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.4;
    }
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-black);
    margin-bottom: var(--space-sm);
}

.feature-description {
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* =====================================
   Analytics Section
   ===================================== */
.analytics {
    padding: var(--space-3xl) 0;
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
}

.analytics-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(30, 30, 30, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(20, 20, 20, 0.5) 0%, transparent 50%);
    animation: patternShift 16s ease-in-out infinite;
}

@keyframes patternShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.analytics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.analytics-features {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.analytics-feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-30px);
}

.analytics-feature-icon {
    width: 24px;
    height: 24px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #737373;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.analytics-feature h4 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-black);
    margin-bottom: var(--space-xs);
}

.analytics-feature p {
    color: var(--color-gray-600);
}

.analytics-visual {
    opacity: 0;
    transform: translateX(30px);
}

.dashboard-mockup {
    background: #0a0a0a;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    position: relative;
}

.dashboard-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: dashboardLine 4s ease-in-out infinite;
}

@keyframes dashboardLine {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.dashboard-header {
    padding: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-tabs {
    display: flex;
    gap: var(--space-md);
}

.tab {
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: #525252;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    background: transparent;
    font-family: var(--font-family);
}

.tab:hover {
    color: #a3a3a3;
    background: rgba(255, 255, 255, 0.03);
}

.tab.active {
    background: rgba(255, 255, 255, 0.06);
    color: #e5e5e5;
}

/* Tab Panels */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-content {
    padding: var(--space-xl);
}

.dashboard-content.tab-panel.active {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.metric-card {
    padding: var(--space-lg);
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
}

.metric-label {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: #525252;
    font-weight: var(--font-weight-regular);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-black);
    margin-bottom: var(--space-md);
}

.metric-graph {
    display: flex;
    gap: var(--space-xs);
    align-items: flex-end;
    height: 60px;
}

.graph-bar {
    flex: 1;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 2px;
    transition: all var(--transition-base);
    animation: barPulse 3s ease-in-out infinite;
}

.graph-bar:nth-child(1) { animation-delay: 0s; }
.graph-bar:nth-child(2) { animation-delay: 0.2s; }
.graph-bar:nth-child(3) { animation-delay: 0.4s; }
.graph-bar:nth-child(4) { animation-delay: 0.6s; }
.graph-bar:nth-child(5) { animation-delay: 0.8s; }
.graph-bar:nth-child(6) { animation-delay: 1s; }

@keyframes barPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.graph-bar:hover {
    opacity: 0.8;
}

.metric-trend {
    font-size: 0.875rem;
    color: #525252;
    font-weight: var(--font-weight-medium);
}

/* Metric Row for side-by-side cards */
.metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.metric-card-small {
    padding: var(--space-md);
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
}

.metric-value-small {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-black);
    margin-bottom: var(--space-xs);
}

/* Revenue Graph - monotone */
.revenue-graph .graph-bar {
    background: linear-gradient(180deg, #333333 0%, #1f1f1f 100%);
}

/* Engagement Chart - Ring */
.engagement-chart {
    display: flex;
    justify-content: center;
    padding: var(--space-md) 0;
}

.chart-ring {
    position: relative;
    width: 120px;
    height: 120px;
}

.chart-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: #1a1a1a;
    stroke-width: 8;
}

.ring-fill {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    stroke: #404040;
    stroke-dasharray: 0, 251;
    animation: ringFill 2s ease-out forwards;
}

@keyframes ringFill {
    from {
        stroke-dasharray: 0, 251;
    }
    to {
        stroke-dasharray: 21, 251;
    }
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-black);
}

/* =====================================
   CRM Section
   ===================================== */
.crm {
    padding: var(--space-3xl) 0;
    background: #0a0a0a;
}

.crm-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.crm-visual {
    opacity: 0;
    transform: translateX(-30px);
}

.crm-card {
    background: #0f0f0f;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: var(--space-xl);
}

.influencer-profile {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.influencer-avatar {
    width: 48px;
    height: 48px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #737373;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    position: relative;
}

.influencer-avatar::before {
    display: none;
}

@keyframes avatarFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes avatarRing {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.influencer-info {
    flex: 1;
}

.influencer-info h4 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.influencer-info p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.influencer-status {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: var(--font-weight-semibold);
}

.influencer-status.active {
    background: rgba(255, 255, 255, 0.06);
    color: #737373;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.influencer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

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

.stat-item-label {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    color: #404040;
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.stat-item-value {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-black);
}

.crm-features {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.crm-feature {
    opacity: 0;
    transform: translateX(30px);
}

.crm-feature h4 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-black);
    margin-bottom: var(--space-xs);
}

.crm-feature p {
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* =====================================
   CTA Section
   ===================================== */
.cta {
    padding: var(--space-3xl) 0;
    background: #0f0f0f;
    color: #e5e5e5;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.cta-bg-animation {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.cta-orb.orb-1 {
    width: 300px;
    height: 300px;
    background: #1a1a1a;
    top: -150px;
    left: -100px;
    opacity: 0.5;
    animation: orbFloat1 14s ease-in-out infinite;
}

.cta-orb.orb-2 {
    width: 250px;
    height: 250px;
    background: #171717;
    bottom: -100px;
    right: -50px;
    opacity: 0.4;
    animation: orbFloat2 16s ease-in-out infinite;
}

.cta-orb.orb-3 {
    width: 150px;
    height: 150px;
    background: #1f1f1f;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation: orbPulse 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, 30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 50px) scale(0.95);
    }
}

@keyframes orbFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-40px, -30px) scale(1.15);
    }
}

@keyframes orbPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.08;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.12;
    }
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(30px);
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-400);
    margin-bottom: var(--space-xl);
    opacity: 0;
    transform: translateY(30px);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    opacity: 0;
    transform: translateY(30px);
}

.cta-buttons .btn-primary {
    background: #e5e5e5;
    color: #0a0a0a;
}

.cta-buttons .btn-primary:hover {
    background: #d4d4d4;
}

.cta-note {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #333333;
    letter-spacing: 0.01em;
}

/* =====================================
   Footer
   ===================================== */
.footer {
    background: #0a0a0a;
    color: #525252;
    padding: var(--space-3xl) 0 var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-content {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.footer-logo {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: #a3a3a3;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: #404040;
}

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

.footer-column h4 {
    color: #737373;
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-md);
}

.footer-column a {
    display: block;
    color: #404040;
    text-decoration: none;
    margin-bottom: var(--space-sm);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: #737373;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #333333;
}

/* =====================================
   Responsive Design
   ===================================== */
@media (max-width: 1024px) {

    .hero .container,
    .analytics-content,
    .crm-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero-visual {
        height: 400px;
    }

    .analytics-visual,
    .crm-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: var(--space-md);
    }

    .nav-links a:not(.nav-cta) {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: var(--space-2xl) 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

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

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}