:root {
    --bg: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --border: #2a2a35;
    --text: #f0f6fc;
    --text-muted: #8b949e;
    --primary: #00ff88;
    --primary-dim: rgba(0, 255, 136, 0.1);
    --danger: #ff4444;
    --danger-dim: rgba(255, 68, 68, 0.1);
    --info: #00d4ff;
    --info-dim: rgba(0, 212, 255, 0.1);
    --warning: #ffaa00;
    --warning-dim: rgba(255, 170, 0, 0.1);
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --radius: 8px;
    --radius-lg: 12px;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

main { flex: 1; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s;
}
a:hover { opacity: 0.8; }

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

/* ---- NAV ---- */
.nav {
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(12px);
    z-index: 100;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}
.logo:hover { opacity: 1; }
.logo-ceo { color: #fff; }
.logo-signal { color: var(--primary); }
.logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    margin-left: 4px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(0, 255, 136, 0); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-links a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}
.nav-links a:hover { color: var(--text); }

/* ---- MOBILE NAV TOGGLE ---- */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle--active span:nth-child(2) { opacity: 0; }
.nav-toggle--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }

.btn-primary {
    background: var(--primary);
    color: var(--bg);
}
.btn-primary:hover { opacity: 0.9; color: var(--bg); }

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-danger {
    background: var(--danger);
    color: #fff;
}

/* ---- CARDS ---- */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- STAT BOXES ---- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
}
.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.stat-value {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
}
.stat-value.positive { color: var(--primary); }
.stat-value.negative { color: var(--danger); }

/* ---- TABLES ---- */
.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
thead {
    background: var(--bg-card);
}
th {
    text-align: left;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
}
td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 13px;
}
tr:last-child td { border-bottom: none; }
tr:hover { background: var(--bg-card-hover); }

.mono { font-family: var(--font-mono); }

/* ---- OPINION BADGES ---- */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-mono);
    text-transform: uppercase;
}
.badge-strong-buy { background: var(--primary-dim); color: var(--primary); }
.badge-buy { background: var(--primary-dim); color: var(--primary); opacity: 0.8; }
.badge-watch { background: var(--warning-dim); color: var(--warning); }
.badge-avoid { background: var(--danger-dim); color: var(--danger); opacity: 0.8; }
.badge-strong-avoid { background: var(--danger-dim); color: var(--danger); }

.badge-open { background: var(--info-dim); color: var(--info); }
.badge-closed-target { background: var(--primary-dim); color: var(--primary); }
.badge-closed-stop { background: var(--danger-dim); color: var(--danger); }

/* ---- SCORE BAR ---- */
.score-bar {
    width: 100%;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 4px;
}
.score-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.6s ease;
}
.score-bar-fill.high { background: var(--primary); }
.score-bar-fill.medium { background: var(--warning); }
.score-bar-fill.low { background: var(--danger); }

/* ---- HERO ---- */
.hero {
    padding: 80px 0 60px;
    text-align: center;
}
.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero h1 .accent { color: var(--primary); }
.hero .subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 32px;
}

/* ---- SECTIONS ---- */
.section {
    padding: 60px 0;
}
.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

/* ---- HOW IT WORKS ---- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.step {
    text-align: center;
    padding: 32px 20px;
}
.step-number {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
.step h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.step p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ---- PRICING ---- */
.pricing-card {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.price {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
}
.price span {
    font-size: 16px;
    color: var(--text-muted);
}
.pricing-features {
    list-style: none;
    text-align: left;
    margin: 24px 0;
}
.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-muted);
}
.pricing-features li::before {
    content: '✓ ';
    color: var(--primary);
    font-weight: 700;
}

/* ---- FORMS ---- */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-control {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 14px;
    font-family: var(--font-body);
    transition: border-color 0.2s;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

.auth-card {
    max-width: 420px;
    margin: 60px auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.auth-card h2 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-bottom: 16px;
}
.alert-error {
    background: var(--danger-dim);
    color: var(--danger);
    border: 1px solid rgba(255, 68, 68, 0.2);
}
.alert-success {
    background: var(--primary-dim);
    color: var(--primary);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

/* ---- EXPANDABLE DETAIL ---- */
.detail-toggle {
    cursor: pointer;
    user-select: none;
}
.detail-toggle:hover { background: var(--bg-card-hover); }
.detail-row { display: none; }
.detail-row.active { display: table-row; }
.detail-content {
    padding: 20px;
    background: var(--bg-card);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}
.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.detail-section h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

/* ---- PAGE HEADER ---- */
.page-header {
    padding: 32px 0 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}
.page-header h1 {
    font-size: 28px;
    font-weight: 700;
}
.page-header .subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 4px;
}

/* ---- FOOTER ---- */
.footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
    margin-top: 60px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    color: var(--text-muted);
    font-size: 13px;
}
.footer-disclaimer p {
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.6;
    line-height: 1.6;
}

/* ---- LEGAL ---- */
.legal-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.legal-content h1 {
    font-size: 28px;
    margin-bottom: 24px;
}
.legal-content h2 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 12px;
}
.legal-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.8;
}
.legal-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}
.legal-content li {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
}

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-danger { color: var(--danger); }
.text-success { color: var(--primary); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 0;
    background: rgba(18, 18, 26, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    z-index: 200;
}

/* ---- RESPONSIVE (shared) ---- */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 16px; }

    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 16px 24px 24px;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
        gap: 12px;
    }
    .nav-links.nav-open {
        display: flex;
    }
    .nav-links a { font-size: 16px; }
    .nav-links .btn { width: 100%; text-align: center; }
    .nav { position: sticky; }
}

/* =============================================
   LANDING PAGE
   ============================================= */

/* ---- Glass card ---- */
.lp-glass {
    background: rgba(18, 18, 26, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
}

/* ---- Scroll reveal ---- */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Section structure ---- */
.lp-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.lp-section--dark {
    background: rgba(8, 8, 12, 0.6);
}
.lp-section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.lp-section__tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--primary-dim);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.15);
}
.lp-section__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}
.lp-section__title .accent {
    color: var(--primary);
}
.lp-section__sub {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ====== HERO ====== */
.lp-hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.lp-hero__orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.lp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
}
.lp-orb--green {
    width: 500px;
    height: 500px;
    background: #00ff88;
    top: -10%;
    right: 10%;
    animation: orbFloat 12s ease-in-out infinite;
}
.lp-orb--blue {
    width: 400px;
    height: 400px;
    background: #00d4ff;
    bottom: -5%;
    left: -5%;
    animation: orbFloat 15s ease-in-out infinite reverse;
}
.lp-orb--purple {
    width: 350px;
    height: 350px;
    background: #8b5cf6;
    top: 40%;
    left: 50%;
    animation: orbFloat 10s ease-in-out infinite 3s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.lp-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.lp-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    padding: 8px 16px;
    background: var(--primary-dim);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.15);
}
.lp-hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}
.lp-hero__title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.lp-hero__title .accent {
    color: var(--primary);
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
}
.lp-hero__sub {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 32px;
}
.lp-hero__cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.lp-hero__price {
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.lp-btn-glow {
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.25);
    transition: all 0.3s ease;
}
.lp-btn-glow:hover {
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.4);
    transform: translateY(-1px);
    opacity: 1;
}

/* ---- Terminal preview ---- */
.lp-terminal {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 255, 136, 0.05);
}
.lp-terminal__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lp-terminal__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.lp-terminal__dot--red { background: #ff5f57; }
.lp-terminal__dot--yellow { background: #febc2e; }
.lp-terminal__dot--green { background: #28c840; }
.lp-terminal__bar-title {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    margin-left: auto;
}
.lp-terminal__body {
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 2;
}
.lp-terminal__line {
    opacity: 0;
    animation: termFadeIn 0.5s ease forwards;
    white-space: nowrap;
    overflow: hidden;
}
.lp-t-muted { color: var(--text-muted); }
.lp-t-green { color: var(--primary); }
.lp-t-cyan { color: var(--info); }
.lp-t-white { color: #fff; font-weight: 600; }
.lp-t-bold { font-weight: 700; }

@keyframes termFadeIn {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ====== SOCIAL PROOF BAR ====== */
.lp-proof {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(8, 8, 12, 0.5);
}
.lp-proof__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.lp-proof__item {
    text-align: center;
}
.lp-proof__value {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}
.lp-proof__label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}
.lp-proof__divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ====== WHY / EDGE ====== */
.lp-edge__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lp-edge__card {
    padding: 36px 28px;
    transition: border-color 0.3s, transform 0.3s;
}
.lp-edge__card:hover {
    border-color: rgba(0, 255, 136, 0.2);
    transform: translateY(-4px);
}
.lp-edge__icon {
    color: var(--primary);
    margin-bottom: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dim);
    border-radius: 12px;
}
.lp-edge__card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.lp-edge__card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ====== HOW IT WORKS / STEPS ====== */
.lp-steps {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}
.lp-steps__line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(0, 255, 136, 0.1));
    z-index: 0;
}
.lp-step {
    display: flex;
    gap: 24px;
    padding: 28px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s;
}
.lp-step:hover {
    border-color: rgba(0, 255, 136, 0.2);
}
.lp-step__num {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    min-width: 32px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}
.lp-step__content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.lp-step__content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ====== SIGNALS PREVIEW ====== */
.lp-signals-table {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}
.lp-signals-table .table-wrap {
    border: none;
    border-radius: 0;
}
.lp-signals-table__footer {
    padding: 16px 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.lp-signals-table__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

/* ====== TRACK RECORD ====== */
.lp-track__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.lp-track__card {
    padding: 28px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}
.lp-track__card:hover {
    border-color: rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}
.lp-track__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.lp-track__value {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
}
.lp-track__value.positive { color: var(--primary); }
.lp-track__value.negative { color: var(--danger); }
.lp-track__desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}
.lp-track__bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    margin-top: 12px;
    overflow: hidden;
}
.lp-track__bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ====== COMPARISON TABLE ====== */
.lp-compare {
    max-width: 700px;
    margin: 0 auto;
}
.lp-compare__table {
    overflow: hidden;
}
.lp-compare__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lp-compare__row:last-child {
    border-bottom: none;
}
.lp-compare__row--header {
    background: rgba(255, 255, 255, 0.03);
}
.lp-compare__row--header > div {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}
.lp-compare__feature,
.lp-compare__them,
.lp-compare__us {
    padding: 14px 20px;
    font-size: 14px;
}
.lp-compare__feature {
    color: var(--text);
    font-weight: 500;
}
.lp-compare__them {
    color: var(--text-muted);
}
.lp-compare__us--yes {
    color: var(--primary);
    font-weight: 600;
}

/* ====== PRICING ====== */
.lp-pricing {
    max-width: 420px;
    margin: 0 auto;
}
.lp-pricing__card {
    padding: 48px 40px;
    text-align: center;
    border: 2px solid rgba(0, 255, 136, 0.25) !important;
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.08);
}
.lp-pricing__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 8px;
}
.lp-pricing__currency {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 8px;
}
.lp-pricing__amount {
    font-family: var(--font-mono);
    font-size: 64px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.lp-pricing__cents {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 8px;
}
.lp-pricing__period {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 12px;
    margin-left: 4px;
}
.lp-pricing__anchor {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.lp-pricing__features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}
.lp-pricing__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.lp-pricing__features li:last-child {
    border-bottom: none;
}
.lp-pricing__guarantee {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ====== FAQ ====== */
.lp-faq {
    max-width: 680px;
    margin: 0 auto;
}
.lp-faq__item {
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.lp-faq__item:hover,
.lp-faq__item.open {
    border-color: rgba(0, 255, 136, 0.15);
}
.lp-faq__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}
.lp-faq__trigger:hover {
    color: var(--primary);
}
.lp-faq__icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}
.lp-faq__item.open .lp-faq__icon {
    transform: rotate(180deg);
}
.lp-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 24px;
}
.lp-faq__item.open .lp-faq__answer {
    max-height: 300px;
    padding: 0 24px 20px;
}
.lp-faq__answer p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ====== FINAL CTA ====== */
.lp-final-cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}
.lp-final-cta__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}
.lp-final-cta__title .accent {
    color: var(--primary);
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
}
.lp-final-cta__sub {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.lp-final-cta__note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
    font-family: var(--font-mono);
}

/* ====== LANDING PAGE RESPONSIVE ====== */
@media (max-width: 1024px) {
    .lp-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .lp-hero__sub {
        margin-left: auto;
        margin-right: auto;
    }
    .lp-hero__cta-row {
        justify-content: center;
    }
    .lp-hero__preview {
        max-width: 540px;
        margin: 0 auto;
    }
    .lp-edge__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .lp-track__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lp-hero {
        padding: 60px 0 80px;
        min-height: auto;
    }
    .lp-hero__title {
        font-size: 34px;
    }
    .lp-section {
        padding: 72px 0;
    }
    .lp-section__title {
        font-size: 28px;
    }
    .lp-proof__grid {
        gap: 24px;
    }
    .lp-proof__divider {
        display: none;
    }
    .lp-proof__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .lp-terminal__body {
        font-size: 11px;
        padding: 14px;
    }
    .lp-compare__row {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .lp-compare__feature,
    .lp-compare__them,
    .lp-compare__us {
        padding: 10px 12px;
        font-size: 12px;
    }
    .lp-steps__line {
        left: 22px;
    }
    .lp-step {
        padding: 20px;
        gap: 16px;
    }
    .lp-final-cta {
        padding: 80px 0;
    }
    .lp-final-cta__title {
        font-size: 28px;
    }
    .lp-pricing__card {
        padding: 36px 28px;
    }
    .lp-pricing__amount {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .lp-hero__title {
        font-size: 28px;
    }
    .lp-hero__cta-row {
        flex-direction: column;
        align-items: center;
    }
    .lp-track__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .lp-proof__value {
        font-size: 22px;
    }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .lp-terminal__line {
        opacity: 1;
        animation: none;
    }
    .lp-orb {
        animation: none;
    }
    .lp-btn-glow:hover {
        transform: none;
    }
}

/* Sortable table headers */
table.sortable th[data-sort] { cursor: pointer; user-select: none; position: relative; padding-right: 18px; }
table.sortable th[data-sort]::after { content: '⇅'; position: absolute; right: 4px; opacity: 0.3; font-size: 10px; }
table.sortable th.sort-asc::after { content: '↑'; opacity: 0.8; color: var(--primary); }
table.sortable th.sort-desc::after { content: '↓'; opacity: 0.8; color: var(--primary); }
