* { 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, 1180px);
    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 {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

.nav a:hover { color: #22c55e; }

.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: 78px 0 82px;
}

.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;
    max-width: 900px;
}

.eyebrow {
    color: #93c5fd;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(44px, 5vw, 72px);
    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: 800px;
    margin: 0;
}

main { padding: 30px 0 20px; }

.disclaimer {
    margin: 0 0 28px;
    background: #fff8e1;
    border: 1px solid #f0d77a;
    border-left: 5px solid #f59e0b;
    color: #4b3b00;
    padding: 14px 18px;
    border-radius: 10px;
    line-height: 1.45;
}

.faq-intro,
.faq-index,
.faq-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 2px 18px rgba(0,0,0,.08);
    margin-bottom: 28px;
}

.faq-section.alt {
    background: linear-gradient(135deg, #ecfdf5, #fff);
}

.faq-intro h2,
.faq-index h2,
.faq-section h2 {
    margin: 0 0 20px;
    font-size: 30px;
    color: #0f172a;
}

.faq-intro p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

.index-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.index-grid a {
    display: block;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 14px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 800;
    line-height: 1.35;
}

.index-grid a:hover {
    background: #ecfdf5;
    border-color: #bbf7d0;
    color: #065f46;
}

.faq-item {
    border-top: 1px solid #e5e7eb;
    padding: 20px 0;
    scroll-margin-top: 90px;
}

.faq-item:first-of-type {
    border-top: none;
    padding-top: 0;
}

.faq-item h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.faq-anchor {
    color: #94a3b8;
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;
}

.faq-anchor:hover { color: #22c55e; }

.faq-item p {
    color: #475569;
    line-height: 1.65;
    margin: 0 0 12px;
    font-size: 16px;
}

.faq-item ul {
    margin: 10px 0 0 22px;
    color: #475569;
    line-height: 1.65;
}

.faq-item li { margin-bottom: 6px; }

.rating-grid,
.quality-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.quality-grid {
    grid-template-columns: repeat(4, 1fr);
}

.rating-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
}

.rating-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

.rating-card span {
    color: #475569;
    font-size: 14px;
    line-height: 1.45;
}

.strong-buy { color: #006400; }
.buy { color: #16a34a; }
.quality-hold { color: #92400e; }
.hold { color: #d97706; }
.sell { color: #dc2626; }
.strong-sell { color: #8b0000; }
.quality-a { color: #065f46; }
.quality-b { color: #1d4ed8; }
.quality-c { color: #64748b; }

.planned-note {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-left: 5px solid #2563eb;
    color: #1e3a8a;
    padding: 14px 16px;
    border-radius: 10px;
    line-height: 1.5;
    margin-top: 12px;
}

.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;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 13px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.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);
    margin-left: 10px;
}

.btn-secondary:hover {
    background: #fff;
    color: #0f172a;
}

.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; }

@media (max-width: 1000px) {
    .rating-grid,
    .quality-grid,
    .index-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 700px) {
    .container {
        width: 100%;
        padding: 0 16px;
    }

    .hero {
        padding: 52px 0 58px;
        text-align: center;
    }

    .hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.55;
    }

    .faq-intro,
    .faq-index,
    .faq-section {
        padding: 20px;
        border-radius: 14px;
    }

    .faq-section h2,
    .faq-index h2,
    .faq-intro h2 {
        font-size: 24px;
    }

    .rating-grid,
    .quality-grid,
    .index-grid {
        grid-template-columns: 1fr;
    }

    .final-cta {
        padding: 26px 18px;
    }

    .final-cta h2 { font-size: 24px; }

    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
