/*
Theme Name: ViperView
Theme URI: https://viperviewcompany.com
Author: Antigravity
Author URI: https://antigravity.google
Description: Premium Fintech WordPress theme for ViperView - Predatory Precision in US Stock Market Trading.
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: dark, responsive, custom-colors, fintech, trading, landing-page
Text Domain: viperview
*/

/* Core Design System */
:root {
  --primary: #10b981;
  --primary-rgb: 16, 185, 129;
  --primary-glow: rgba(16, 185, 129, 0.3);
  --bg: #030303;
  --bg-rgb: 3, 3, 3;
  --surface: #0a0a0a;
  --surface-rgb: 10, 10, 10;
  --surface-light: #151515;
  --text: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border: rgba(255, 255, 255, 0.05);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset & Normalize */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
}

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

/* Background Effects */
.grid-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    z-index: -1;
}

.neural-glow {
    position: fixed;
    top: -10%; right: -10%; width: 50%; height: 50%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
}

/* Header */
.site-header {
    background: rgba(var(--bg-rgb), 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #fff;
}

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

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
}

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

.btn {
    background: var(--primary);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--primary-glow);
}

/* Hero Section */
.hero { padding: 8rem 0 6rem; text-align: center; }
.label { 
    color: var(--primary); 
    text-transform: uppercase; 
    letter-spacing: 0.3em; 
    font-size: 0.75rem; 
    font-weight: 800; 
    margin-bottom: 1.5rem; 
    display: block; 
}

h1 { font-size: 4.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 2rem; letter-spacing: -0.04em; }

.hero p { 
    color: var(--text-muted); 
    font-size: 1.25rem; 
    max-width: 650px; 
    margin: 0 auto 3rem; 
}

/* Viper Pulse Widget */
.pulse-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    max-width: 900px;
    margin: 4rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.pulse-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, transparent 50%, rgba(var(--primary-rgb), 0.05) 100%);
    pointer-events: none;
}

.score-gauge {
    width: 180px; height: 180px;
    border-radius: 50%;
    border: 8px solid var(--surface-light);
    display: flex;
    align-items: center; justify-content: center;
    flex-direction: column;
    position: relative;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.score-gauge::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 8px solid var(--primary);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 85%);
}

.score-val { font-size: 3.5rem; font-weight: 900; color: var(--primary); line-height: 1; }
.score-label { font-size: 0.75rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.1em; }

/* Single Post Layout */
.single-post-container {
    max-width: 800px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

.single-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.single-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.single-content p {
    margin-bottom: 2rem;
}

.single-content h2, .single-content h3 {
    margin: 3rem 0 1.5rem;
    color: #fff;
}

/* Global Sections & Components */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 6rem 0;
}

.vision-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: 0.4s;
}

.vision-card:hover { 
    border-color: var(--primary); 
    transform: translateY(-10px); 
    background: rgba(var(--primary-rgb), 0.02); 
}

.vision-icon { font-size: 2rem; margin-bottom: 1.5rem; display: block; }
.vision-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.vision-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Signal Ticker */
.ticker {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-block;
    margin-right: 4rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.ticker-item span { color: var(--primary); margin-right: 0.5rem; }

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

/* Comparison Section */
.comparison { padding: 8rem 0; background: rgba(255,255,255,0.01); }
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 4rem; }
.comp-box { padding: 3rem; border-radius: 24px; border: 1px solid var(--border); }
.comp-box.premium { border-color: var(--primary); background: rgba(var(--primary-rgb), 0.03); }
.comp-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; color: var(--text-muted); }
.comp-item svg { width: 20px; color: var(--primary); }

/* Sidebar & Insights Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.viper-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.viper-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px -15px var(--primary-glow);
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 4rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    .pulse-card { grid-template-columns: 1fr; gap: 2rem; }
    .comp-grid { grid-template-columns: 1fr; }
}
