/* ================================================
   Counter Logic Trading — Premium Dark Theme CSS
   ================================================ */

/* Dropdown Chevron */
.dropdown-chevron {
    display: inline-block;
    vertical-align: middle;
    margin-left: 2px;
    transition: transform 0.25s ease;
}
.has-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

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

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

/* ========== HERO ========== */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,9,15,0.5) 0%, var(--bg-primary) 95%);
}

#hero > *:not(.hero-bg) {
    position: relative;
    z-index: 1;
}

#hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: calc(var(--nav-height) + 4rem) 2rem 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--positive);
    margin-bottom: 1.5rem;
    animation: pulse-badge 2s infinite;
}
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--positive);
    animation: dot-pulse 1.5s infinite;
}

@keyframes dot-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.2); }
    50% { box-shadow: 0 0 20px rgba(16,185,129,0.1); }
}

.hero-content h1 {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 2rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.25rem 1.75rem;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
}
.hero-stat {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}
.stat-pct {
    font-size: 1rem;
    color: var(--accent-primary);
}
.stat-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-card);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.dashboard-float {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

/* ---- Mini Dashboard (CLT Platform Replica) ---- */
.mini-dashboard {
    background: #0d1120;
    border-radius: var(--radius);
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-card), var(--shadow-glow);
    width: 100%;
    max-width: 580px;
    overflow: hidden;
    font-size: 0.72rem;
}

.mini-nav {
    display: flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    background: #141826;
    border-bottom: 1px solid var(--border-subtle);
}
.mini-nav-left {
    display: flex;
    gap: 0.1rem;
}
.mini-nav-tab {
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    color: var(--text-tertiary);
    font-size: 0.65rem;
    font-weight: 500;
    cursor: default;
    transition: all .2s ease;
}
.mini-nav-tab.active {
    background: rgba(0, 229, 255, 0.08);
    color: var(--text-secondary);
}

.mini-subnav {
    display: flex;
    gap: 0.25rem;
    padding: 0.4rem 0.75rem;
    background: #111525;
    border-bottom: 1px solid var(--border-subtle);
}
.mini-subnav-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--text-tertiary);
    cursor: default;
}
.mini-subnav-item.active {
    background: rgba(124, 58, 237, 0.2);
    color: var(--accent-secondary);
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.mini-section {
    padding: 0.6rem 0.85rem;
}
.mini-title {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.mini-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-left: 3px solid rgba(0, 229, 255, 0.25);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
}

.mini-row {
    font-size: 0.7rem;
    color: var(--text-secondary);
    padding: 0.15rem 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Thermometer */
.thermo-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}
.thermo-dots {
    display: flex;
    gap: 2px;
    flex-wrap: nowrap;
}
.thermo-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.thermo-dots .dot.green { background: #10b981; }
.thermo-dots .dot.cyan { background: #06b6d4; }
.thermo-dots .dot.blue { background: #3b82f6; }
.thermo-dots .dot.gray { background: #374151; }
.thermo-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* Status dots */
.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.status-dot.green {
    background: #10b981;
    animation: dot-live-pulse 2s ease-in-out infinite;
}
.status-dot.yellow {
    background: #f59e0b;
    animation: dot-live-pulse 2.4s ease-in-out infinite 0.5s;
}
.status-dot.red { background: #ef4444; }

@keyframes dot-live-pulse {
    0%, 100% { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
    50% { box-shadow: 0 0 6px 3px currentColor; opacity: 0.7; }
}

.text-green { color: #10b981; font-weight: 600; }
.text-yellow { color: #f59e0b; font-weight: 600; }
.text-red { color: #ef4444; font-weight: 600; }

.mini-card code {
    font-family: 'JetBrains Mono', monospace;
    background: rgba(0, 229, 255, 0.08);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    font-size: 0.68rem;
    color: var(--accent-primary);
}

/* Sector Table */
.sector-table-wrap {
    padding: 0.4rem;
    overflow-x: auto;
}
.sector-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.65rem;
}
.sector-table th {
    text-align: left;
    padding: 0.3rem 0.4rem;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-subtle);
    white-space: nowrap;
}
.sector-table td {
    padding: 0.3rem 0.4rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    white-space: nowrap;
}
.sector-table tbody tr:hover {
    background: rgba(0, 229, 255, 0.03);
}
.sector-table .row-weak {
    opacity: 0.6;
}
.mono-sm {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
}

.dashboard-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(0,229,255,0.08) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

/* ========== TICKER STRIP ========== */
.ticker-strip {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
    padding: 0.7rem 0;
}
.ticker-content {
    display: flex;
    gap: 3rem;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.ticker-item {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ticker-item.positive { color: var(--text-secondary); }
.ticker-item.positive .ticker-change { color: var(--positive); }
.ticker-item.negative { color: var(--text-secondary); }
.ticker-item.negative .ticker-change { color: var(--negative); }
.ticker-change { font-weight: 600; }

.ticker-strip:hover .ticker-content {
    animation-play-state: paused;
}

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

/* ========== SECTION HEADERS ========== */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background: var(--accent-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header .section-tag {
    display: inline-flex;
    padding-left: 1.5rem;
}
.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== COMMUNITY / TOOLS SECTION ========== */
#community {
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

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

.edge-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
}
.edge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity .3s ease;
}
.edge-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
}
.edge-card:hover::before {
    opacity: 1;
}

.edge-card-featured {
    grid-column: span 1;
    border-color: rgba(0, 229, 255, 0.15);
    background: linear-gradient(135deg, rgba(0,229,255,0.04) 0%, var(--bg-card) 100%);
}
.edge-card-featured::before {
    opacity: 0.5;
}

.edge-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(0, 229, 255, 0.08);
    color: var(--accent-primary);
    margin-bottom: 1.25rem;
}

.edge-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.edge-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.edge-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    background: rgba(0, 229, 255, 0.08);
    color: var(--accent-primary);
    border: 1px solid rgba(0, 229, 255, 0.15);
}

/* ========== RESEARCH & PUBLICATIONS ========== */
#research {
    padding: 7rem 0;
    background: var(--bg-secondary);
}

.floor-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.floor-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}
.floor-content > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.floor-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.floor-features li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.feature-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.floor-features strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.floor-features span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Chat Window Mockup */
.chat-window {
    background: #0d1117;
    border-radius: var(--radius);
    border: 1px solid var(--border-card);
    overflow: hidden;
    box-shadow: var(--shadow-card), var(--shadow-glow);
}
.chat-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    background: #161b22;
    border-bottom: 1px solid var(--border-subtle);
}
.chat-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.chat-dot.red { background: #ff5f57; }
.chat-dot.yellow { background: #febc2e; }
.chat-dot.green { background: #28c840; }
.chat-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-left: 0.5rem;
}
.chat-online {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--positive);
}
.online-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--positive);
    animation: dot-pulse 1.5s infinite;
}

.chat-messages {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.chat-msg {
    display: flex;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.chat-msg.chat-msg-visible {
    opacity: 1;
    transform: translateY(0);
}
.chat-msg:nth-child(2) { transition-delay: 0.2s; }
.chat-msg:nth-child(3) { transition-delay: 0.4s; }
.chat-msg:nth-child(4) { transition-delay: 0.6s; }
.chat-msg:nth-child(5) { transition-delay: 0.8s; }
.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    flex-shrink: 0;
}
.chat-avatar.mentor {
    background: rgba(0, 229, 255, 0.12);
    color: var(--accent-primary);
    border: 1px solid rgba(0, 229, 255, 0.3);
}
.chat-avatar.alert {
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
}
.chat-body {
    flex: 1;
}
.chat-name {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.mentor-name { color: var(--accent-primary); }
.alert-name { color: var(--accent-secondary); }
.role-tag {
    font-size: 0.65rem;
    font-weight: 500;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-primary);
    vertical-align: middle;
    margin-left: 0.3rem;
}
.chat-body p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.alert-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem !important;
    color: var(--positive) !important;
    background: rgba(16, 185, 129, 0.06);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(16, 185, 129, 0.15);
}
.chat-time {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    margin-top: 0.3rem;
    display: block;
}
.alert-msg {
    padding: 0.5rem;
    background: rgba(124, 58, 237, 0.04);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(124, 58, 237, 0.08);
}

/* Trust micro-copy */
.cta-trust {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-top: 0.75rem;
    text-align: center;
    letter-spacing: 0.02em;
}

/* ========== FOUNDER ========== */
#founder {
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.founder-layout {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 5rem;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
}
.founder-img {
    border-radius: var(--radius);
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-card);
    width: 100%;
}
.founder-glow {
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    z-index: -1;
    filter: blur(60px);
}

.founder-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}
.founder-title-role {
    color: var(--text-tertiary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.founder-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.75;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent-primary);
    margin-bottom: 2rem;
}

.founder-credentials {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
}
.credential {
    display: flex;
    flex-direction: column;
}
.credential-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-primary);
}
.credential-label {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========== PROOF OF WORK / ANTI-GURU ========== */
#proof-of-work {
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.pow-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.pow-heading {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pow-content .section-desc {
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ========== PRICING (Solid Section) ========== */
#pricing {
    background: var(--bg-primary);
}

/* ========== EDUCATION METHODOLOGY ========== */
#education {
    padding: 7rem 0;
    background: var(--bg-secondary);
}

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

.edu-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
}
.edu-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
}

.edu-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.edu-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.edu-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ========== WHAT'S INCLUDED ========== */
#included {
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
}

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

.included-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    transition: all .3s ease;
}
.included-item:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
    background: var(--bg-card-hover);
}

.included-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}
.included-text strong {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}
.included-text span {
    font-size: 0.82rem;
    color: var(--text-tertiary);
}

/* ========== LEGAL DISCLAIMER ========== */
#legal-disclaimer {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.legal-box {
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    padding: 3rem;
}
.legal-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-secondary);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.legal-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
}
.legal-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.legal-item p {
    font-size: 0.82rem;
    color: var(--text-tertiary);
    line-height: 1.75;
}

.legal-highlight {
    padding: 1.5rem 2rem;
    background: rgba(245, 158, 11, 0.04);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: var(--radius-sm);
}
.legal-highlight p {
    font-size: 0.85rem;
    color: var(--caution);
    line-height: 1.75;
}

/* ========== TESTIMONIALS ========== */
#testimonials {
    padding: 7rem 0;
    background: var(--bg-primary);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all .3s ease;
}
.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--caution);
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.testimonial-card > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(0, 229, 255, 0.2);
}
.testimonial-avatar.avatar-female {
    background: rgba(192, 80, 220, 0.15);
    color: #c050dc;
    border: 1px solid rgba(192, 80, 220, 0.3);
}
.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}
.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-tertiary);
}

/* Dark button */
.btn-dark {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-card);
    color: var(--text-primary);
    font-weight: 700;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}
.btn-dark:hover {
    background: var(--border-card);
}


/* Neon glow button (Earnings Alpha CTA) */
.btn-glow {
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-sm);
    border: none;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}
.btn-glow:hover {
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.5), 0 0 50px rgba(0, 229, 255, 0.2);
    transform: translateY(-2px);
}

/* ========== FINAL CTA ========== */
#final-cta {
    padding: 7rem 0;
    background: var(--bg-primary);
}
.cta-box {
    text-align: center;
    padding: 4rem 3rem;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--accent-gradient);
}
.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.cta-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.cta-box .hero-ctas {
    justify-content: center;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 2.75rem; }
    .edge-grid { grid-template-columns: repeat(2, 1fr); }
    .education-grid { grid-template-columns: 1fr; }
    .included-grid { grid-template-columns: 1fr; }
    .legal-grid { grid-template-columns: 1fr; }
    .floor-layout { grid-template-columns: 1fr; gap: 3rem; }
    .pow-layout { grid-template-columns: 1fr; gap: 2rem; }
    .founder-layout { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .founder-quote { text-align: left; }
    .founder-credentials { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    #hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: calc(var(--nav-height) + 3rem);
    }
    .hero-content h1 { font-size: 2.25rem; }
    .hero-subtitle { margin: 0 auto 2rem; }
    .hero-ctas { justify-content: center; }
    .hero-stats { justify-content: center; flex-wrap: wrap; gap: 1.5rem; }
    .hero-stat-divider { display: none; }
    .hero-visual { order: -1; }
    
    .section-header h2 { font-size: 2rem; }
    
    .edge-grid,
    .education-grid,
    .testimonial-grid,
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .featured-wrapper { transform: scale(1); }
    .card-top { min-height: auto; }
    
    .included-grid { grid-template-columns: 1fr; }
    .legal-grid { grid-template-columns: 1fr; }
    .legal-box { padding: 1.5rem; }
    
    .nav-links, .nav-actions { display: none; }
    .mobile-menu-btn { display: flex; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .founder-credentials { flex-direction: column; align-items: center; gap: 1.5rem; }
    .hero-stats { flex-direction: column; align-items: center; }
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    translate: 0 30px;
    transition: opacity 0.8s ease, translate 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    translate: 0 0;
}

/* FOMO Pulse Dot */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

