/* Visual polish — same structure, cleaner lab look */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800&display=swap");

:root {
    --primary: #0b1220;
    --secondary: #1d4ed8;
    --accent: #e11d48;
    --accent-hover: #be123c;
    --text-dark: #1e293b;
    --text-muted: #5b6b80;
    --bg-light: #f4f7fb;
    --border: #d7e0ea;
    --green: #059669;
    --radius: 16px;
    --shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 32px -16px rgba(15, 23, 42, 0.18);
    --site-width: 1120px;
}

body {
    font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    background:
        radial-gradient(1200px 420px at 50% -80px, #e8eef8 0%, transparent 70%),
        #f7f9fc;
}

header {
    background: rgba(11, 18, 32, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.03em;
}

.logo img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
}

.logo span { color: #fb7185; }

nav a {
    padding: 6px 2px;
    opacity: 0.88;
}

nav a.active, nav a:hover {
    color: #fff;
    opacity: 1;
}

.disclosure-bar {
    background: #fff8eb;
    border-bottom: 1px solid #f3e0b5;
    color: #6b5420;
    font-size: 13px;
    padding: 10px 18px;
}

.disclosure-bar a { color: #9a3412; font-weight: 700; }

.page-home {
    padding-top: 42px;
}

.page-home > div:first-child {
    text-align: center;
}

.page-home .main-title,
.page-home .main-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.date-badge {
    background: #fff;
    border: 1px solid #dbe4f0;
    color: #334155;
    border-radius: 999px;
    padding: 6px 14px;
    letter-spacing: 0.04em;
}

.main-title {
    font-size: clamp(30px, 4vw, 44px);
    letter-spacing: -0.04em;
    margin: 14px 0 12px;
}

.main-subtitle {
    max-width: 720px;
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 36px;
}

.intent-matrix {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.matrix-btn {
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.matrix-btn:hover {
    background: #eef4ff;
    border-color: #bfdbfe;
    transform: translateY(-1px);
}

.product-feed { gap: 20px; }

.product-card {
    border-radius: 20px;
    padding: 26px 28px;
    gap: 8px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px -20px rgba(15, 23, 42, 0.35);
}

.product-card.premium-pick {
    border: 1px solid #93c5fd;
    background: linear-gradient(180deg, #f8fbff 0%, #fff 48%);
}

.ribbon {
    background: #1d4ed8;
    border-radius: 999px;
    top: -11px;
}

.rank-number {
    background: #eef2f7;
}

.score-num { letter-spacing: -0.04em; color: #0b1220; }

.badge-tag { border-radius: 999px; }

.btn-cta,
.sf-btn {
    background: linear-gradient(180deg, #f43f5e 0%, #e11d48 100%);
    border-radius: 10px;
    box-shadow: 0 8px 18px -8px rgba(225, 29, 72, 0.7);
}

.btn-cta:hover,
.sf-btn:hover { background: var(--accent-hover); }

.btn-review {
    border-radius: 10px;
    background: #fff;
}

.btn-review:hover { border-color: #94a3b8; }

.methodology-section {
    border-radius: 22px;
    background:
        radial-gradient(600px 200px at 10% 0%, rgba(251,113,133,0.16), transparent 50%),
        var(--primary);
}

.faq-item {
    background: #fff;
    border-radius: 14px;
}

.faq-question { font-family: inherit; }

.review-hero {
    background:
        radial-gradient(800px 240px at 20% 0%, #e8eef8, transparent 60%),
        var(--bg-light);
}

.sticky-widget {
    border-radius: 18px;
    border-color: #bfdbfe;
}

footer {
    margin-bottom: 0;
    padding: 36px 0 48px;
}

.legal-layout {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 40px 44px;
    box-shadow: var(--shadow);
}

.sticky-floating-bar {
    border-top: 1px solid #e2e8f0;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.94);
}

@media (max-width: 768px) {
    .legal-layout { padding: 24px 18px 28px; }
    .page-home { padding-top: 24px; }
}
