/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #1f2937;
    --accent-color: #00d9ff;
    --background-dark: #0f0f23;
    --background-darker: #0a0a1a;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --border-color: #374151;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #00d9ff 0%, #0099cc 100%);
    --gradient-accent: linear-gradient(135deg, #6366f1 0%, #00d9ff 100%);
    --shadow-lg: 0 20px 40px -10px rgba(99, 102, 241, 0.3), 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 30px 60px -15px rgba(99, 102, 241, 0.4), 0 15px 30px -5px rgba(0, 0, 0, 0.3);
    --glow-purple: 0 0 20px rgba(99, 102, 241, 0.4);
    --glow-cyan: 0 0 20px rgba(0, 217, 255, 0.4);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--glow-purple);
    border-color: rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: #374151;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-logo i {
    color: var(--primary-color);
    font-size: 24px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    gap: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 70% 30%, rgba(0, 217, 255, 0.1) 0%, transparent 40%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 24px;
    box-shadow: var(--glow-purple);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Dashboard Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    width: 100%;
    max-width: 500px;
    background: var(--background-darker);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
}

.mockup-header {
    background: var(--secondary-color);
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
}

.mockup-controls {
    display: flex;
    gap: 8px;
}

.mockup-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
}

.mockup-controls span:first-child {
    background: #ef4444;
}

.mockup-controls span:nth-child(2) {
    background: #f59e0b;
}

.mockup-controls span:last-child {
    background: #10b981;
}

.mockup-content {
    padding: 0;
    height: 300px;
    display: flex;
    align-items: flex-end;

    /* Decorative gradient white lines covering full mockup window */
    background:
        repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 8px),
        repeating-linear-gradient(-45deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 8px);
}

.chart-placeholder {
    width: 100%;
    height: 200px;
    padding: 32px;
    display: flex;
    align-items: end;
    gap: 8px;
}

.chart-bars {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    height: 200px;
    padding: 0;
    position: relative;


}

.chart-bars::before {
    content: none;
    display: none;
}

.bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
    position: relative;
    z-index: 2;
}

.profit-label {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 6px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: profit-glow 2s ease-in-out infinite alternate;
    position: absolute;
    width: max-content;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.profit-label:contains('+') {
    color: #00ff88;
    border-color: rgba(0, 255, 136, 0.3);
}

.profit-label:contains('-') {
    color: #ff4757;
    border-color: rgba(255, 71, 87, 0.3);
}



.bar {
    width: 100%;
    position: absolute;
    left: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.bar.green {
    background: linear-gradient(180deg, #00ff88 0%, #00cc6a 100%);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
    border-radius: 6px 6px 0 0;
    bottom: 50%;
    transform-origin: bottom;
    animation: bar-grow-up 3s ease-out, bar-pulse 4s ease-in-out infinite;
}

.bar.red {
    background: linear-gradient(180deg, #ff4757 0%, #ff3742 100%);
    box-shadow: 0 4px 20px rgba(255, 71, 87, 0.4);
    border-radius: 0 0 6px 6px;
    top: 50%;
    transform-origin: top;
    animation: bar-grow-down 3s ease-out, bar-pulse 4s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Common flex alignment */
.bar {
    display: flex;
    justify-content: center;
}

.bar.green {
    align-items: center;
}

.percent-inside {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 6px rgba(0, 255, 200, 0.7);
    pointer-events: none;
}

.bar:hover {
    transform: scaleY(1.05);
    filter: brightness(1.2);
}

.percent-label {
    font-size: 10px;
    font-weight: 500;
    padding: 2px 4px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    position: absolute;
    width: max-content;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.percent-label:contains('+') {
    color: #00ff88;
}

.percent-label:contains('-') {
    color: #ff4757;
}

/* Position labels for green bars (profit) - completely above the bars */
.bar-container.green .profit-label {
    bottom: calc(100% + 6px);
    transform: translateX(-50%);
}

.bar-container.green .percent-label {
    bottom: calc(100% + 18px);
    transform: translateX(-50%);
}

/* Position labels for red bars (loss) - completely below the bars */
.bar-container.red .profit-label {
    top: calc(100% + 6px);
    transform: translateX(-50%);
}

.bar-container.red .percent-label {
    top: calc(100% + 18px);
    transform: translateX(-50%);
}

@keyframes bar-grow-up {
    from { 
        height: 0;
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

@keyframes bar-grow-down {
    from { 
        height: 0;
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

@keyframes bar-pulse {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.02);
    }
}

@keyframes profit-glow {
    0% {
        box-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
    }
    100% {
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.6), 0 0 25px rgba(0, 255, 136, 0.3);
    }
}

/* Set bar heights based on profit percentages */
.bar[data-height="60"] { height: 34px; } /* +240% */
.bar[data-height="80"] { height: 68px; } /* +580% */
.bar[data-height="40"] { height: 18px; } /* -80% (red, goes down) */
.bar[data-height="90"] { height: 135px; } /* +1250% (highest) */
.bar[data-height="70"] { height: 42px; } /* +320% */
.bar[data-height="85"] { height: 99px; } /* +890% */
.bar[data-height="65"] { height: 51px; } /* +410% */



/* Features Section */
.features {
    padding: 120px 0;
    background: var(--background-darker);
}

/* Social Intelligence Section */
.social-intelligence {
    padding: 120px 0;
    background: var(--background-dark);
    position: relative;
    overflow: hidden;
}

.social-intelligence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(0, 217, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.social-header {
    text-align: center;
    margin-bottom: 80px;
}

.social-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #00d9ff 0%, #6366f1 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

.social-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

/* Social Network Visualization */
.social-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.social-network {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.central-node {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--glow-purple);
    z-index: 10;
    animation: pulse-glow 3s ease-in-out infinite;
}

.central-node i {
    font-size: 24px;
    margin-bottom: 4px;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: var(--glow-purple);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6), var(--glow-cyan);
        transform: scale(1.05);
    }
}

.source-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.source-node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--background-darker);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.source-node:hover {
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: var(--glow-purple);
}

.source-node i {
    font-size: 20px;
    margin-bottom: 4px;
}

/* Position source nodes in a circle */
.source-node.twitter {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.source-node.telegram {
    top: 25%;
    right: 10%;
    animation-delay: 1s;
}

.source-node.discord {
    bottom: 25%;
    right: 10%;
    animation-delay: 2s;
}

.source-node.reddit {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 3s;
}

.source-node.github {
    bottom: 25%;
    left: 10%;
    animation-delay: 4s;
}

.source-node.medium {
    top: 25%;
    left: 10%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(-50%);
    }
    50% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.source-node:not(.twitter):not(.reddit) {
    animation-name: float-side;
}

@keyframes float-side {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Social Feed Lines - Clean Connection Design */
.social-network {
    position: relative;
}

/* Create connection lines from center to each social node */
.social-network::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 120px;
    background: linear-gradient(0deg, var(--accent-color) 0%, transparent 100%);
    transform: translate(-50%, -100%);
    opacity: 0.6;
    animation: feed-line-1 2s ease-in-out infinite;
    z-index: 1;
}

.social-network::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 85px;
    background: linear-gradient(45deg, var(--accent-color) 0%, transparent 100%);
    transform: translate(-50%, -50%) rotate(45deg);
    transform-origin: bottom;
    opacity: 0.6;
    animation: feed-line-2 2s ease-in-out infinite 0.3s;
    z-index: 1;
}

/* Individual feed lines for each social platform */
.source-node::before {
    content: '';
    position: absolute;
    width: 1px;
    background: linear-gradient(var(--accent-color), var(--primary-color));
    opacity: 0.7;
    animation: data-flow 3s ease-in-out infinite;
    z-index: 2;
}

/* Twitter - top */
.source-node.twitter::before {
    top: 100%;
    left: 50%;
    height: 60px;
    transform: translateX(-50%);
    animation-delay: 0s;
}

/* Telegram - top right */
.source-node.telegram::before {
    top: 70%;
    left: 1%;
    height: 80px;
    transform: rotate(60deg);
    transform-origin: top;
    animation-delay: 0.5s;
}

/* Discord - bottom right */
.source-node.discord::before {
    bottom: 70%;
    left: 1%;
    height: 80px;
    transform: rotate(-60deg);
    transform-origin: bottom;
    animation-delay: 1s;
}

/* Reddit - bottom */
.source-node.reddit::before {
    top: -80%;
    left: 50%;
    height: 60px;
    transform: translateX(-50%) rotate(180deg);
    animation-delay: 1.5s;
}

/* GitHub - bottom left */
.source-node.github::before {
    bottom: 70%;
    right: 1%;
    height: 80px;
    transform: rotate(60deg);
    transform-origin: bottom;
    animation-delay: 2s;
}

/* Medium - top left */
.source-node.medium::before {
    top: 70%;
    right: 1%;
    height: 80px;
    transform: rotate(-60deg);
    transform-origin: top;
    animation-delay: 2.5s;
}

@keyframes feed-line-1 {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 3px var(--accent-color);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 10px var(--accent-color);
    }
}

@keyframes feed-line-2 {
    0%, 100% {
        opacity: 0.2;
        box-shadow: 0 0 3px var(--primary-color);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 8px var(--primary-color);
    }
}

@keyframes data-flow {
    0% {
        opacity: 0.3;
        box-shadow: 0 0 2px var(--accent-color);
        filter: brightness(1);
    }
    50% {
        opacity: 0.9;
        box-shadow: 0 0 8px var(--accent-color), 0 0 12px var(--primary-color);
        filter: brightness(1.5);
    }
    100% {
        opacity: 0.3;
        box-shadow: 0 0 2px var(--accent-color);
        filter: brightness(1);
    }
}

/* Social Stats Layout */
.social-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.social-stat {
    flex: 1 1 120px;
    text-align: center;
}

/* Intelligence features layout */
.intelligence-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.intel-feature {
    flex: 1 1 260px;
    display: flex;
    gap: 16px;
}
.intel-feature .intel-icon {
    flex-shrink: 0;
}


/* About & TOS Layout */
.about-grid,
.content-wrapper {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.about-text {
    flex: 1 1 300px;
}
.about-stats,
.term-stats {
    flex: 1 1 240px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.stat-card {
    flex: 1 1 110px;
    text-align: center;
}

/* Responsive stack for About/TOS */
@media (max-width: 768px) {
    .about-grid,
    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .about-text,
    .about-stats,
    .term-stats {
        width: 100%;
    }
}

/* Hide footer links section */
.footer-links {
    display: none;
}

/* =====================
   Responsive - Tablets
   ===================== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Navbar collapse */
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        background: var(--secondary-color);
        flex-direction: column;
        gap: 16px;
        padding: 24px 0;
        transition: left 0.3s ease;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-actions {
        display: none;
    }
    .nav-actions.active {
        display: block;
        margin-top: 16px;
    }

    /* Hero section */
    .hero .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-visual {
        margin-top: 32px;
        width: 100%;
    }

    /* Grids stack */
    .features-grid,
    .values-grid,
    .tech-features,
    .intelligence-features {
        grid-template-columns: 1fr !important;
    }

    .social-grid {
        flex-direction: column;
    }
    .social-content {
        width: 100%;
    }
    .social-visual {
        width: 100%;
        margin-bottom: 32px;
    }
}

/* =====================
   Responsive - Phones
   ===================== */
@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    .btn-large {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .social-stat {
        flex: 1 1 100%;
    }
    .intel-feature {
        flex: 1 1 100%;
    }
}

/* Remove the awkward dots */
.source-node::after {
    display: none;
}

/* Intelligence Features */
.intelligence-features {
    display: grid;
    gap: 32px;
}

.intel-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.intel-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.intel-text h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.intel-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Social Stats */
.social-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.social-stat {
    padding: 24px;
    background: var(--background-darker);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.social-stat:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), var(--glow-purple);
}

.social-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.social-stat .stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--background-dark);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), var(--glow-purple);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    text-align: center;
    background: var(--background-dark);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: var(--background-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo i {
    color: var(--primary-color);
    font-size: 24px;
}

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

.link-group h4 {
    margin-bottom: 16px;
    color: var(--text-primary);
}

.link-group a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Page Content Styles for About and TOS */
.page-content {
    padding: 140px 0 80px;
    background: var(--background-dark);
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.terms-section,
.about-text {
    background: var(--background-darker);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.terms-section:hover,
.about-text:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.1);
}

.terms-section h2,
.about-text h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 16px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
    padding-bottom: 8px;
}

.terms-section p,
.about-text p {
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.terms-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.terms-section li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.warning-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 195, 0, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin: 24px 0;
}

.warning-box i {
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.warning-box h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.warning-box p {
    color: var(--text-primary) !important;
    margin-bottom: 0;
}

/* About Page Specific Styles */
.about-hero {
    background: var(--background-darker);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    opacity: 0.9;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.about-stats {
    display: grid;
    gap: 24px;
}

.stat-card {
    background: var(--background-darker);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-orange);
    transform: translateY(-4px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.stat-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-info p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.values-section,
.tech-section {
    padding: 80px 0;
    background: var(--background-darker);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.value-card {
    background: var(--background-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), var(--glow-orange);
    transform: translateY(-8px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin: 0 auto 24px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.tech-content {
    max-width: 800px;
    margin: 0 auto;
}

.tech-features {
    margin-top: 40px;
}

.tech-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--background-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.tech-feature:hover {
    border-color: var(--accent-color);
    box-shadow: var(--glow-cyan);
}

.tech-feature i {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.tech-feature h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.tech-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Vouches Marquee */
.vouches-bar {
    padding: 60px 0;
    background: var(--background-darker);
    overflow: hidden;
}

.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 24px;
    animation: marquee 60s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

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

.vouch {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 260px;
    background: var(--background-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.vouch-avatar {
    width: 44px;
    height: 44px;
    clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
    flex-shrink: 0;
    border: 2px solid var(--border-color);
}

.vouch-info h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.vouch-info h4 span {
    font-weight: 400;
    color: var(--text-secondary);
}

.vouch-info p {
    margin: 0;
    font-size: 13px;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 32px;
    }

    .dashboard-mockup {
        transform: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

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

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }
}
