/* Shared styles used by vs-*.html pages — extracted from vs-ics inline styles */
.legal-notice {
    margin: 28px auto 0;
    max-width: 760px;
    padding: 16px 20px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    display: flex; gap: 14px;
    text-align: left;
    font-size: 13px; color: var(--ink-3); line-height: 1.55;
}
.legal-notice-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--violet-soft);
    color: var(--violet);
    display: grid; place-items: center;
    flex-shrink: 0;
    font-family: serif;
    font-size: 16px;
}
.legal-notice strong { color: var(--ink); font-weight: 500; }
.legal-notice a { color: var(--violet); text-decoration: underline; }

.recognition {
    max-width: 760px; margin: 0 auto;
    padding: 36px 36px 40px;
    background: var(--violet-softer);
    border-left: 3px solid var(--violet);
    border-radius: 10px;
    font-size: 15.5px; line-height: 1.7; color: var(--ink-2);
}
.recognition h2 {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.2;
}
.recognition h2 em { color: var(--violet); font-style: italic; font-weight: 400; }
.recognition p + p { margin-top: 14px; }
.recognition strong { color: var(--ink); font-weight: 500; }

/* Detailed comparison */
.dcmp {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
}
.dcmp-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    border-top: 1px solid var(--line);
}
.dcmp-row:first-child { border-top: none; }
.dcmp-row.head {
    background: var(--violet-darkest);
    color: #fff;
}
.dcmp-row.diff { background: var(--violet-softer); }
.dcmp-cell {
    padding: 18px 22px;
    font-size: 14px;
    line-height: 1.55;
    border-left: 1px solid var(--line);
}
.dcmp-cell:first-child { border-left: none; }
.dcmp-row.head .dcmp-cell {
    color: rgba(255,255,255,0.85);
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
    border-left: 1px solid rgba(255,255,255,0.1);
}
.dcmp-row.head .dcmp-cell:first-child { border-left: none; }
.dcmp-row.head .col-sdl { color: var(--violet-lighter); }
.col-feature {
    color: var(--ink);
    font-weight: 500;
}
.col-feature small {
    display: block;
    color: var(--ink-4);
    font-weight: 400;
    font-size: 12.5px;
    margin-top: 3px;
}
.col-feature .star { color: var(--violet); margin-right: 6px; }
.col-sdl {
    background: linear-gradient(180deg, rgba(237,233,254,0.4), transparent);
    color: var(--ink-2);
    font-weight: 500;
    position: relative;
}
.col-sdl::before {
    content: ""; position: absolute;
    top: 0; left: 0; bottom: 0; width: 3px;
    background: var(--violet);
}
.col-them { color: var(--ink-3); }
.cmp-ic {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px;
    border-radius: 50%;
    font-size: 12px; font-weight: 600;
    margin-right: 8px;
}
.cmp-ic.yes { background: #D1FAE5; color: #047857; }
.cmp-ic.no { background: #FEE2E2; color: #B91C1C; }
.cmp-ic.partial { background: #FEF3C7; color: #B45309; font-size: 10px; }

@media (max-width: 900px) {
    .dcmp-row { grid-template-columns: 1fr; }
    .dcmp-cell { border-left: none; border-top: 1px solid var(--line); }
    .dcmp-row .dcmp-cell:first-child { border-top: none; }
}
