        * { box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            margin: 0;
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            background: #f4f7f6;
            color: #0f172a;
        }

        a { color: inherit; }

        .container {
            width: min(94vw, 1380px);
            margin: 0 auto;
        }

        .topbar {
            background: #020617;
            color: #fff;
            padding: 18px 0;
        }

        .topbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
        }

        .brand {
            font-weight: 900;
            letter-spacing: 1px;
            font-size: 22px;
            text-decoration: none;
        }

        .brand span { color: #22c55e; }

        .nav {
            display: flex;
            gap: 22px;
            align-items: center;
            flex-wrap: wrap;
        }

        .nav a,
        .nav button {
            color: #e5e7eb;
            background: none;
            border: none;
            text-decoration: none;
            font-weight: 700;
            cursor: pointer;
            font-size: 15px;
            font-family: inherit;
        }

        .nav a:hover,
        .nav button:hover { color: #22c55e; }

        .nav .nav-cta {
            background: #22c55e;
            color: #052e16;
            padding: 10px 16px;
            border-radius: 8px;
            font-weight: 900;
        }

        .nav .nav-cta:hover {
            background: #16a34a;
            color: #fff;
        }

        .hero {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 78% 18%, rgba(34,197,94,0.32), transparent 24%),
                radial-gradient(circle at 15% 80%, rgba(59,130,246,0.25), transparent 28%),
                linear-gradient(135deg, #020617 0%, #07152d 48%, #0f172a 100%);
            color: #fff;
            padding: 72px 0 78px;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            opacity: 0.16;
            background-image:
                linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
            background-size: 46px 46px;
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1.02fr 0.98fr;
            gap: 52px;
            align-items: center;
        }

        .eyebrow {
            color: #93c5fd;
            font-size: 14px;
            font-weight: 900;
            letter-spacing: 2px;
            margin-bottom: 18px;
        }

        .hero h1 {
            font-size: clamp(46px, 5vw, 76px);
            line-height: 1.02;
            letter-spacing: -2px;
            margin: 0 0 22px;
        }

        .hero h1 span {
            display: block;
            color: #22c55e;
        }

        .hero p {
            color: #dbeafe;
            font-size: 18px;
            line-height: 1.65;
            max-width: 720px;
            margin: 0 0 30px;
        }

        .actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn-primary,
        .btn-secondary,
        .modal-submit {
            display: inline-block;
            padding: 13px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 900;
            border: none;
            cursor: pointer;
            font-size: 15px;
            font-family: inherit;
        }

        .btn-primary {
            background: #22c55e;
            color: #052e16;
        }

        .btn-primary:hover {
            background: #16a34a;
            color: #fff;
        }

        .btn-secondary {
            background: rgba(255,255,255,.10);
            color: #fff;
            border: 1px solid rgba(203,213,225,.70);
        }

        .btn-secondary:hover {
            background: #fff;
            color: #0f172a;
        }

        .hero-graphic {
            position: relative;
            min-height: 430px;
        }

        .terminal-card {
            position: absolute;
            right: 0;
            top: 16px;
            width: 94%;
            background: rgba(15,23,42,.82);
            border: 1px solid rgba(148,163,184,.38);
            border-radius: 24px;
            padding: 24px;
            box-shadow: 0 22px 48px rgba(0,0,0,.38);
            backdrop-filter: blur(10px);
        }

        .terminal-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 18px;
        }

        .terminal-title {
            font-weight: 900;
            font-size: 18px;
        }

        .pill {
            background: rgba(34,197,94,.18);
            color: #86efac;
            border: 1px solid rgba(34,197,94,.45);
            padding: 6px 10px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 900;
        }

        .chart-box {
            height: 190px;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(15,23,42,.86), rgba(30,41,59,.86));
            overflow: hidden;
            position: relative;
            margin-bottom: 18px;
            border: 1px solid rgba(148,163,184,.22);
        }

        .chart-box svg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .metric {
            background: rgba(255,255,255,.07);
            border: 1px solid rgba(148,163,184,.25);
            border-radius: 14px;
            padding: 14px;
        }

        .metric strong {
            display: block;
            color: #93c5fd;
            font-size: 12px;
            margin-bottom: 8px;
        }

        .metric span {
            color: #fff;
            font-size: 22px;
            font-weight: 900;
        }

        .floating-card {
            position: absolute;
            background: rgba(15,23,42,.86);
            border: 1px solid rgba(148,163,184,.38);
            border-radius: 20px;
            padding: 18px;
            box-shadow: 0 20px 40px rgba(0,0,0,.32);
            backdrop-filter: blur(10px);
        }

        .weekly-card {
            left: 0;
            bottom: 34px;
            width: 280px;
        }

        .weekly-card .label {
            color: #93c5fd;
            font-size: 12px;
            font-weight: 900;
            margin-bottom: 8px;
        }

        .weekly-card h3 {
            margin: 0 0 8px;
            color: #fff;
            font-size: 24px;
        }

        .weekly-card p {
            margin: 0;
            color: #cbd5e1;
            font-size: 13px;
            line-height: 1.45;
        }

        .score-card {
            right: 24px;
            bottom: 0;
            width: 210px;
            text-align: center;
        }

        .score-card .score {
            font-size: 46px;
            line-height: 1;
            color: #22c55e;
            font-weight: 900;
        }

        .score-card .score-label {
            margin-top: 8px;
            color: #cbd5e1;
            font-size: 13px;
        }

        .disclaimer {
            margin: 28px 0;
            background: #fff8e1;
            border: 1px solid #f0d77a;
            border-left: 5px solid #f59e0b;
            color: #4b3b00;
            padding: 14px 18px;
            border-radius: 10px;
            line-height: 1.45;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 18px;
            margin-bottom: 30px;
        }

        .feature {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 2px 12px rgba(0,0,0,.07);
        }

        .feature .icon {
            font-size: 30px;
            margin-bottom: 10px;
        }

        .feature h3 {
            margin: 0 0 7px;
            font-size: 16px;
        }

        .feature p {
            margin: 0;
            color: #475569;
            font-size: 13px;
            line-height: 1.45;
        }

        .card {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 18px;
            padding: 28px;
            box-shadow: 0 2px 18px rgba(0,0,0,.08);
            margin-bottom: 28px;
        }

        .card h2 {
            margin: 0 0 8px;
            font-size: 30px;
            color: #0f172a;
        }

        .card p {
            color: #475569;
            line-height: 1.55;
            margin-top: 0;
        }

        .research-card {
            background:
                radial-gradient(circle at 92% 14%, rgba(34,197,94,0.18), transparent 22%),
                linear-gradient(135deg, #ffffff, #ecfdf5);
            border: 1px solid #bbf7d0;
        }

        .research-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 22px;
            align-items: stretch;
            margin-top: 18px;
        }

        .research-feature {
            background: rgba(255,255,255,.85);
            border: 1px solid #d1fae5;
            border-radius: 16px;
            padding: 22px;
        }

        .research-feature .tag {
            display: inline-block;
            background: #dcfce7;
            color: #065f46;
            border: 1px solid #bbf7d0;
            border-radius: 999px;
            padding: 6px 10px;
            font-size: 12px;
            font-weight: 900;
            margin-bottom: 12px;
        }

        .research-feature h3 {
            margin: 0 0 10px;
            color: #0f172a;
            font-size: 24px;
            line-height: 1.2;
        }

        .research-feature p {
            margin-bottom: 16px;
        }

        .research-links {
            background: #0f172a;
            color: #fff;
            border-radius: 16px;
            padding: 22px;
        }

        .research-links h3 {
            margin: 0 0 10px;
            font-size: 22px;
        }

        .research-links p {
            color: #cbd5e1;
            margin-bottom: 16px;
        }

        .research-links a {
            display: block;
            color: #86efac;
            text-decoration: none;
            font-weight: 900;
            margin: 12px 0;
        }

        .research-links a:hover {
            color: #22c55e;
        }

        .search-box {
            display: flex;
            gap: 12px;
            margin: 22px 0;
        }

        .search-box input {
            flex: 1;
            min-width: 0;
            padding: 14px;
            border: 1px solid #cbd5e1;
            border-radius: 9px;
            font-size: 15px;
        }

        .search-box button {
            padding: 14px 24px;
            background: #2563eb;
            color: #fff;
            border: none;
            border-radius: 9px;
            cursor: pointer;
            font-weight: 900;
        }

        .table-wrap {
            width: 100%;
            overflow: visible;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            table-layout: auto;
            background: #fff;
        }

        th {
            background: #0f172a;
            color: #fff;
            text-align: left;
            padding: 14px 16px;
            font-size: 14px;
        }

        td {
            padding: 14px 16px;
            border-bottom: 1px solid #e5e7eb;
            cursor: pointer;
            font-size: 15px;
            vertical-align: middle;
        }

        tr:hover { background: #f8fafc; }

        .status {
            margin-top: 18px;
            padding: 14px;
            border-radius: 10px;
            text-align: center;
            font-weight: 800;
            border: 1px solid #ddd;
        }

        .rec-badge,
        .quality-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            border-radius: 999px;
            padding: 6px 10px;
            font-size: 12px;
            font-weight: 900;
            white-space: nowrap;
        }

        .rec-strong-buy {
            background: #dcfce7;
            color: #14532d;
            border: 1px solid #86efac;
        }

        .rec-buy {
            background: #ecfdf5;
            color: #166534;
            border: 1px solid #bbf7d0;
        }

        .rec-quality-hold {
            background: #fef3c7;
            color: #92400e;
            border: 1px solid #f59e0b;
        }

        .rec-hold {
            background: #f1f5f9;
            color: #475569;
            border: 1px solid #cbd5e1;
        }

        .rec-sell {
            background: #fee2e2;
            color: #991b1b;
            border: 1px solid #fecaca;
        }

        .rec-strong-sell {
            background: #fecaca;
            color: #7f1d1d;
            border: 1px solid #ef4444;
        }

        .quality-pill {
            background: #eff6ff;
            color: #1e40af;
            border: 1px solid #bfdbfe;
        }

        .quality-pill.quality-a-plus,
        .quality-pill.quality-a {
            background: #ecfdf5;
            color: #065f46;
            border-color: #a7f3d0;
        }

        .quality-pill.quality-b {
            background: #eff6ff;
            color: #1d4ed8;
            border-color: #bfdbfe;
        }

        .quality-pill.quality-c {
            background: #f8fafc;
            color: #64748b;
            border-color: #cbd5e1;
        }

        .upside-positive {
            color: #166534;
            font-weight: 900;
        }

        .upside-neutral {
            color: #64748b;
            font-weight: 800;
        }

        .screener-note {
            margin-top: 12px;
            color: #64748b;
            font-size: 13px;
            line-height: 1.45;
        }

        .benefits,
        .seo-section {
            background: linear-gradient(135deg, #ecfdf5, #fff);
        }

        .benefit-grid,
        .seo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 18px;
        }

        .benefit,
        .seo-item {
            background: rgba(255,255,255,.75);
            border: 1px solid #d1fae5;
            border-radius: 14px;
            padding: 18px;
        }

        .benefit strong,
        .seo-item strong {
            display: block;
            color: #065f46;
            margin-bottom: 6px;
        }

        .benefit span,
        .seo-item span {
            color: #475569;
            font-size: 14px;
            line-height: 1.45;
        }

        .seo-section ul {
            color: #475569;
            line-height: 1.65;
            padding-left: 22px;
            margin-bottom: 0;
        }

        .final-cta {
            background: linear-gradient(135deg, #020617, #111827);
            color: #fff;
            text-align: center;
            border-radius: 20px;
            padding: 34px;
            margin-bottom: 50px;
        }

        .final-cta h2 {
            margin: 0 0 10px;
            font-size: 30px;
        }

        .final-cta p {
            color: #cbd5e1;
            max-width: 760px;
            margin: 0 auto 20px;
            line-height: 1.55;
        }

        .site-footer {
            margin-top: 30px;
            padding: 34px 0;
            background: #020617;
            color: #cbd5e1;
            border-top: 1px solid rgba(255,255,255,0.12);
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer-brand {
            font-weight: 900;
            color: #fff;
            margin-bottom: 6px;
        }

        .footer-brand span { color: #22c55e; }

        .footer-copy {
            font-size: 14px;
            color: #94a3b8;
        }

        .footer-nav {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }

        .footer-nav a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
        }

        .footer-nav a:hover { color: #22c55e; }

        .modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,.55);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-box {
            background: #fff;
            width: 100%;
            max-width: 430px;
            border-radius: 12px;
            padding: 26px;
            box-shadow: 0 4px 22px rgba(0,0,0,.25);
        }

        .modal-box h3 { margin-top: 0; }

        .modal-box p {
            color: #555;
            font-size: .92em;
            line-height: 1.45;
        }

        .modal-box input {
            width: 100%;
            padding: 11px;
            margin-bottom: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        .reg-check {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            font-size: 13px;
            line-height: 1.4;
            color: #475569;
            margin: 4px 0 14px;
        }

        .reg-check input {
            width: auto;
            margin: 3px 0 0;
            flex: 0 0 auto;
        }

        .modal-actions {
            display: flex;
            gap: 10px;
        }

        .modal-submit {
            background: #2563eb;
            color: #fff;
        }

        .modal-close {
            padding: 10px 18px;
            background: #ddd;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        #reg-message {
            margin: 10px 0;
            font-size: .92em;
            line-height: 1.4;
        }

        @media (max-width: 1050px) {
            .hero-inner { grid-template-columns: 1fr; }
            .hero-graphic { min-height: 360px; }
            .terminal-card { width: 100%; }
            .feature-grid { grid-template-columns: repeat(2, 1fr); }
            .benefit-grid,
            .seo-grid,
            .research-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 700px) {
            .topbar-inner {
                align-items: flex-start;
                flex-direction: column;
            }

            .nav { gap: 14px; }

            .container {
                width: 100%;
                padding: 0 16px;
            }

            .hero {
                padding: 48px 0 56px;
                text-align: center;
            }

            .hero h1 {
                font-size: 40px;
                letter-spacing: -1px;
            }

            .hero p {
                font-size: 16px;
                line-height: 1.55;
            }

            .actions {
                flex-direction: column;
                align-items: stretch;
            }

            .actions a {
                text-align: center;
                width: 100%;
            }

            .hero-graphic { display: none; }
            .feature-grid { grid-template-columns: 1fr; }

            .card {
                padding: 20px;
                border-radius: 14px;
            }

            .card h2 { font-size: 24px; }

            .research-feature h3,
            .research-links h3 {
                font-size: 21px;
            }

            .search-box { flex-direction: column; }
            .search-box button { width: 100%; }

            .table-wrap { overflow-x: auto; }
            table { min-width: 760px; }

            .final-cta { padding: 26px 18px; }
            .final-cta h2 { font-size: 24px; }

            .modal-actions { flex-direction: column; }

            .footer-inner {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        .btn-secondary-dark {
            background: #0f172a;
            color: #fff;
            border-color: #0f172a;
        }
