:root {
    --bg: #07111f;
    --bg-soft: #0b1627;
    --card: rgba(255,255,255,.045);
    --border: rgba(255,255,255,.09);
    --text: #f8fafc;
    --muted: #94a3b8;
    --green: #10b981;
    --indigo: #4f46e5;
    --red: #ef4444;
    --yellow: #f59e0b;
    --shadow: 0 24px 80px rgba(0,0,0,.42);
    --radius: 28px;
    --header-height: 86px;
}

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

body {
    font-family: Inter, Arial, sans-serif;
    background:
        radial-gradient(circle at 12% 5%, rgba(79,70,229,.22), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(16,185,129,.15), transparent 34%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: var(--header-height);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    z-index: -2;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

section {
    padding: 110px 0;
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7,17,31,.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.header.is-scrolled {
    background: rgba(8,17,32,.92);
    border-bottom-color: rgba(255,255,255,.08);
    box-shadow: 0 12px 40px rgba(0,0,0,.28);
}

.header-wrapper {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo,
.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon,
.footer-logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-weight: 900;
    background: linear-gradient(135deg, #0a766d 0%, #23205e 45%, #312e81 100%);
    box-shadow: 0 0 38px rgba(16,185,129,.22);
}

.logo-title,
.footer-logo-title {
    display: block;
    font-size: 18px;
    font-weight: 900;
}

.logo-subtitle,
.footer-logo-subtitle {
    display: block;
    font-size: 12px;
    color: var(--muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    color: var(--muted);
    font-weight: 600;
    transition: .25s;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 15px;
    border-radius: 999px;
    background: rgba(255,255,255,.045);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
}

.status-dot,
.live-circle,
.status-live {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 18px rgba(16,185,129,.8);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    50% { transform: scale(1.35); opacity: .65; }
}

.header-btn,
.btn-primary-main,
.submit-btn,
.mobile-menu-btn {
    min-height: 54px;
    padding: 0 26px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    text-align: center;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green), var(--indigo));
    box-shadow: 0 14px 36px rgba(16,185,129,.18);
    transition: .25s;
}

.submit-btn {
    display: block !important;
    width: 100% !important;

}

.header-btn:hover,
.btn-primary-main:hover,
.submit-btn:hover {
    transform: translateY(-2px);
}

.btn-secondary-main {
    min-height: 54px;
    padding: 0 26px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
}

.burger {
    display: none;
    background: none;
    border: 0;
}

.burger span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 5px 0;
    background: #fff;
}

.mobile-menu {
    display: none;
}

/* HERO */

.hero-section {
    padding-top: 32px;
}

.hero-grid,
.why-grid,
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.hero-label,
.section-heading span {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(16,185,129,.12);
    border: 1px solid rgba(16,185,129,.22);
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(42px, 5.7vw, 74px);
    line-height: 1.03;
    margin-bottom: 28px;
    font-weight: 950;
}

.hero-description,
.section-description {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 26px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 34px 0;
}

.hero-feature {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.feature-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 38px;
    justify-content: center;
}

.hero-trust {
    display: flex;
    gap: 26px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item-mini strong {
    display: block;
    text-align: center;
    font-size: 28px;
}

.trust-item-mini span {
    color: var(--muted);
    font-size: 14px;
}

.hero-visual {
    position: relative;
}

.dashboard-card,
.signal-card,
.review-card,
.contact-form,
.flow-box,
.final-cta-box,
.seo-expand-wrapper,
.trust-strip-item {
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
    border: 1px solid var(--border);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.dashboard-card {
    border-radius: 34px;
    padding: 30px;
    overflow: hidden;
}

.dashboard-top,
.dashboard-live,
.dashboard-metrics {
    display: flex;
    align-items: center;
}

.dashboard-top {
    justify-content: space-between;
    margin-bottom: 28px;
}

.dashboard-title {
    font-weight: 900;
}

.dashboard-live {
    gap: 8px;
    color: var(--green);
    font-weight: 900;
    font-size: 13px;
}

.hero-chart {
    height: 280px;
    position: relative;
    border-radius: 24px;
    background: rgba(255,255,255,.035);
    overflow: hidden;
    margin-bottom: 24px;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.chart-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(16,185,129,.18), transparent 65%);
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.metric-box {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.055);
}

.metric-label {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 8px;
}

.metric-box strong {
    font-size: 24px;
}

.floating-card {
    position: absolute;
    width: 210px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(7,17,31,.88);
    border: 1px solid var(--border);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    animation: float 4s ease-in-out infinite;
}

.floating-card span,
.floating-card small {
    display: block;
    color: var(--muted);
}

.floating-card strong {
    display: block;
    margin: 7px 0;
}

.floating-card-1 {
    top: -28px;
    left: -28px;
}

.floating-card-2 {
    right: -28px;
    bottom: -28px;
}

@keyframes float {
    50% { transform: translateY(-12px); }
}

/* TRUST */

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.trust-strip-item {
    padding: 24px;
    border-radius: 22px;
    text-align: center;
    font-weight: 800;
}

/* HEADINGS */

.section-heading {
    margin-bottom: 64px;
}

.section-heading.center {
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1.08;
    max-width: 980px;
    margin: 0 auto;
    font-weight: 950;
}

.signals-description {
    max-width: 900px;
    margin: 26px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

/* SIGNALS */

.signals-terminal {
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.terminal-top {
    min-height: 72px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.terminal-left {
    display: flex;
    gap: 10px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: var(--red); }
.terminal-dot.yellow { background: var(--yellow); }
.terminal-dot.green { background: var(--green); }

.terminal-title {
    color: var(--muted);
    font-weight: 800;
}

.terminal-status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
}

.signals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 34px;
}

.signal-card {
    border-radius: 28px;
    padding: 28px;
    transition: .3s;
}

.signal-card:hover {
    transform: translateY(-8px);
}

.signal-header,
.signal-pair,
.signal-row {
    display: flex;
    align-items: center;
}

.signal-header,
.signal-row {
    justify-content: space-between;
}

.signal-header {
    margin-bottom: 24px;
    gap: 16px;
}

.signal-pair {
    gap: 16px;
}

.signal-pair strong {
    display: block;
    font-size: 22px;
    margin-bottom: 4px;
}

.signal-pair span,
.signal-row span {
    color: var(--muted);
    font-size: 14px;
}

.signal-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.signal-icon.up {
    background: rgba(16,185,129,.13);
    color: var(--green);
}

.signal-icon.down {
    background: rgba(239,68,68,.13);
    color: var(--red);
}

.signal-icon.neutral-icon {
    background: rgba(245,158,11,.13);
    color: var(--yellow);
}

.signal-badge {
    min-width: 88px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 950;
    font-size: 13px;
}

.signal-badge.buy { background: rgba(16,185,129,.14); color: var(--green); }
.signal-badge.sell { background: rgba(239,68,68,.14); color: var(--red); }
.signal-badge.neutral { background: rgba(245,158,11,.14); color: var(--yellow); }

.mini-chart {
    height: 90px;
    margin-bottom: 24px;
}

.mini-chart svg {
    width: 100%;
    height: 100%;
}

.signal-data {
    display: grid;
    gap: 16px;
}

.signal-row {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.signal-row strong {
    font-size: 14px;
    text-align: right;
}

/* WHY */

.ai-flow {
    display: grid;
    gap: 14px;
}

.flow-box {
    padding: 22px;
    border-radius: 20px;
    font-weight: 850;
}

.flow-line {
    width: 2px;
    height: 34px;
    margin-left: 24px;
    background: linear-gradient(var(--green), transparent);
}

/* REVIEWS */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    padding: 34px;
    border-radius: 28px;
    transition: .3s;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16,185,129,.3);
}

.review-stars {
    color: #fbbf24;
    font-size: 22px;
    letter-spacing: 4px;
    margin-bottom: 22px;
}

.review-card p {
    color: #dbe4f0;
    line-height: 1.85;
    margin-bottom: 28px;
}

.review-user strong {
    display: block;
    margin-bottom: 4px;
}

.review-user span {
    color: var(--muted);
    font-size: 14px;
}

/* CONTACT */

.contact-form {
    padding: 36px;
    border-radius: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.contact-form input {
    width: 100%;
    height: 60px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.045);
    color: var(--text);
    outline: none;
    font-size: 15px;
    margin-bottom: 18px;
}

.contact-form input::placeholder {
    color: #718096;
}

.contact-form input:focus {
    border-color: rgba(16,185,129,.55);
}

/* SEO EXPAND */

.seo-expand-section {
    padding-top: 40px;
}

.seo-expand-wrapper {
    border-radius: 30px;
    overflow: hidden;
}

.seo-toggle-btn {
    width: 100%;
    min-height: 90px;
    padding: 0 34px;
    background: transparent;
    border: 0;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 18px;
    font-weight: 900;
}

.seo-toggle-btn svg {
    transition: .3s;
}

.seo-toggle-btn.active svg {
    transform: rotate(180deg);
}

.seo-expand-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 34px;
    transition: max-height .45s ease, padding .3s ease;
}

.seo-expand-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
}

.seo-expand-content h2 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 22px;
}

.seo-expand-content p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 20px;
}

/* FINAL CTA */

.final-cta-box {
    border-radius: 36px;
    padding: 70px;
    text-align: center;
}

.final-cta-box span {
    display: inline-flex;
    color: var(--green);
    font-weight: 900;
    margin-bottom: 20px;
}

.final-cta-box h2 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    margin-bottom: 22px;
}

.final-cta-box p {
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto 32px;
    font-size: 18px;
}

/* FOOTER */

.footer {
    padding-top: 80px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    align-items: start;
}

.footer-description {
    color: var(--muted);
    margin: 24px 0;
    max-width: 520px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.045);
    border: 1px solid var(--border);
}

.footer-title {
    font-size: 18px;
    margin-bottom: 18px;
}

.footer-links,
.footer-contact {
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer-links a,
.footer-contact li {
    color: var(--muted);
}

.footer-disclaimer {
    margin-top: 70px;
    padding: 46px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.footer-disclaimer h3 {
    margin-bottom: 18px;
}

.footer-disclaimer p {
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.75;
}

.footer-bottom {
    padding: 28px 0 100px;
}

.footer-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-copy,
.footer-bottom-links a {
    color: var(--muted);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

/* FLOATING TICKER + POPUP */

.live-user-popup {
    position: fixed;
    right: 24px;
    bottom: 96px;
    z-index: 999;
    width: 360px;
    padding: 22px 52px 22px 22px;
    border-radius: 24px;
    background: rgba(7,17,31,.94);
    border: 1px solid var(--border);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(30px);
    transition: .4s ease;
}

.live-user-popup.active {
    opacity: 1;
    transform: translateY(0);
}

.live-popup-content {
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
}

.live-popup-content strong {
    color: var(--green);
    font-weight: 900;
}

.live-popup-content span {
    display: inline-block;
    color: #dbeafe;
    font-weight: 700;
}

.live-popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.05);
    color: var(--muted);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: .25s ease;
}

.live-popup-close:hover {
    background: rgba(239,68,68,.14);
    color: #fff;
    border-color: rgba(239,68,68,.28);
}

@media (max-width: 768px) {
    .live-user-popup {
        left: 12px;
        right: 12px;
        width: auto;
        bottom: 78px;
    }
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .hero-grid,
    .why-grid,
    .contact-wrapper,
    .signals-grid,
    .reviews-grid,
    .trust-strip-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 900px) {
    .nav,
    .ai-status,
    .header-btn {
        display: none;
    }

    .burger {
        display: block;
    }

    .mobile-menu {
        position: fixed;
        top: calc(var(--header-height) + 8px);
        left: 20px;
        right: 20px;
        z-index: 1001;
        padding: 24px;
        border-radius: 24px;
        background: rgba(7,17,31,.96);
        border: 1px solid var(--border);
        backdrop-filter: blur(18px);
        display: none;
        flex-direction: column;
        gap: 18px;
    }

    .mobile-menu.active {
        display: flex;
    }

    .hero-features,
    .dashboard-metrics,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .terminal-top {
        flex-direction: column;
        height: auto;
        padding: 18px;
        gap: 12px;
    }

    section {
        padding: 80px 0;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .container {
        width: calc(100% - 28px);
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .signals-grid {
        padding: 20px;
    }

    .signal-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form,
    .dashboard-card,
    .signal-card,
    .review-card {
        padding: 22px;
    }

    .final-cta-box {
        padding: 36px 22px;
    }


    .live-user-popup {
        left: 12px;
        right: 12px;
        width: auto;
        bottom: 78px;
    }
}


.overall-trend-panel {
    margin: 34px 34px 0;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.overall-trend-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.overall-trend-header span,
.overall-trend-score {
    color: var(--muted);
    font-size: 14px;
}

.overall-trend-header strong {
    display: block;
    margin-top: 6px;
    font-size: 24px;
}

.overall-trend-score strong {
    color: var(--green);
}

.overall-trend-chart {
    height: 220px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(16,185,129,.08), transparent),
        rgba(255,255,255,.025);
    overflow: hidden;
}

.overall-trend-chart svg {
    width: 100%;
    height: 100%;
}

.signal-icon svg {
    transition: .25s ease;
}


.signal-sparkline {
    height: 92px;
    margin: 0 0 24px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.035), transparent);
    overflow: hidden;
    color: var(--green);
}

.signal-card.signal-buy .signal-sparkline {
    color: var(--green);
}

.signal-card.signal-sell .signal-sparkline {
    color: var(--red);
}

.signal-card.signal-neutral .signal-sparkline {
    color: var(--yellow);
}

.signal-sparkline svg {
    width: 100%;
    height: 100%;
}

.signal-sparkline-path {
    transition:
        d .8s ease,
        stroke .35s ease,
        opacity .35s ease;
}

.signal-card.is-updating {
    box-shadow: 0 0 42px rgba(16,185,129,.16);
}

.signal-card.is-random-glow {
    box-shadow:
        var(--shadow),
        inset 0 0 40px rgba(16,185,129,.32);
}

/* FAQ */

.faq-accordion {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.faq-item {
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.22);
}

.faq-question {
    width: 100%;
    min-height: 82px;
    padding: 24px 28px;
    background: transparent;
    border: 0;
    color: var(--text);
    cursor: pointer;
    display: grid;
    grid-template-columns: 52px 1fr 24px;
    gap: 18px;
    align-items: center;
    text-align: left;
    font-size: 18px;
    font-weight: 900;
}

.faq-question span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(16,185,129,.12);
    color: var(--green);
    font-size: 14px;
}

.faq-question svg {
    width: 22px;
    height: 22px;
    color: var(--muted);
    transition: .3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s ease;
}

.faq-item.active .faq-answer {
    max-height: 360px;
    padding: 0 28px 28px 98px;
}

.faq-answer p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
}

@media (max-width: 700px) {
    .faq-question {
        grid-template-columns: 42px 1fr 20px;
        padding: 20px;
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 24px;
    }
}

@media (min-width: 1101px) {
    .hero-section {
        padding-top: 70px;
        min-height: calc(100vh - 86px);
        display: flex;
        align-items: center;
    }

    .hero-content h1 {
        font-size: clamp(48px, 5vw, 66px);
        line-height: 1.04;
    }

    .hero-grid {
        align-items: center;
        gap: 56px;
    }

    .hero-visual {
        transform: translateY(-20px);
    }

    .floating-ticker {
        bottom: 18px;
        max-width: 980px;
        font-size: 13px;
        padding: 13px 24px;
    }
}

.floating-ticker {
    bottom: 14px;
    padding: 10px 18px;
    font-size: 12px;
    opacity: .88;
    backdrop-filter: blur(14px);
}




/* HERO TERMINAL PREVIEW */

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
}

.hero-orb-left {
    width: 360px;
    height: 360px;
    background: rgba(79,70,229,.22);
    left: -120px;
    top: 120px;
}

.hero-orb-right {
    width: 420px;
    height: 420px;
    background: rgba(16,185,129,.14);
    right: -150px;
    top: 180px;
}

.terminal-preview {
    border-radius: 34px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 30px 90px rgba(0,0,0,.4);
    backdrop-filter: blur(20px);
}

.terminal-preview-top {
    min-height: 70px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 90px 1fr 90px;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.terminal-dots {
    display: flex;
    gap: 9px;
}

.terminal-preview-title {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    font-weight: 900;
}

.terminal-preview-status {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
}

.terminal-preview-body {
    padding: 30px;
}

.terminal-main-signal {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.terminal-label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.terminal-main-signal h3 {
    font-size: 26px;
    line-height: 1.2;
    margin-top: 8px;
}

.hero-signal-badge {
    min-width: 92px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--green);
    background: rgba(16,185,129,.13);
    font-size: 13px;
    font-weight: 950;
}

.hero-live-chart {
    height: 260px;
    border-radius: 26px;
    background:
        radial-gradient(circle at center, rgba(16,185,129,.12), transparent 62%),
        rgba(255,255,255,.035);
    overflow: hidden;
    margin-bottom: 22px;
}

.hero-live-chart svg {
    width: 100%;
    height: 100%;
}

#heroChartPath,
#heroChartArea {
    transition: d 1.1s ease, opacity .4s ease;
}

.terminal-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.terminal-metric {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.065);
}

.terminal-metric span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 8px;
}

.terminal-metric strong {
    font-size: 24px;
}

.terminal-feed {
    display: grid;
    gap: 10px;
}

.terminal-feed-item {
    padding: 13px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.035);
    color: var(--muted);
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
}

.terminal-feed-item span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex: 0 0 auto;
}

.terminal-feed-item.positive span {
    background: var(--green);
    box-shadow: 0 0 14px rgba(16,185,129,.7);
}

.terminal-feed-item.neutral span {
    background: var(--yellow);
    box-shadow: 0 0 14px rgba(245,158,11,.55);
}

@media (max-width: 900px) {
    .terminal-preview-top {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 18px;
    }

    .terminal-preview-title,
    .terminal-preview-status {
        justify-content: flex-start;
        text-align: left;
    }

    .terminal-metrics {
        grid-template-columns: 1fr;
    }

    .terminal-main-signal {
        flex-direction: column;
    }

    .hero-live-chart {
        height: 210px;
    }
}

.terminal-metric strong {
    display: inline-block;
    min-width: 160px;
}

/* ========================= */
/* REVIEWS SECTION */
/* ========================= */

.reviews-section {
    position: relative;
    padding: 140px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 70px;
}

.review-card {
    position: relative;

    padding: 34px;

    border-radius: 30px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.05),
            rgba(255,255,255,.025)
        );

    border:
        1px solid rgba(255,255,255,.08);

    overflow: hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

    backdrop-filter: blur(16px);
}

.review-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(16,185,129,.24);

    box-shadow:
        0 30px 60px rgba(0,0,0,.35);
}

.review-card::before {
    content: '';

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at top right,
            rgba(16,185,129,.10),
            transparent 45%
        );

    pointer-events: none;
}

.review-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.review-avatar {
    width: 58px;
    height: 58px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #10b981,
            #4f46e5
        );

    color: #fff;

    font-size: 18px;
    font-weight: 900;

    flex: 0 0 58px;

    box-shadow:
        0 10px 24px rgba(79,70,229,.28);
}

.review-top strong {
    display: block;

    font-size: 20px;
    line-height: 1.2;

    margin-bottom: 4px;
}

.review-top span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.review-stars {
    margin-bottom: 24px;

    color: #fbbf24;

    font-size: 22px;
    letter-spacing: 3px;
}

.review-card p {
    color: #d6deed;

    font-size: 17px;
    line-height: 1.9;

    margin-bottom: 28px;
}

.review-footer {
    margin-top: auto;
}

.review-profit {
    display: inline-flex;
    align-items: center;

    min-height: 42px;

    padding: 0 18px;

    border-radius: 999px;

    background:
        rgba(16,185,129,.12);

    border:
        1px solid rgba(16,185,129,.16);

    color: #10b981;

    font-size: 13px;
    font-weight: 800;
}

.featured-review {
    display: flex;
    flex-direction: column;

    transform: scale(1.03);

    border-color:
        rgba(79,70,229,.24);

    box-shadow:
        0 30px 80px rgba(79,70,229,.18);
}

.featured-review:hover {
    transform:
        scale(1.03)
        translateY(-8px);
}

.review-badge {
    position: static;
    align-self: flex-end;

    min-height: 34px;
    max-width: 100%;
    width: fit-content;

    margin: 0 0 20px 0;
    padding: 8px 14px;

    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(79,70,229,.16);

    border:
        1px solid rgba(79,70,229,.22);

    color: #8ea2ff;

    font-size: 11px;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
    word-break: break-word;

    letter-spacing: 1px;
    flex-shrink: 0;
}

@media (max-width: 1100px) {

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .featured-review {
        transform: none;
    }

    .featured-review:hover {
        transform: translateY(-8px);
    }

}

@media (max-width: 768px) {

    .reviews-section {
        padding: 100px 0;
    }

    .review-card {
        padding: 26px;
        border-radius: 24px;
    }

    .review-top {
        align-items: flex-start;
    }

    .review-top strong {
        font-size: 18px;
    }

    .review-card p {
        font-size: 16px;
        line-height: 1.8;
    }

}


/* ========================= */
/* MOBILE HARD FIXES */
/* ========================= */

html {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    position: relative;
}

.container,
.hero-section,
.reviews-section,
.footer,
.signals-section,
.contact-section,
.seo-expand-section,
.final-cta-section {
    max-width: 100%;
}

@media (max-width: 768px) {

    :root {
        --header-height: 92px;
    }

    .header-wrapper {
        min-height: 92px;
        gap: 12px;
    }

    .logo {
        min-width: 0;
    }

    .logo-title {
        font-size: 20px;
    }

    .logo-subtitle {
        font-size: 13px;
    }

    .burger {
        flex: 0 0 auto;
    }

    .hero-grid,
    .why-grid,
    .contact-wrapper,
    .reviews-grid,
    .signals-grid,
    .footer-grid {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-content h1 {
        font-size: 40px;
        line-height: 1.08;
        max-width: 100%;
    }

    .hero-description,
    .section-description {
        font-size: 18px;
        line-height: 1.75;
        max-width: 100%;
    }

    .hero-feature,
    .review-card,
    .signal-card,
    .contact-form,
    .terminal-preview,
    .seo-expand-wrapper,
    .final-cta-box {
        max-width: 100%;
    }

    /* Reviews fix */
    .review-card {
        padding: 26px;
    }

    .review-top {
        display: grid;
        grid-template-columns: 58px 1fr;
        gap: 16px;
        align-items: start;
    }

    .review-avatar {
        grid-row: span 2;
    }

    .review-top strong {
        font-size: 20px;
        line-height: 1.25;
        word-break: normal;
    }

    .review-top span {
        display: block;
        font-size: 15px;
        line-height: 1.55;
        margin-top: 4px;
    }

    .review-badge {
        position: static;
        display: inline-flex;
        width: fit-content;
        max-width: 100%;
        margin-bottom: 18px;
        min-height: 34px;
        font-size: 11px;
    }

    .featured-review {
        transform: none !important;
    }

}


/* MOBILE SCROLL FIX */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

@media (max-width: 768px) {
    body {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .container,
    section,
    .header,
    .footer {
        max-width: 100%;
        overflow-x: hidden !important;
    }
}

@media (max-width: 900px) {
    body.menu-open {
        overflow: auto !important;
    }
}

@media (max-width: 900px) {
    .mobile-menu {
        top: calc(var(--header-height) + 8px);
        left: 14px;
        right: 14px;
        z-index: 1001;
    }

    .mobile-menu.active {
        display: flex !important;
    }
}



.legal-page {
    padding: 120px 0;
}

.legal-wrapper {
    max-width: 920px;
    margin: 0 auto;
    padding: 46px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.legal-wrapper h1 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 24px;
}

.legal-wrapper h2 {
    font-size: 24px;
    margin: 34px 0 12px;
}

.legal-wrapper p,
.legal-wrapper li {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 14px;
}

.legal-wrapper ul {
    padding-left: 22px;
}

@media (max-width: 768px) {
    .legal-wrapper {
        padding: 10px !important;
    }

    .contact-form {
        padding: 10px !important;
    }
}

.logo-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
}

.logo-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.footer-logo-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.footer-logo-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.terminal-preview.state-long {
    border-color: rgba(16,185,129,.28);
    box-shadow: 0 30px 100px rgba(16,185,129,.14);
}

.terminal-preview.state-short {
    border-color: rgba(239,68,68,.28);
    box-shadow: 0 30px 100px rgba(239,68,68,.14);
}

.terminal-preview.state-watch {
    border-color: rgba(245,158,11,.28);
    box-shadow: 0 30px 100px rgba(245,158,11,.14);
}

.hero-signal-badge.long {
    color: #10b981;
    background: rgba(16,185,129,.15);
}

.hero-signal-badge.short {
    color: #ef4444;
    background: rgba(239,68,68,.15);
}

.hero-signal-badge.watch {
    color: #f59e0b;
    background: rgba(245,158,11,.15);
}

.hero-live-chart {
    position: relative;
}

.hero-live-chart::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.08),
        transparent
    );
    transform: translateX(-120%);
    animation: chartScan 3.8s linear infinite;
}

@keyframes chartScan {
    100% {
        transform: translateX(120%);
    }
}

.terminal-feed-item {
    transition: .35s ease;
}

.terminal-feed-item.flash {
    background: rgba(255,255,255,.08);
    transform: translateX(6px);
}


/* ========================= */
/* FLOATING TICKER — FINAL */
/* ========================= */

.floating-ticker {
    position: fixed;
    left: 50%;
    bottom: 26px;
    z-index: 999;

    width: min(980px, calc(100% - 48px));
    height: 46px;

    transform: translateX(-50%) translateY(80px);

    display: flex;
    align-items: center;

    overflow: hidden;
    white-space: nowrap;

    border-radius: 999px;

    background: rgba(7,17,31,.92);
    border: 1px solid var(--border);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);

    opacity: 0;
    pointer-events: none;

    transition:
        transform .45s ease,
        opacity .35s ease;
}

.floating-ticker.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.floating-ticker::before,
.floating-ticker::after {
    content: attr(data-text);

    display: inline-block;
    flex-shrink: 0;

    padding-right: 70px;

    color: var(--text);
    font-size: 13px;
    font-weight: 900;

    animation: floatingTickerMove 32s linear infinite;
}

@keyframes floatingTickerMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .floating-ticker {
        left: 12px;
        right: 12px;
        bottom: 12px;

        width: auto;
        height: 48px;

        transform: translateY(80px);
    }

    .floating-ticker.visible {
        transform: translateY(0);
    }

    .floating-ticker::before,
    .floating-ticker::after {
        font-size: 13px;
        padding-right: 60px;
        animation-duration: 24s;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 30px;
    }
}

.container-header {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 60px 0;
    }
}

.get-started-btn-custom {
    background: linear-gradient(135deg, #FFF200 0%, #C8F020 45%, #63E035 100%);
    color: black;
}

@media (max-width: 1240px) {
    .ai-status {
        display: none;
    }
}

.iti__dropdown-content {
  background-color: #1c2532 !important;
}

html {
  scroll-behavior: smooth;
}
