/* ============================================
   WTG PRECISION SCALPER — DESIGN SYSTEM
   Premium Dark Trading Theme
   ============================================ */

/* --- CSS Variables --- */
:root {
    --bg-primary: #060a13;
    --bg-secondary: #0c1120;
    --bg-card: rgba(15, 23, 42, 0.6);
    --bg-card-hover: rgba(20, 30, 55, 0.8);
    --bg-glass: rgba(15, 23, 42, 0.5);
    --border-subtle: rgba(240, 185, 11, 0.1);
    --border-card: rgba(240, 185, 11, 0.15);
    --border-glow: rgba(240, 185, 11, 0.3);
    --gold: #f0b90b;
    --gold-light: #f5d35a;
    --gold-dark: #c49a09;
    --green: #10b981;
    --green-dim: rgba(16, 185, 129, 0.15);
    --red: #ef4444;
    --red-dim: rgba(239, 68, 68, 0.15);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-dim: #64748b;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-max: 1200px;
    --section-pad: 100px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; }
.gold { color: var(--gold); }
.gold-gradient {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 60px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0e1a;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 185, 11, 0.35);
}
.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 20px rgba(240, 185, 11, 0.1);
}
.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 60px;
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}
.btn-glow:hover::before { opacity: 1; }
.btn-arrow { width: 20px; height: 20px; transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 20px 48px; font-size: 1.15rem; }

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(6, 10, 19, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}
.logo-icon { font-size: 1.5rem; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: #0a0e1a !important;
    padding: 10px 24px;
    border-radius: 60px;
    font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { box-shadow: 0 4px 20px rgba(240, 185, 11, 0.3); }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-bg-effects {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(240, 185, 11, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240, 185, 11, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}
.glow-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.15), transparent);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}
.glow-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1), transparent);
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}
.glow-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.08), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 6s ease-in-out infinite;
}
.chart-line {
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(240, 185, 11, 0.1), rgba(16, 185, 129, 0.1), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-card);
    border-radius: 60px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.8;
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.stat-badge {
    text-align: center;
}
.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}
.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.hero-trading-window {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-dim);
}
.hero-trading-window strong { color: var(--text-secondary); }
.clock-icon { font-size: 1.1rem; }

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}

/* --- Section Shared --- */
.section {
    padding: var(--section-pad) 0;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}
.section-footnote {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-top: 48px;
    font-style: italic;
}

/* --- Strategy in Action --- */
.section-strategy {
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}
.strategy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Chart Mockup */
.chart-mockup {
    background: #0f172a;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-card);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.chart-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-subtle);
}
.chart-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.chart-dot.red { background: #ef4444; }
.chart-dot.yellow { background: #f0b90b; }
.chart-dot.green { background: #10b981; }
.chart-title {
    margin-left: 12px;
    font-size: 0.75rem;
    color: var(--text-dim);
    font-family: var(--font-body);
}
.chart-body {
    padding: 20px 16px 10px;
    position: relative;
    height: 280px;
    display: flex;
    flex-direction: column;
}
.candlestick-chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    padding-bottom: 10px;
}
.candle {
    flex: 1;
    position: relative;
    border-radius: 2px;
    min-width: 6px;
}
.candle::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    bottom: var(--b);
    top: calc(100% - var(--t));
}
.candle::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: var(--h);
    bottom: var(--b);
    border-radius: 2px;
}
.candle.green::before, .candle.green::after { background: var(--green); }
.candle.red::before, .candle.red::after { background: var(--red); }
.candle.signal-buy::after {
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
}
.candle.signal-sell::after {
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.5);
}
.candle.signal-buy::before { background: var(--green); }
.candle.signal-sell::before { background: var(--red); }

.chart-volume {
    display: flex;
    gap: 4px;
    height: 40px;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 8px;
}
.vol-bar {
    flex: 1;
    height: var(--vh);
    background: rgba(100, 116, 139, 0.3);
    border-radius: 2px 2px 0 0;
    min-width: 6px;
}
.vol-bar.hi { background: rgba(240, 185, 11, 0.4); }

.strategy-info {}
.strategy-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 32px;
}
.strategy-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}
.strategy-features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all 0.3s;
}
.strategy-features li:hover {
    border-color: var(--border-glow);
    background: var(--bg-card-hover);
    transform: translateX(4px);
}
.feature-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.strategy-features strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}
.strategy-features p {
    font-size: 0.9rem;
    color: var(--text-dim);
}
.use-cases {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.use-tag {
    padding: 6px 16px;
    border: 1px solid var(--border-card);
    border-radius: 60px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: all 0.3s;
}
.use-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* --- Performance Results --- */
.section-performance {
    background: var(--bg-secondary);
}
.equity-curve {
    margin-bottom: 48px;
}
.equity-chart {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 32px 24px 16px;
    position: relative;
    overflow: hidden;
}
.curve-svg { width: 100%; height: auto; display: block; }
.curve-line {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: drawLine 2.5s ease-out forwards;
}
.curve-area {
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}
.equity-label {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.35s;
}
.stat-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.stat-card-highlight {
    border-color: var(--border-glow);
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.05), rgba(240, 185, 11, 0.01));
}
.stat-card-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 4px;
}
.stat-card-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.performance-note {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- How It Works / Pillars --- */
.section-how {
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.pillar-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.pillar-card:hover::before { opacity: 1; }
.pillar-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}
.pillar-icon svg { width: 100%; height: 100%; }
.pillar-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.pillar-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* --- Trading Window --- */
.section-window {
    background: var(--bg-primary);
}
.window-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.window-info .section-title { text-align: left; }
.window-info p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.05rem;
}
.window-time-card {
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.08), rgba(240, 185, 11, 0.02));
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    margin-bottom: 32px;
}
.time-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 8px;
}
.time-from, .time-to {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
}
.time-dash {
    font-size: 2rem;
    color: var(--text-dim);
}
.time-zone {
    font-size: 0.85rem;
    color: var(--text-dim);
}
.window-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.window-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
}
.check {
    color: var(--green);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Session Timeline */
.session-timeline {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
}
.timeline-bar {
    display: flex;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 12px;
}
.timeline-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dim);
}
.timeline-segment.asia {
    flex: 3;
    background: rgba(100, 116, 139, 0.15);
}
.timeline-segment.london {
    flex: 3;
    background: rgba(59, 130, 246, 0.15);
    color: rgba(59, 130, 246, 0.6);
}
.timeline-segment.ny {
    flex: 4;
    background: rgba(240, 185, 11, 0.1);
    color: var(--gold);
}
.timeline-segment.ny.active {
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.15), rgba(240, 185, 11, 0.05));
    border: 1px solid rgba(240, 185, 11, 0.3);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.active-pulse {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid var(--gold);
    animation: pulse 2s infinite;
}
.timeline-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-bottom: 20px;
}
.optimal-window {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--gold);
}
.optimal-marker {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(240, 185, 11, 0.5);
    animation: pulse 2s infinite;
}

/* --- Trade Frequency --- */
.section-frequency {
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}
.frequency-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.freq-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 48px 56px;
    text-align: center;
    transition: all 0.3s;
}
.freq-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.freq-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 8px;
}
.freq-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.freq-divider {
    font-size: 2rem;
    color: var(--text-dim);
}

/* --- Profit Potential --- */
.section-profit {
    background: var(--bg-secondary);
}
.profit-table-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.profit-model-note {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.7;
}
.profit-table {
    width: 100%;
    border-collapse: collapse;
}
.profit-table th {
    padding: 24px 32px;
    text-align: left;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-subtle);
    font-weight: 600;
}
.profit-table td {
    padding: 24px 32px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}
.profit-table tr:last-child td { border-bottom: none; }
.profit-table tr:hover td { background: rgba(240, 185, 11, 0.03); }
.profit-table tr.featured td {
    background: rgba(240, 185, 11, 0.05);
}
.risk-cell {
    color: var(--text-primary) !important;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.15rem !important;
}
.profit-table .highlight {
    color: var(--gold);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}
.risk-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 60px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* --- Markets Supported --- */
.section-markets {
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
}
.markets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.market-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    text-align: center;
    transition: all 0.35s;
}
.market-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.market-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.market-card h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.market-pair {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- What You Receive --- */
.section-receive {
    background: var(--bg-primary);
}
.receive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.receive-info .section-title { text-align: left; }
.receive-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}
.receive-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.receive-check {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.receive-item strong {
    display: block;
    margin-bottom: 4px;
}
.receive-item p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Access Steps */
.access-steps {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
}
.step {
    display: flex;
    align-items: center;
    gap: 20px;
}
.step-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0e1a;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}
.step-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.step-connector {
    width: 2px;
    height: 28px;
    background: linear-gradient(to bottom, var(--gold), rgba(240, 185, 11, 0.2));
    margin-left: 21px;
}

/* --- Pricing --- */
.section-pricing {
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 48px 36px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
}
.price-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.price-card-featured {
    border-color: var(--gold) !important;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.06), rgba(240, 185, 11, 0.02));
    box-shadow: 0 0 60px rgba(240, 185, 11, 0.08);
}
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0e1a;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.price-tag {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.price-amount {
    margin-bottom: 32px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}
.currency {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
}
.amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
}
.period {
    font-size: 1rem;
    color: var(--text-dim);
}
.price-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    text-align: left;
}
.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.price-features span {
    color: var(--gold);
    font-weight: 700;
}
.save-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 500;
}

/* --- Disclaimer --- */
.section-disclaimer {
    padding: 60px 0;
    background: var(--bg-secondary);
}
.disclaimer-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.disclaimer-box h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 12px;
}
.disclaimer-box p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.8;
}

/* --- Final CTA --- */
.section-final-cta {
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.section-final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.06), transparent);
    border-radius: 50%;
}
.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
}
.cta-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* --- Footer --- */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-primary);
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
}
.footer-copy {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* --- Animations --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
@keyframes scrollPulse {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
    100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}
@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}
@keyframes fadeIn {
    to { opacity: 1; }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .strategy-grid, .window-grid, .receive-grid { grid-template-columns: 1fr; gap: 40px; }
    .window-info .section-title, .receive-info .section-title { text-align: center; }
    .window-info, .receive-info { text-align: center; }
    .window-benefits { align-items: center; }
    .receive-list { max-width: 500px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
    :root { --section-pad: 70px; }
    .nav-links { 
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(6, 10, 19, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }
    .nav-links.active { display: flex; }
    .nav-links a { font-size: 1.3rem; }
    .mobile-toggle { display: flex; z-index: 1001; }
    .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-card:last-child { grid-column: span 2; }
    .pillars-grid { grid-template-columns: 1fr; }
    .markets-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .hero-stats { gap: 20px; }
    .stat-divider { display: none; }
    .freq-card { padding: 36px 40px; }
    .freq-number { font-size: 2.2rem; }
    .footer-content { flex-direction: column; gap: 16px; text-align: center; }
    .chart-body { height: 200px; }
    .time-from, .time-to { font-size: 2rem; }
}

/* --- Language Toggle --- */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border-card);
    border-radius: 30px;
    padding: 3px;
    margin-left: 12px;
}
.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}
.lang-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0e1a;
    box-shadow: 0 2px 12px rgba(240, 185, 11, 0.3);
}
.lang-btn:hover:not(.active) {
    color: var(--gold);
}

/* --- Promo Video Section --- */
.section-video {
    padding: 80px 0 40px;
}
.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-card);
    box-shadow: 0 8px 40px rgba(240, 185, 11, 0.08), 0 0 60px rgba(240, 185, 11, 0.05);
    position: relative;
    background: var(--bg-secondary);
}
.promo-video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    background: #000;
}
.video-wrapper:hover {
    box-shadow: 0 12px 50px rgba(240, 185, 11, 0.15), 0 0 80px rgba(240, 185, 11, 0.08);
    border-color: var(--border-glow);
    transition: all 0.4s ease;
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .hero-ctas { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-card:last-child { grid-column: span 1; }
    .markets-grid { grid-template-columns: 1fr; }
    .frequency-cards { flex-direction: column; }
    .freq-divider { transform: rotate(90deg); }
    .lang-toggle { margin-left: 8px; }
    .lang-btn { padding: 4px 10px; font-size: 0.75rem; }
}
