:root {
    --bg-black: #050505;
    --accent-green: #22c55e;
    --accent-green-glow: rgba(34, 197, 94, 0.4);
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --inner-border: rgba(255, 255, 255, 0.12);
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --ease-fluid: cubic-bezier(0.32, 0.72, 0, 1);
}

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

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.5;
}

/* --- Base Textures & Effects --- */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
}

.glow-orb {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

#orb-1 {
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, var(--accent-green) 0%, transparent 70%);
}

#orb-2 {
    bottom: -200px;
    left: -100px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
}

/* --- Navigation --- */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 100;
    display: flex;
    justify-content: center;
}

.nav-pill {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    padding: 8px 12px 8px 24px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 40px;
    animation: slideDown 0.8s var(--ease-fluid);
}

.logo {
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 12px;
    height: 12px;
    background: var(--accent-green);
    border-radius: 3px;
    box-shadow: 0 0 15px var(--accent-green-glow);
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-white);
}

.login-btn {
    padding: 10px 24px;
    background: var(--text-white);
    color: var(--bg-black);
    text-decoration: none;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.3s var(--ease-fluid);
}

.login-btn:hover {
    transform: scale(1.05);
}

/* --- Hero Section --- */
.hero-section {
    padding: 160px 0 100px;
    min-height: 100dvh;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.layout-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* --- Typography & Copy --- */
.eyebrow-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    animation: fadeInBlur 0.8s var(--ease-fluid);
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    animation: slideUpFade 1s var(--ease-fluid) 0.1s both;
}

.text-gradient {
    background: linear-gradient(to bottom right, #fff, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 540px;
    margin-bottom: 48px;
    animation: slideUpFade 1s var(--ease-fluid) 0.2s both;
}

/* --- Form & CTA --- */
.cta-wrapper {
    margin-bottom: 64px;
    animation: slideUpFade 1s var(--ease-fluid) 0.3s both;
}

.lead-form {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    max-width: 500px;
    margin-bottom: 16px;
    transition: border-color 0.3s ease;
}

.lead-form:focus-within {
    border-color: rgba(34, 197, 94, 0.5);
}

.lead-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 24px;
    color: white;
    font-family: var(--font-main);
    font-size: 16px;
    outline: none;
}

.lead-form input::placeholder {
    color: #4b5563;
}

.primary-btn {
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 4px 4px 4px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s var(--ease-fluid);
}

.primary-btn:hover {
    background: #16a34a;
    transform: scale(1.02);
}

.btn-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-note {
    font-size: 12px;
    color: #4b5563;
    padding-left: 24px;
}

/* --- Trust Badges --- */
.trust-section {
    animation: fadeIn 1s ease 0.8s both;
}

.trust-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4b5563;
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    opacity: 0.5;
    filter: grayscale(1);
    transition: all 0.5s ease;
}

.trust-logos:hover {
    opacity: 0.8;
    filter: grayscale(0.5);
}

.logo-img { height: 20px; }
.logo-text { font-weight: 800; font-size: 14px; }

/* --- Visual Table (Double Bezel) --- */
.visual-content {
    animation: slideUpFade 1.2s var(--ease-fluid) 0.4s both;
}

.double-bezel-outer {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 10px;
    border-radius: 32px;
    margin-bottom: 24px;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.5);
}

.double-bezel-inner {
    background: #0a0a0a;
    border: 1px solid var(--inner-border);
    border-radius: 24px;
    overflow: hidden;
    padding: 32px;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.table-header h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.pulse {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.rankings-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.table-row {
    display: grid;
    grid-template-columns: 60px 1fr 120px 140px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    align-items: center;
    font-size: 14px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.table-row:not(.header-row):hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--glass-border);
    transform: translateX(4px);
}

.header-row {
    background: transparent;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 8px;
}

.rank { font-weight: 800; color: var(--text-gray); }
.strategy-name { font-weight: 600; }
.return.positive { color: var(--accent-green); font-weight: 700; }

.strength {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    overflow: hidden;
}

.strength .bar {
    height: 100%;
    background: var(--accent-green);
    border-radius: 999px;
    box-shadow: 0 0 10px var(--accent-green-glow);
}

.table-footer {
    text-align: center;
}

.table-footer a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.table-footer a:hover {
    color: var(--text-white);
}

/* --- Stats Grid --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon { font-size: 20px; }
.stat-value { display: block; font-size: 18px; font-weight: 800; }
.stat-label { font-size: 11px; color: var(--text-gray); font-weight: 600; text-transform: uppercase; }

/* --- Toast --- */
.toast {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #16a34a;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s var(--ease-fluid);
    z-index: 1000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* --- Animations --- */
@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

@keyframes fadeInBlur {
    from { opacity: 0; filter: blur(10px); }
    to { opacity: 1; filter: blur(0); }
}

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

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .layout-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-title { font-size: 48px; }
    .hero-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
    .hero-title { font-size: 36px; }
    .lead-form { flex-direction: column; border-radius: 24px; padding: 12px; }
    .lead-form input { padding: 16px; text-align: center; }
    .nav-links { display: none; }
    .stats-grid { grid-template-columns: 1fr; }
    .rankings-table .table-row { grid-template-columns: 40px 1fr 80px; }
    .rankings-table .strength { display: none; }
}
