/* ============================================
   ALPHA PROTOCOL — Landing Page Styles v2
   Deep Navy + Cyan + Gold | Futuristic Finance
   ============================================ */

:root {
    --bg-primary: #060a0f;
    --bg-secondary: #0a0f1a;
    --bg-card: rgba(10, 18, 32, 0.7);
    --bg-card-hover: rgba(16, 26, 46, 0.8);
    --cyan: #00E5BF;
    --cyan-dim: #00BFA0;
    --cyan-glow: rgba(0, 229, 191, 0.15);
    --cyan-glow-strong: rgba(0, 229, 191, 0.3);
    --gold: #CBA55A;
    --gold-dim: #A8894A;
    --gold-glow: rgba(203, 165, 90, 0.15);
    --green: #00e676;
    --red: #ff5252;
    --text-primary: #e8ecf4;
    --text-secondary: #8892a8;
    --text-muted: #4a5568;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(0, 229, 191, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    background-image: radial-gradient(ellipse at 50% 0%, rgba(0, 229, 191, 0.04) 0%, transparent 60%),
                       radial-gradient(ellipse at 80% 50%, rgba(203, 165, 90, 0.02) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(0,229,191,0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,229,191,0.4); }
html { scrollbar-width: thin; scrollbar-color: rgba(0,229,191,0.2) var(--bg-primary); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--cyan); color: var(--bg-primary); }

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 1s ease, visibility 1s ease; }
.preloader-inner { text-align: center; }
.preloader-logo { margin-bottom: 32px; }
.preloader-svg {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 0 20px var(--cyan-glow-strong));
    animation: preloaderFadeIn 0.8s ease forwards;
}
@keyframes preloaderFadeIn {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}
.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 16px;
}
.preloader-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    border-radius: 2px;
    animation: preloaderFill 1s ease-in-out forwards;
}
@keyframes preloaderFill { 0% { width: 0; } 100% { width: 100%; } }
@keyframes preloaderFillFast { 0% { width: 0; } 100% { width: 100%; } }
.preloader-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-muted);
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
body:hover .cursor-glow { opacity: 1; }

#particlesCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

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

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.5s var(--ease-out);
}
.nav.scrolled {
    background: rgba(6, 8, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; z-index: 1001; }
.nav-logo-img { width: 32px; height: auto; filter: drop-shadow(0 0 8px var(--cyan-glow)); }
.nav-logo-text { font-size: 14px; font-weight: 800; letter-spacing: 2px; }
.accent { color: var(--cyan); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cyan);
    transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-switcher { display: flex; gap: 2px; background: rgba(255,255,255,0.04); border-radius: var(--radius-sm); padding: 2px; }
.lang-btn { font-size: 11px; font-weight: 600; letter-spacing: 1px; padding: 6px 10px; border-radius: 6px; color: var(--text-muted); transition: all 0.3s; }
.lang-btn.active { background: var(--cyan); color: var(--bg-primary); }
.lang-btn:hover:not(.active) { color: var(--text-secondary); }
.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    background: var(--cyan);
    color: var(--bg-primary);
    transition: all 0.3s var(--ease-out);
}
.nav-cta:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 4px 20px var(--cyan-glow-strong); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001; }
.nav-burger span { display: block; width: 20px; height: 1.5px; background: var(--text-primary); transition: all 0.3s; transform-origin: center; }
.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
#chartCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.25;
}
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,229,191,0.03) 1px, transparent 1px),
        linear-gradient(rgba(0,229,191,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 0 24px; }

/* Hero Big Logo */
.hero-logo-big {
    position: relative;
    display: inline-block;
    margin-bottom: 32px;
}
.hero-logo-svg {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 30px var(--cyan-glow-strong));
    animation: heroLogoBreathe 8s ease-in-out infinite;
}
@keyframes heroLogoBreathe {
    0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 30px var(--cyan-glow-strong)); }
    50% { transform: translateY(-5px); filter: drop-shadow(0 0 40px var(--cyan-glow)); }
}
.hero-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, var(--cyan-glow-strong) 0%, transparent 70%);
    animation: heroGlowBreathe 8s ease-in-out infinite;
    pointer-events: none;
}
@keyframes heroGlowBreathe {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(0,229,191,0.08);
    border: 1px solid rgba(0,229,191,0.15);
    font-size: 13px;
    font-weight: 500;
    color: var(--cyan);
    margin-bottom: 32px;
}
.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulseDot 3s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,229,191,0.3); }
    50% { opacity: 0.5; box-shadow: 0 0 0 6px transparent; }
}
.hero-title {
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
}
.hero-line { display: block; }
.hero-line--accent {
    background: linear-gradient(135deg, var(--cyan), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; margin-bottom: 60px; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.btn-primary { background: var(--cyan); color: var(--bg-primary); }
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cyan), var(--gold));
    opacity: 0;
    transition: opacity 0.4s;
}
.btn-primary:hover::before { opacity: 0.6; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px var(--cyan-glow); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-ghost { border: 1px solid var(--border); color: var(--text-secondary); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,229,191,0.05); }
.btn-full { width: 100%; justify-content: center; }

.hero-stats { display: flex; align-items: center; justify-content: center; gap: 32px; }
.hero-stat { text-align: center; }
.hero-stat-value {
    display: block;
    font-size: 22px;
    font-weight: 800;
    font-family: var(--font-mono);
    color: var(--cyan);
    margin-bottom: 4px;
}
.hero-stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
    animation: scrollLine 3s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===== LIVE TICKER ===== */
.ticker-bar {
    position: relative;
    z-index: 1;
    padding: 14px 0;
    background: rgba(0, 229, 255, 0.03);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.ticker-track { display: flex; width: max-content; }
.ticker-content {
    display: flex;
    align-items: center;
    gap: 48px;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
    padding-right: 48px;
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-family: var(--font-mono);
}
.ticker-name { font-weight: 600; color: var(--text-primary); }
.ticker-price { color: var(--text-secondary); }
.ticker-change { font-weight: 600; font-size: 12px; }
.ticker-change.positive { color: var(--green); }
.ticker-change.negative { color: var(--red); }
.ticker-icon { font-size: 16px; }
.ticker-sep { color: var(--text-muted); font-size: 8px; }
.ticker-source {
    position: absolute;
    bottom: 2px;
    right: 16px;
    font-size: 9px;
    color: var(--text-muted);
    opacity: 0.4;
    font-family: var(--font-mono);
}
.data-source {
    display: block;
    margin-top: 8px;
    font-size: 9px;
    color: var(--text-muted);
    opacity: 0.4;
    font-family: var(--font-mono);
    text-align: center;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section { position: relative; z-index: 1; padding: 120px 0; }
.section-header { text-align: center; margin-bottom: 72px; }
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
    font-family: var(--font-mono);
}
.section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.section-desc { font-size: 17px; color: var(--text-secondary); max-width: 640px; margin: 0 auto; line-height: 1.7; }

/* ===== ABOUT ===== */
.about-factors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.factor-card {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.factor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.factor-card:hover { border-color: var(--border-hover); transform: translateY(-3px); background: var(--bg-card-hover); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.factor-card:hover::before { opacity: 1; }
.factor-icon { width: 48px; height: 48px; color: var(--cyan); margin-bottom: 24px; }
.factor-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.factor-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ===== TILT CARD ===== */
.tilt-card { transform-style: preserve-3d; transition: transform 0.4s var(--ease-out), border-color 0.4s, background 0.4s; }

/* ===== DASHBOARD ===== */
.dashboard { background: var(--bg-secondary); }
.dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.dash-card {
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.4s;
}
.dash-card:hover { border-color: var(--border-hover); }
.dash-card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dash-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}
.dash-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s ease-in-out infinite;
}
.dash-card-badge {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(0,229,191,0.1);
    color: var(--cyan);
    text-transform: uppercase;
}
.dash-card-body { padding: 0; position: relative; }

/* TradingView chart */
.dash-chart .dash-card-body {
    height: 350px;
    overflow: hidden;
}
.tradingview-widget-container { width: 100%; height: 100%; }
#tradingview_widget { width: 100%; height: 100%; }

/* Network canvas */
.dash-network .dash-card-body { height: 350px; }
#networkCanvas { width: 100%; height: 100%; display: block; }

/* Indices */
.dash-indices .dash-card-body { padding: 8px 0; }
.index-list { display: flex; flex-direction: column; }
.index-item {
    display: grid;
    grid-template-columns: 80px 80px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}
.index-item:last-child { border-bottom: none; }
.index-item:hover { background: rgba(255,255,255,0.02); }
.index-name { font-size: 13px; font-weight: 600; font-family: var(--font-mono); }
.index-chart { height: 30px; }
.mini-chart { width: 80px; height: 30px; }
.index-value { font-size: 13px; font-family: var(--font-mono); color: var(--text-secondary); text-align: right; }
.index-change {
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-mono);
    padding: 2px 8px;
    border-radius: 4px;
    text-align: right;
    min-width: 70px;
}
.index-change.positive { color: var(--green); background: rgba(0,230,118,0.08); }
.index-change.negative { color: var(--red); background: rgba(255,82,82,0.08); }

/* Predictions */
.dash-predictions .dash-card-body { padding: 16px 20px; }
.prediction-list { display: flex; flex-direction: column; gap: 20px; }
.prediction-item {}
.prediction-question { font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.prediction-bar-container {}
.prediction-bar {
    height: 8px;
    border-radius: 4px;
    background: rgba(255,82,82,0.2);
    overflow: hidden;
    margin-bottom: 6px;
}
.prediction-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1.5s var(--ease-out);
}
.prediction-yes { background: linear-gradient(90deg, var(--cyan), var(--green)); }
.prediction-labels { display: flex; justify-content: space-between; font-size: 12px; font-family: var(--font-mono); }
.pred-yes { color: var(--green); font-weight: 600; }
.pred-no { color: var(--red); font-weight: 600; }

/* ===== ADVANTAGES ===== */
.adv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.adv-card {
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.adv-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.adv-card--large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 0;
}
.adv-card--large .adv-card-content { padding: 40px 40px 40px 0; }
.adv-card-icon { width: 40px; height: 40px; color: var(--cyan); margin-bottom: 20px; }
.adv-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.adv-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* Terminal */
.adv-card-visual {
    background: #0c1120;
    padding: 32px;
    border-right: 1px solid var(--border);
    height: 100%;
    display: flex;
    align-items: center;
}
.terminal-window {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
}
.terminal-bar {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border);
}
.terminal-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--text-muted); }
.terminal-bar span:first-child { background: #ff5f57; }
.terminal-bar span:nth-child(2) { background: #febc2e; }
.terminal-bar span:nth-child(3) { background: #28c840; }
.terminal-body {
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 2;
    min-height: 180px;
}
.terminal-line { white-space: nowrap; }
.t-prompt { color: var(--cyan); }
.t-cmd { color: var(--text-primary); }
.t-ok { color: #28c840; }
.t-response { color: var(--text-secondary); }
.terminal-cursor {
    display: inline-block;
    animation: blink 1s step-end infinite;
    color: var(--cyan);
    font-weight: 300;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ===== MARKET PULSE ===== */
.pulse-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 20px;
}
.pulse-card {
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 28px;
    transition: border-color 0.4s;
}
.pulse-card:hover { border-color: var(--border-hover); }
.pulse-card-title { font-size: 14px; font-weight: 700; margin-bottom: 20px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }

/* Rates */
.rates-list { display: flex; flex-direction: column; gap: 16px; }
.rate-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.02);
    transition: background 0.3s;
}
.rate-item:hover { background: rgba(255,255,255,0.04); }
.rate-flag { font-size: 24px; }
.rate-info { display: flex; flex-direction: column; flex: 1; }
.rate-name { font-size: 14px; font-weight: 600; }
.rate-label { font-size: 11px; color: var(--text-muted); }
.rate-value { font-family: var(--font-mono); font-size: 16px; font-weight: 700; color: var(--gold); }

/* News */
.news-feed { display: flex; flex-direction: column; gap: 0; }
.news-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}
.news-item:last-child { border-bottom: none; }
.news-time { font-size: 11px; color: var(--text-muted); font-family: var(--font-mono); min-width: 48px; padding-top: 2px; }
.news-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    min-width: 48px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.tag-macro { background: rgba(203,165,90,0.15); color: var(--gold); }
.tag-crypto { background: rgba(0,229,191,0.15); color: var(--cyan); }
.tag-defi { background: rgba(0,230,118,0.15); color: var(--green); }
.tag-local { background: rgba(255,255,255,0.08); color: var(--text-secondary); }
.news-item p { font-size: 13px; color: var(--text-primary); line-height: 1.5; }

/* Indicators */
.pulse-indicators {}
.indicators-list { display: flex; flex-direction: column; gap: 14px; }
.indicator-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.indicator-gauge {
    position: relative;
    width: 100%;
}
.indicator-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
}
.indicator-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}
.indicator-value {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 800;
}
.indicator-bar {
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.06);
    overflow: hidden;
}
.indicator-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1.5s var(--ease-out);
}
.indicator-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 3px;
    font-size: 9px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}
.indicator-desc {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 2px;
    line-height: 1.4;
}

/* ===== VALUES v2 ===== */
/* Values grid is now inside advantages section */
.values-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.val-card {
    position: relative;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}
.val-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.val-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--cyan), transparent);
    transition: height 0.6s var(--ease-out);
    border-radius: 0 0 2px 0;
}
.val-card:hover .val-card-accent { height: 100%; }
.val-card-accent--gold {
    background: linear-gradient(to bottom, var(--gold), transparent);
}
.val-card-inner {
    padding: 32px 28px;
}
.val-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.val-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    transition: all 0.3s;
}
.val-icon svg { width: 22px; height: 22px; }
.val-card:hover .val-icon {
    background: rgba(0, 229, 255, 0.15);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}
.val-icon--gold {
    background: rgba(240, 200, 0, 0.08);
    border-color: rgba(240, 200, 0, 0.15);
    color: var(--gold);
}
.val-card:hover .val-icon--gold {
    background: rgba(240, 200, 0, 0.15);
    border-color: rgba(240, 200, 0, 0.3);
    box-shadow: 0 0 20px rgba(240, 200, 0, 0.15);
}
.val-num {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.val-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.val-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.val-quote {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    font-style: italic;
    color: var(--cyan-dim);
    opacity: 0.7;
    line-height: 1.5;
}
.val-card--hero .val-quote { opacity: 0; transform: translateY(8px); transition: all 0.4s var(--ease-out) 0.1s; }
.val-card--hero:hover .val-quote { opacity: 0.7; transform: translateY(0); }

/* Hero cards span full width on first and last */
.val-card--hero {
    grid-column: span 1;
}

/* ===== ROADMAP ===== */
.timeline { position: relative; max-width: 640px; margin: 0 auto; padding-left: 48px; }
.timeline-line { position: absolute; left: 11px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--cyan), var(--border) 50%, transparent); }
.timeline-item { position: relative; padding-bottom: 48px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: -48px; top: 4px; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; }
.timeline-dot::before { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--cyan); border: 2px solid var(--bg-primary); }
.pulse-ring { position: absolute; width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--cyan); animation: pulseRing 2s ease-out infinite; }
@keyframes pulseRing { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(2); opacity: 0; } }
.timeline-date { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--cyan); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; display: block; }
.timeline-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.timeline-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ===== FIT ===== */
.fit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.fit-card { padding: 40px 36px; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--bg-card); }
.fit-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.fit-header svg { width: 32px; height: 32px; }
.fit-yes .fit-header svg { color: var(--cyan); }
.fit-no .fit-header svg { color: var(--red); }
.fit-no { border-color: rgba(255,82,82,0.15); }
.fit-card h3 { font-size: 18px; font-weight: 700; }
.fit-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.fit-card li { font-size: 14px; color: var(--text-secondary); line-height: 1.6; padding-left: 20px; position: relative; }
.fit-yes li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.fit-no li::before { content: '✕'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ===== FAQ ===== */
.faq { background: var(--bg-secondary); }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--cyan); }
.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s var(--ease-out);
    flex-shrink: 0;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.4s;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
    padding-bottom: 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== APPLY ===== */
.apply { background: var(--bg-primary); }
.apply-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.apply-steps { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.apply-step { display: flex; gap: 16px; align-items: flex-start; }
.apply-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,229,191,0.1);
    border: 1px solid rgba(0,229,191,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--cyan);
    flex-shrink: 0;
}
.apply-step h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.apply-step p { font-size: 13px; color: var(--text-secondary); }

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; color: var(--text-secondary); text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s;
    outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px var(--cyan-glow);
    background: rgba(0,229,191,0.03);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238892a8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-group select option { background: var(--bg-secondary); color: var(--text-primary); }

.file-upload {
    border: 2px dashed var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.file-upload:hover, .file-upload.dragover { border-color: var(--cyan); background: rgba(0,229,191,0.03); }
.file-upload-content { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.file-upload-content svg { width: 40px; height: 40px; color: var(--text-muted); margin-bottom: 4px; }
.file-upload-content span { font-size: 14px; color: var(--text-secondary); }
.file-upload-hint { font-size: 12px !important; color: var(--text-muted) !important; }
.file-name { font-size: 13px; color: var(--cyan); font-family: var(--font-mono); margin-top: 4px; }

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 80px 40px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid rgba(0,229,191,0.2);
}
.form-success.visible { display: flex; animation: successIn 0.6s var(--ease-spring); }
@keyframes successIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.form-success svg { width: 64px; height: 64px; color: var(--cyan); }
.form-success h3 { font-size: 24px; font-weight: 700; }
.form-success p { font-size: 15px; color: var(--text-secondary); max-width: 360px; }

/* ===== FOOTER ===== */
.footer { position: relative; z-index: 1; padding: 80px 0 32px; border-top: 1px solid var(--border); }
.footer-top { display: flex; justify-content: space-between; gap: 48px; margin-bottom: 64px; }
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-logo { width: 40px; filter: drop-shadow(0 0 10px var(--cyan-glow)); }
.footer-name { font-size: 16px; font-weight: 800; letter-spacing: 2px; }
.footer-tagline { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--text-muted); transition: color 0.3s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 32px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-muted); }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s var(--ease-out);
    backdrop-filter: blur(10px);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--cyan); border-color: var(--cyan); }
.back-to-top:hover svg { color: var(--bg-primary); }
.back-to-top svg { width: 20px; height: 20px; color: var(--text-secondary); }

/* ===== GLOW BORDER ===== */
.glow-border {
    position: relative;
}
.glow-border::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--cyan), transparent 40%, transparent 60%, var(--gold));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    padding: 1px;
}
.glow-border:hover::after { opacity: 1; }

/* ===== LOGOS MARQUEE ===== */
.logos-inline {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}
.logos-marquee {
    overflow: hidden;
    position: relative;
}
.logos-marquee::before,
.logos-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.logos-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-primary), transparent);
}
.logos-marquee::after {
    right: 0;
    background: linear-gradient(90deg, transparent, var(--bg-primary));
}
.logos-marquee-track {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    animation: logosMarquee 50s linear infinite;
    will-change: transform;
}
.logos-marquee-track:hover {
    animation-play-state: paused;
}
@keyframes logosMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.logos-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
    transition: all 0.4s var(--ease-out);
}
.logo-item:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
    background: rgba(0,229,191,0.04);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,229,191,0.08);
}
.logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02);
    transition: all 0.5s var(--ease-out);
    flex-shrink: 0;
    white-space: nowrap;
    backdrop-filter: blur(4px);
}
.logo-item:hover {
    border-color: rgba(0,229,191,0.2);
    background: rgba(0,229,191,0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.logo-img {
    height: 22px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.4s;
}
.logo-item:hover .logo-img { opacity: 1; }
.logo-invert {
    filter: brightness(0) invert(1);
}
.logo-round {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    object-fit: cover;
}
.logo-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s;
}
.logo-item:hover .logo-name { color: var(--text-secondary); }

/* ===== FOUNDERS ===== */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.founder-card {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s var(--ease-out);
}
.founder-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.founder-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0,229,191,0.08);
    border: 2px solid rgba(0,229,191,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}
.founder-avatar--open {
    background: rgba(203,165,90,0.08);
    border-color: rgba(203,165,90,0.3);
    font-size: 24px;
    font-weight: 300;
    color: var(--gold);
}
.founder-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.founder-role {
    font-size: 13px;
    font-weight: 500;
    color: var(--cyan);
    display: block;
    margin-bottom: 14px;
}
.founder-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}
.founder-tags {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.founder-tags span {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(0,229,191,0.08);
    color: var(--cyan-dim);
    letter-spacing: 0.5px;
}
.founder-cta {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    transition: color 0.3s;
}
.founder-cta:hover { color: var(--cyan); }

/* ===== NEWS LOADING ===== */
.news-loading {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 40px 0;
    justify-content: center;
    color: var(--text-muted);
    font-size: 13px;
}
.news-spinner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--border);
    border-top-color: var(--cyan);
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== SKELETON LOADING ===== */
.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
    border-radius: 4px;
}
.skeleton-line { height: 14px; margin-bottom: 10px; }
.skeleton-line:last-child { width: 60%; }
.skeleton-tag { height: 18px; width: 50px; border-radius: 3px; }
.skeleton-row { display: flex; align-items: center; gap: 10px; padding: 14px 0; border-bottom: 1px solid var(--border); }
@keyframes skeletonShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ===== FLOATING CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 100px;
    background: rgba(6, 8, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0,229,191,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    transition: transform 0.5s var(--ease-out), opacity 0.5s;
    opacity: 0;
    pointer-events: none;
}
.floating-cta.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.floating-cta-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}
.floating-cta-spots {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
}
.floating-cta .btn-primary {
    padding: 10px 24px;
    font-size: 13px;
    border-radius: 100px;
}

/* ===== FORM VALIDATION ===== */
.form-group input.valid,
.form-group textarea.valid,
.form-group select.valid {
    border-color: var(--green);
}
.form-group input.invalid,
.form-group textarea.invalid,
.form-group select.invalid {
    border-color: var(--red);
    animation: formShake 0.4s ease;
}
@keyframes formShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-4px); }
    40%, 80% { transform: translateX(4px); }
}
.form-check {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.form-group { position: relative; }
.form-group input.valid ~ .form-check,
.form-group textarea.valid ~ .form-check,
.form-group select.valid ~ .form-check { opacity: 1; }

/* ===== PARALLAX ===== */
.parallax-slow { will-change: transform; }

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    z-index: 9999;
    transition: width 0.05s linear;
    box-shadow: 0 0 8px var(--cyan-glow);
}

/* ===== NOISE TEXTURE ===== */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ===== HERO TEXT WORD REVEAL ===== */
.word-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(12px);
    animation: wordReveal 0.7s var(--ease-out) forwards;
}
@keyframes wordReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SVG LOGO DRAW ANIMATION ===== */
.preloader-svg path {
    stroke: white;
    stroke-width: 2;
    fill: white;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: logoDraw 1.2s ease-in-out forwards;
}
.preloader-svg path:nth-child(1) { animation-delay: 0s; }
.preloader-svg path:nth-child(2) { animation-delay: 0.2s; }

@keyframes logoDraw {
    0% { stroke-dashoffset: 1200; fill-opacity: 0; }
    50% { stroke-dashoffset: 0; fill-opacity: 0; }
    100% { stroke-dashoffset: 0; fill-opacity: 1; }
}

/* ===== ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
[data-animate].in-view { opacity: 1; transform: translateY(0); }

/* Subtle section separator */
.section + .section::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,0.04) 50%, transparent 90%);
}

/* Unified hover lift */
.adv-card:not(.adv-card--large):hover,
.val-card:hover,
.founder-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* Ticker price flash animation */
.ticker-flash-green { animation: tickFlash 0.6s ease; }
.ticker-flash-red { animation: tickFlashRed 0.6s ease; }
@keyframes tickFlash { 0% { color: var(--green); } 100% { color: var(--text-secondary); } }
@keyframes tickFlashRed { 0% { color: var(--red); } 100% { color: var(--text-secondary); } }

/* News item hover */
.news-item { transition: background 0.3s, padding-left 0.3s; border-radius: 4px; padding-left: 0; }
.news-item:hover { background: rgba(0,229,191,0.03); padding-left: 8px; }

/* Rate item subtle animation */
.rate-item { transition: background 0.3s, transform 0.3s; }
.rate-item:hover { transform: translateX(4px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-factors { grid-template-columns: 1fr; }
    .dash-grid { grid-template-columns: 1fr; }
    .adv-grid { grid-template-columns: 1fr; }
    .adv-card--large { grid-template-columns: 1fr; }
    .adv-card-visual { border-right: none; border-bottom: 1px solid var(--border); }
    .adv-card--large .adv-card-content { padding: 32px; }
    .values-grid-v2 { grid-template-columns: repeat(2, 1fr); }
    .pulse-grid { grid-template-columns: 1fr; }
    .apply-wrapper { grid-template-columns: 1fr; gap: 48px; }
    .fit-grid { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; }
    .founders-grid { grid-template-columns: 1fr; max-width: 400px; }
    .logos-track { gap: 16px; }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(6,8,15,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 24px; }
    .nav-burger { display: flex; }
    .nav-cta { display: none; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .values-grid-v2 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .apply-form { padding: 24px; }
    .footer-links { flex-direction: column; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; }
    .section { padding: 80px 0; }
    .section-header { margin-bottom: 48px; }
    .index-item { grid-template-columns: 60px 1fr auto; }
    .index-chart { display: none; }
    .floating-cta { display: none; }
    /* Disable heavy animations on mobile */
    .cursor-glow { display: none; }
    body::after { display: none; } /* noise texture off */
    .hero-grid-overlay { display: none; }
    .word-reveal { animation: none !important; opacity: 1 !important; transform: none !important; }
}
@media (max-width: 480px) {
    .hero-title { letter-spacing: -1px; }
    .hero-subtitle { font-size: 16px; }
    .hero-logo-svg { width: 80px; }
}
