:root {
    --bg-dark: #020408;
    --bg-card: #0b101b;
    --primary: #00f2ea;
    /* Cyber Cyan */
    --primary-dim: rgba(0, 242, 234, 0.1);
    --secondary: #4361ee;
    /* Royal Blue */
    --accent: #ffffff;
    --text-main: #f0f4f8;
    --text-muted: #94a3b8;
    --border-color: rgba(67, 97, 238, 0.2);
    --font-heading: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-heading);
    overflow-x: hidden;
    line-height: 1.6;
    /* Subtle geometric grid instead of scanlines */
    background-image:
        radial-gradient(circle at 50% 50%, rgba(67, 97, 238, 0.05) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
}

/* Removed Noise Overlay for cleaner look */

/* Typography Refinement */
h1 {
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: none;
    /* Removed glitch shadow */
}

h2 {
    font-weight: 600;
    letter-spacing: -0.5px;
    text-shadow: none;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: rgba(2, 4, 8, 0.85);
    /* Darker, more solid */
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle border */
    box-shadow: none;
    /* Removed neon glow */
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    /* Back to sans-serif for clean look */
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    color: var(--primary);
}

.highlight {
    color: var(--primary);
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: none;
    /* Removed uppercase */
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #fff;
    text-shadow: none;
}

.btn-nav {
    background: rgba(0, 242, 234, 0.1);
    border: 1px solid var(--primary);
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    /* Softer rounded corners */
    color: var(--primary) !important;
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--primary);
    color: #000 !important;
    box-shadow: 0 0 15px var(--primary-dim);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    padding-top: 60px;
    gap: 5rem;
    /* subtle gradient background spot */
    background: radial-gradient(circle at 80% 20%, rgba(0, 242, 234, 0.08) 0%, transparent 40%);
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    background: rgba(67, 97, 238, 0.1);
    border: 1px solid rgba(67, 97, 238, 0.3);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    font-family: var(--font-mono);
    color: var(--secondary);
    /* softer blue */
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: none;
    font-weight: 600;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: none;
    /* Clean sentence case */
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 520px;
    font-family: var(--font-heading);
    border-left: none;
    padding-left: 0;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    text-transform: none;
    clip-path: none;
    border-radius: 12px;
    transition: 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: #fff;
    color: #000;
    border: none;
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 242, 234, 0.2);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

/* Hero Visual (Refined Tech Chart) */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-visual::before {
    /* Glow behind chart */
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--secondary);
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
}

.chart-mockup {
    width: 100%;
    max-width: 550px;
    height: 400px;
    background: rgba(11, 16, 27, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.chart-body {
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    /* Tighter grid */
    padding: 20px;
    position: relative;
    height: 100%;
    width: 100%;
}

.candle {
    width: 6%;
    /* Relative width */
    position: absolute;
    border-radius: 1px;
    z-index: 2;
}

.candle.green {
    background: #089981;
    color: #089981;
}

/* TradingView Green */
.candle.red {
    background: #f23645;
    color: #f23645;
}

/* TradingView Red */

.wick {
    width: 2px;
    background: currentColor;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    z-index: -1;
}

.liquidity-line {
    position: absolute;
    width: 100%;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.liquidity-line::after {
    content: '✖ LIQUIDITY SWEEP';
    position: absolute;
    right: 20px;
    top: -24px;
    background: rgba(255, 0, 0, 0.1);
    color: #f23645;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(242, 54, 69, 0.3);
    box-shadow: 0 0 10px rgba(242, 54, 69, 0.1);
    font-family: var(--font-mono);
}

.order-block-box {
    position: absolute;
    background: rgba(8, 153, 129, 0.15);
    border: 1px solid rgba(8, 153, 129, 0.6);
    border-radius: 2px;
    z-index: 1;
    box-shadow: 0 0 15px rgba(8, 153, 129, 0.1);
}

.volume-bar {
    position: absolute;
    bottom: 0;
    width: 6%;
    opacity: 0.5;
    border-radius: 2px 2px 0 0;
}

.volume-bar.green {
    background: #089981;
}

.volume-bar.red {
    background: #f23645;
}

.floating-card {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: rgba(21, 25, 36, 0.95);
    /* TradingView dark blue */
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-card span:last-child {
    color: #089981;
    font-weight: bold;
    font-family: var(--font-mono);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Sections */
.section {
    padding: 8rem 5%;
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Indicators Grid - Clean Glassmorphism */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: rgba(11, 16, 27, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

/* Remove gradient border hover */
.card::before {
    display: none;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(67, 97, 238, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: linear-gradient(180deg, rgba(67, 97, 238, 0.05) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.card-content {
    padding: 2.5rem;
}

.card-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
}

.tags span {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-muted);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-family: var(--font-mono);
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-link {
    display: block;
    margin-top: 1rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
}

.btn-link:hover {
    gap: 0.8rem;
}

/* Services */
.services-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.service-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    padding: 2rem;
    width: 300px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    position: relative;
    border-radius: 24px;
}

.service-item:hover {
    border-color: var(--secondary);
    background: rgba(67, 97, 238, 0.05);
    box-shadow: none;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

/* CTA Box */
.cta-box {
    background: radial-gradient(circle at center, rgba(16, 27, 66, 0.5), #0b101b);
    border: 1px solid rgba(67, 97, 238, 0.3);
    padding: 5rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 50px rgba(67, 97, 238, 0.1);
    border-radius: 30px;
}

.cta-box::after {
    display: none;
}

.cta-box h3 {
    margin-bottom: 2.5rem;
}

/* Footer */
footer {
    padding: 5rem 5%;
    background: #020408;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-heading);
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0;
}

.footer-col a {
    color: var(--text-muted);
}

.footer-col a:hover {
    color: #fff;
    text-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-buttons {
        justify-content: center;
    }
}