﻿main.vs-main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 48px clamp(16px, 4vw, 48px) 96px;
    }
    .vs-hero { text-align: center; padding: 24px 0 48px; }
    .vs-hero .eyebrow {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 16px;
      border: 1px solid var(--line);
      padding: 4px 12px;
      border-radius: 999px;
    }
    .vs-hero h1 {
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.05;
      margin: 0 auto 18px;
      max-width: 880px;
    }
    .vs-hero h1 .accent { color: var(--accent); }
    .vs-hero p.lead {
      color: var(--text-2);
      font-size: 17px;
      line-height: 1.55;
      max-width: 640px;
      margin: 0 auto;
    }

    .vs-table-wrap {
      overflow-x: auto;
      margin: 40px 0;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: var(--bg-1);
    }
    .vs-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13.5px;
      min-width: 720px;
    }
    .vs-table th, .vs-table td {
      padding: 12px 16px;
      text-align: left;
      border-bottom: 1px solid var(--line);
      vertical-align: top;
    }
    .vs-table th {
      background: var(--bg-2);
      font-weight: 600;
      font-size: 12px;
      color: var(--text);
      letter-spacing: 0.01em;
      position: sticky;
      top: 0;
    }
    .vs-table th.us {
      background: color-mix(in oklab, var(--accent) 12%, var(--bg-2));
      color: var(--accent);
    }
    .vs-table td.label {
      font-weight: 600;
      color: var(--text);
      background: var(--bg-2);
      font-size: 12.5px;
      width: 200px;
    }
    .vs-table td.us-cell {
      background: color-mix(in oklab, var(--accent) 5%, var(--bg-1));
      color: var(--text);
      font-weight: 500;
    }
    .vs-table .y { color: var(--success); }
    .vs-table .n { color: var(--error, #FF6B6B); opacity: 0.85; }
    .vs-table .p { color: var(--accent); }
    .vs-table tbody tr:hover { background: var(--bg-2); }
    .vs-table tbody tr:hover td.us-cell { background: color-mix(in oklab, var(--accent) 10%, var(--bg-1)); }

    .vs-section { margin: 56px 0; }
    .vs-section h2 {
      font-size: 26px;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin: 0 0 18px;
    }
    .vs-section h2 .accent { color: var(--accent); }
    .vs-section p {
      font-size: 15px;
      line-height: 1.6;
      color: var(--text-2);
      max-width: 760px;
      margin: 0 0 14px;
    }
    .vs-section p strong { color: var(--text); font-weight: 600; }

    /* Callout — uniform full border with subtle amber-tint background.
       No side-stripe (banned per impeccable absolute bans). Emphasis
       comes from the background tint + accent strong, not decoration. */
    .vs-callout {
      background: color-mix(in oklab, var(--accent) 5%, var(--bg-1));
      border: 1px solid color-mix(in oklab, var(--accent) 20%, var(--line));
      border-radius: 10px;
      padding: 18px 22px;
      margin: 18px 0;
    }
    .vs-callout strong { color: var(--accent); }
    .vs-callout p { margin: 0; }

    .vs-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 18px;
    }
    @media (max-width: 760px) { .vs-grid-2 { grid-template-columns: 1fr; } }

    .vs-grid-2 .col {
      background: var(--bg-1);
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 22px;
    }
    .vs-grid-2 .col h3 {
      font-size: 16px;
      margin: 0 0 12px;
      color: var(--text);
    }
    .vs-grid-2 .col.win h3 { color: var(--success); }
    .vs-grid-2 .col.lose h3 { color: var(--accent-hot); }
    .vs-grid-2 .col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .vs-grid-2 .col li {
      padding: 8px 0 8px 22px;
      position: relative;
      font-size: 13.5px;
      color: var(--text-2);
      line-height: 1.5;
    }
    .vs-grid-2 .col.win li::before {
      content: "+";
      position: absolute;
      left: 0;
      color: var(--success);
      font-weight: 700;
    }
    .vs-grid-2 .col.lose li::before {
      content: "−";
      position: absolute;
      left: 0;
      color: var(--accent-hot);
      font-weight: 700;
    }

    .vs-final-cta {
      margin-top: 64px;
      padding: 48px 32px;
      text-align: center;
      background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 100%);
      border: 1px solid var(--line);
      border-radius: 18px;
    }
    .vs-final-cta h2 {
      font-size: 28px;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin: 0 0 12px;
    }
    .vs-final-cta p {
      color: var(--text-2);
      max-width: 540px;
      margin: 0 auto 24px;
    }
