/* ========================================
   SHILLVEST - Hacker Terminal Aesthetic
   ======================================== */

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

:root {
    /* Core Colors */
    --bg-primary: #0a0a0c;
    --bg-secondary: #0f0f12;
    --bg-tertiary: #141418;
    --bg-card: #16161a;

    /* Terminal Green Palette */
    --green-glow: #00ff88;
    --green-primary: #00d974;
    --green-muted: #00b86b;
    --green-dark: #004d2a;

    /* Accent Colors */
    --cyan: #00e5ff;
    --yellow: #ffd000;
    --red: #ff3b5c;
    --orange: #ff8800;

    /* Text */
    --text-primary: #e8e8e8;
    --text-secondary: #888899;
    --text-muted: #555566;

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(0, 217, 116, 0.3);

    /* Typography */
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --font-display: 'Syne', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-mono);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scanline Effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
}

.scanlines::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

/* ========================================
   Navigation
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    color: var(--green-primary);
    font-size: 1.5rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 0 10px var(--green-glow), 0 0 20px var(--green-glow); }
    50% { text-shadow: 0 0 5px var(--green-glow), 0 0 10px var(--green-glow); }
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

.logo-tag {
    font-size: 0.65rem;
    color: var(--text-muted);
    padding: 0.2rem 0.4rem;
    background: var(--bg-tertiary);
    border-radius: 3px;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--green-primary);
}

.nav-cta {
    padding: 0.6rem 1.2rem !important;
    background: transparent !important;
    border: 1px solid var(--green-primary) !important;
    color: var(--green-primary) !important;
    border-radius: 4px;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--green-primary) !important;
    color: var(--bg-primary) !important;
    box-shadow: 0 0 20px rgba(0, 217, 116, 0.4);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

/* ========================================
   Hero Section
   ======================================== */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 4rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    gap: 4rem;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 217, 116, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 116, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at 30% 50%, black 0%, transparent 70%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 116, 0.1);
    border: 1px solid rgba(0, 217, 116, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--green-primary);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--green-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 217, 116, 0.7);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(0, 217, 116, 0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out backwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }

.title-line.accent {
    color: var(--green-primary);
    text-shadow: 0 0 40px rgba(0, 217, 116, 0.5);
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-primary);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--green-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--green-glow);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

/* Radar Visualization */
.radar-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

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

.radar {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 217, 116, 0.05) 0%, transparent 70%);
}

.radar-circle {
    position: absolute;
    border: 1px solid rgba(0, 217, 116, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radar-circle.r1 { width: 33%; height: 33%; }
.radar-circle.r2 { width: 66%; height: 66%; }
.radar-circle.r3 { width: 100%; height: 100%; }

.radar-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--green-primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--green-glow);
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--green-primary), transparent);
    transform-origin: left center;
    animation: sweep 4s linear infinite;
}

.radar-sweep::after {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(90deg, rgba(0, 217, 116, 0.2), transparent);
    transform-origin: left center;
}

@keyframes sweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.radar-blip {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--green-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--green-glow);
    animation: blip 2s ease-in-out infinite;
}

.radar-blip::after {
    content: attr(data-label);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: var(--green-primary);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.radar-blip:hover::after {
    opacity: 1;
}

@keyframes blip {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.blip-1 { top: 25%; left: 60%; animation-delay: 0s; }
.blip-2 { top: 40%; left: 75%; animation-delay: 0.5s; }
.blip-3 { top: 65%; left: 70%; animation-delay: 1s; }
.blip-4 { top: 70%; left: 35%; animation-delay: 1.5s; }
.blip-5 { top: 35%; left: 25%; animation-delay: 2s; }

.radar-label {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

/* ========================================
   Section Styles
   ======================================== */

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

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--green-primary);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

/* ========================================
   How It Works
   ======================================== */

.how-it-works {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.process-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--green-primary), var(--cyan));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-5px);
}

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

.process-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--bg-secondary);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
    transition: color 0.4s ease;
}

.process-card:hover .process-number {
    color: rgba(0, 217, 116, 0.1);
}

.process-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 116, 0.1);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.process-icon svg {
    width: 24px;
    height: 24px;
    color: var(--green-primary);
}

.process-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.process-terminal {
    background: var(--bg-primary);
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.75rem;
    line-height: 1.8;
}

.process-terminal code {
    color: var(--text-muted);
}

.t-green { color: var(--green-primary); }
.t-yellow { color: var(--yellow); }
.t-red { color: var(--red); }
.t-cyan { color: var(--cyan); }
.t-dim { color: var(--text-muted); }

/* ========================================
   Live Tracker Dashboard
   ======================================== */

.tracker {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.dashboard {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-tertiary);
}

.dashboard-tabs {
    display: flex;
    gap: 0.5rem;
}

.tab {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab:hover {
    color: var(--text-secondary);
}

.tab.active {
    background: var(--bg-primary);
    border-color: var(--border-subtle);
    color: var(--text-primary);
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--green-primary);
    letter-spacing: 0.1em;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--green-primary);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 320px;
}

.signal-feed {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.signal-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.signal-item:hover {
    border-color: var(--border-subtle);
    background: var(--bg-tertiary);
}

.signal-indicator {
    width: 4px;
    border-radius: 4px;
    flex-shrink: 0;
}

.signal-item.high .signal-indicator { background: var(--green-primary); box-shadow: 0 0 10px var(--green-glow); }
.signal-item.medium .signal-indicator { background: var(--yellow); }
.signal-item.low .signal-indicator { background: var(--text-muted); }

.signal-info {
    flex: 1;
}

.signal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.signal-asset {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
}

.signal-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.signal-badge.high {
    background: rgba(0, 217, 116, 0.15);
    color: var(--green-primary);
}

.signal-badge.medium {
    background: rgba(255, 208, 0, 0.15);
    color: var(--yellow);
}

.signal-badge.low {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.signal-detail {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    font-weight: 300;
}

.signal-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.dashboard-sidebar {
    border-left: 1px solid var(--border-subtle);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-panel {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 1.25rem;
}

.sidebar-panel h4 {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.shiller-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.shiller {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
}

.shiller-rank {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 4px;
    color: var(--text-muted);
    font-size: 0.7rem;
}

.shiller-name {
    flex: 1;
    color: var(--text-secondary);
}

.shiller-count {
    color: var(--green-primary);
    font-size: 0.75rem;
}

.chart-panel {
    flex: 1;
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100px;
    gap: 8px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--green-dark), var(--green-muted));
    border-radius: 4px 4px 0 0;
    height: var(--height);
    position: relative;
    transition: all 0.3s ease;
}

.chart-bar:hover {
    background: linear-gradient(to top, var(--green-muted), var(--green-primary));
}

.chart-bar.active {
    background: linear-gradient(to top, var(--green-primary), var(--green-glow));
    box-shadow: 0 0 15px rgba(0, 217, 116, 0.3);
}

.chart-bar span {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: var(--text-muted);
}

/* ========================================
   Predictions
   ======================================== */

.predictions {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.prediction-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.75rem;
    position: relative;
    transition: all 0.4s ease;
}

.prediction-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
}

.prediction-card.hot {
    border-color: rgba(255, 136, 0, 0.3);
}

.prediction-card.hot:hover {
    box-shadow: 0 10px 40px rgba(255, 136, 0, 0.15);
}

.hot-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
}

.prediction-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.prediction-asset {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.asset-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 10px;
    font-size: 1.25rem;
}

.asset-name {
    font-family: var(--font-display);
    font-weight: 600;
    display: block;
}

.asset-ticker {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.prediction-direction {
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.prediction-direction.bullish {
    background: rgba(0, 217, 116, 0.15);
    color: var(--green-primary);
}

.prediction-direction.bearish {
    background: rgba(255, 59, 92, 0.15);
    color: var(--red);
}

.prediction-body {
    margin-bottom: 1.5rem;
}

.prediction-reason {
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
}

.reason-label {
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
}

.prediction-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.metric {
    display: grid;
    grid-template-columns: 80px 1fr 45px;
    align-items: center;
    gap: 0.75rem;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.metric-bar {
    height: 6px;
    background: var(--bg-secondary);
    border-radius: 3px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    width: var(--width);
    background: linear-gradient(90deg, var(--green-muted), var(--green-primary));
    border-radius: 3px;
    transition: width 1s ease;
}

.metric-fill.bearish {
    background: linear-gradient(90deg, rgba(255, 59, 92, 0.5), var(--red));
}

.metric-value {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: right;
}

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

.prediction-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.prediction-link {
    font-size: 0.8rem;
    color: var(--green-primary);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.prediction-link:hover {
    opacity: 0.8;
}

/* ========================================
   CTA Section
   ======================================== */

.cta {
    padding: 8rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.cta-terminal {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-subtle);
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
}

.terminal-dot:nth-child(1) { background: #ff5f57; }
.terminal-dot:nth-child(2) { background: #ffbd2e; }
.terminal-dot:nth-child(3) { background: #28c840; }

.terminal-title {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.terminal-body {
    padding: 1.5rem;
    font-size: 0.85rem;
    line-height: 2;
}

.terminal-body p {
    margin-bottom: 0.25rem;
}

.terminal-cursor {
    animation: blink 1s steps(1) infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.cta-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text > p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.cta-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

.cta-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    border-top: 1px solid var(--border-subtle);
    padding: 4rem;
    background: var(--bg-secondary);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

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

.footer-col h5 {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--green-primary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 8rem 2rem 4rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .radar-container {
        order: -1;
        margin-bottom: 2rem;
    }

    .radar {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 1024px) {
    .process-grid,
    .predictions-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .dashboard-sidebar {
        border-left: none;
        border-top: 1px solid var(--border-subtle);
    }

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

    .cta-terminal {
        order: 2;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

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

    .how-it-works,
    .tracker,
    .predictions,
    .cta {
        padding: 4rem 1.5rem;
    }

    .dashboard-tabs {
        flex-wrap: wrap;
    }

    .footer {
        padding: 2rem 1.5rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .radar {
        width: 250px;
        height: 250px;
    }

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

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