/* KI-Empfehlungscheck */
.check-content {
  --green: #80b32c;
  --green-dark: #65951d;
  --green-pale: #eef7df;
  --navy: #0a2540;
  --navy-deep: #071d31;
  --ink: #17324d;
  --copy: #53687c;
  --muted: #7c8d9d;
  --line: #dbe5ec;
  --soft: #f5f8fa;
  --white: #ffffff;
  --amber: #d58f16;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 24px 70px rgba(10, 37, 64, .12);
  --shell: min(1180px, calc(100% - 40px));
}

.check-content * { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.check-content {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
.check-content button, .check-content input, .check-content select { font: inherit; }
.check-content a { color: inherit; }
.check-content [hidden] { display: none !important; }
.check-content .shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; transform: translateY(-150%); padding: 10px 14px; border-radius: 8px; background: var(--navy); color: white; }
.skip-link:focus { transform: none; }

.check-content .hero { position: relative; overflow: hidden; padding: 92px 0 84px; background: linear-gradient(135deg, #f9fbfc 0%, #f1f6f7 60%, #edf5e4 100%); }
.check-content .hero::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--line); }
.check-content .hero-glow { position: absolute; width: 520px; height: 520px; right: -140px; top: -210px; border-radius: 50%; background: rgba(128, 179, 44, .14); filter: blur(2px); }
.check-content .hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr); align-items: center; gap: clamp(54px, 7vw, 104px); }
.check-content .hero-copy { max-width: 580px; }
.check-content .eyebrow, .check-content .section-kicker { margin: 0 0 14px; color: var(--green-dark); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.check-content .eyebrow span { display: inline-block; margin-right: 7px; padding: 6px 10px; border-radius: 999px; background: var(--green-pale); }
.check-content h1, .check-content h2, .check-content h3 { margin-top: 0; font-family: Outfit, Inter, sans-serif; color: var(--navy); }
.check-content h1 { margin-bottom: 26px; font-size: clamp(2.8rem, 5.4vw, 5rem); line-height: .99; letter-spacing: -.045em; }
.check-content h1 em { color: var(--green-dark); font-style: normal; }
.check-content .hero-lead { max-width: 620px; margin: 0; color: var(--copy); font-size: clamp(1.05rem, 1.7vw, 1.22rem); line-height: 1.72; }
.check-content .signal-row { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 34px; color: var(--ink); font-size: .82rem; font-weight: 700; }
.check-content .signal-row span { display: flex; align-items: center; gap: 9px; }
.check-content .signal-row span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(128, 179, 44, .15); }

.check-content .check-card { padding: clamp(28px, 4vw, 44px); border: 1px solid rgba(10, 37, 64, .09); border-radius: var(--radius-lg); background: rgba(255,255,255,.98); box-shadow: var(--shadow); }
.check-content .card-kicker { display: inline-flex; margin-bottom: 16px; padding: 6px 10px; border: 1px solid #dceac5; border-radius: 999px; color: var(--green-dark); background: #f8fcef; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.check-content .check-card h2 { margin-bottom: 8px; font-size: clamp(1.65rem, 3vw, 2.15rem); letter-spacing: -.025em; }
.check-content .check-card > p { margin: 0 0 28px; color: var(--copy); line-height: 1.55; }
.check-content .selection-progress { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 0 30px; padding: 0; list-style: none; }
.check-content .selection-progress li { position: relative; display: grid; justify-items: center; gap: 7px; color: var(--muted); font-size: .65rem; font-weight: 750; }
.check-content .selection-progress li::before { content: ""; position: absolute; z-index: 0; top: 15px; right: 50%; width: 100%; height: 2px; background: var(--line); }
.check-content .selection-progress li:first-child::before { display: none; }
.check-content .selection-progress li span { position: relative; z-index: 1; width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); background: white; font-family: Outfit, Inter, sans-serif; font-size: .74rem; font-variant-numeric: tabular-nums; transition: color .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease; }
.check-content .selection-progress li small { font: inherit; }
.check-content .selection-progress li.is-complete::before, .check-content .selection-progress li.is-active::before { background: #bdd68f; }
.check-content .selection-progress li.is-complete span { border-color: var(--green); color: white; background: var(--green-dark); }
.check-content .selection-progress li.is-active { color: var(--navy); }
.check-content .selection-progress li.is-active span { border-color: var(--green); color: var(--green-dark); background: var(--green-pale); box-shadow: 0 0 0 4px rgba(128, 179, 44, .12); }
.check-content .selection-stage { min-height: 265px; animation: selection-stage-enter .24s ease-out; }
.check-content .selection-stage-intro { margin: 0 0 28px; color: var(--copy); line-height: 1.55; text-wrap: pretty; }
.check-content .selection-stage-head { display: flex; min-height: 48px; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; padding: 11px 14px; border: 1px solid #dceac5; border-radius: 13px; background: #f8fcef; }
.check-content .selection-stage-head div { min-width: 0; }
.check-content .selection-stage-head strong, .check-content .selection-stage-label { display: block; }
.check-content .selection-stage-head strong { overflow: hidden; color: var(--navy); font-size: .8rem; text-overflow: ellipsis; white-space: nowrap; }
.check-content .selection-stage-label { margin-bottom: 2px; color: var(--green-dark); font-size: .6rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
@keyframes selection-stage-enter { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }
.check-content .field-label { display: block; margin-bottom: 11px; color: var(--ink); font-size: .82rem; font-weight: 800; }
.check-content .search-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.check-content .autocomplete-field { position: relative; min-width: 0; }
.check-content .search-row input { width: 100%; min-width: 0; height: 54px; padding: 0 44px 0 16px; border: 1px solid #cbd8e1; border-radius: var(--radius-sm); color: var(--navy); background: white; outline: none; }
.check-content .search-row input:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(128, 179, 44, .14); }
.check-content .search-row input::placeholder { color: #98a7b3; }
.check-content .search-spinner { position: absolute; top: 50%; right: 17px; width: 18px; height: 18px; margin-top: -9px; border: 2px solid #dbe5ec; border-top-color: var(--green-dark); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.check-content .field-help, .check-content .privacy-note { color: var(--muted); font-size: .73rem; line-height: 1.55; }
.check-content .field-help { margin: 9px 0 0; }
.check-content .privacy-note { margin: 16px 0 0 !important; }
.check-content .button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: var(--radius-sm); padding: 12px 18px; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .16s ease, background .16s ease, box-shadow .16s ease; }
.check-content .button:hover:not(:disabled) { transform: translateY(-1px); }
.check-content .button:focus-visible { outline: 3px solid rgba(128, 179, 44, .38); outline-offset: 2px; }
.check-content .button:disabled { opacity: .48; cursor: wait; }
.check-content .button-primary { color: white; background: var(--navy); box-shadow: 0 9px 22px rgba(10, 37, 64, .16); }
.check-content .button-primary:hover:not(:disabled) { background: var(--green-dark); }
.check-content .button-secondary { border: 1px solid var(--line); color: var(--navy); background: white; }
.check-content .button-light { color: var(--navy); background: white; }
.check-content .button-full { width: 100%; margin-top: 12px; }
.check-content .inline-status { min-height: 0; margin-top: 12px; color: var(--copy); font-size: .82rem; line-height: 1.5; }
.check-content .inline-status.is-error { padding: 11px 13px; border-radius: 10px; color: #8e2f27; background: #fff0ee; }
.check-content .practice-results { position: relative; z-index: 5; display: grid; max-height: 300px; gap: 6px; margin-top: 8px; padding: 6px; overflow-y: auto; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: 0 18px 42px rgba(10, 37, 64, .14); }
.check-content .practice-option { width: 100%; display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; padding: 14px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: white; text-align: left; cursor: pointer; }
.check-content .practice-option:hover { border-color: #aecb7c; background: #fbfef7; }
.check-content .practice-option.is-selected { border-color: var(--green); background: var(--green-pale); box-shadow: inset 0 0 0 1px var(--green); }
.check-content .practice-option strong, .check-content .practice-option small { display: block; }
.check-content .practice-option strong { margin-bottom: 4px; font-size: .84rem; }
.check-content .practice-option small { color: var(--muted); font-size: .72rem; line-height: 1.45; }
.check-content .practice-option .rating { color: var(--green-dark); font-size: .72rem; font-weight: 800; white-space: nowrap; }
.check-content .practice-confirmation { margin: 0; padding: 0; border: 0; background: transparent; }
.check-content .selected-practice-copy { display: grid; grid-template-columns: auto 1fr auto; gap: 11px; align-items: center; margin-bottom: 18px; }
.check-content .selection-check { display: inline-grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; color: white; background: var(--green-dark); font-size: .84rem; font-weight: 800; }
.check-content .selected-practice-copy strong, .check-content .selected-practice-copy small { display: block; }
.check-content .selected-practice-copy strong { margin-bottom: 3px; color: var(--navy); font-size: .86rem; }
.check-content .selected-practice-copy small { color: var(--muted); font-size: .72rem; line-height: 1.4; }
.check-content .selection-change { min-height: 40px; padding: 7px 4px; border: 0; color: var(--green-dark); background: transparent; font-size: .74rem; font-weight: 800; cursor: pointer; }
.check-content .selection-change:hover { text-decoration: underline; }
.check-content .practice-confirmation select { width: 100%; height: 52px; padding: 0 42px 0 14px; border: 1px solid #c8d8b0; border-radius: var(--radius-sm); color: var(--navy); background: white; outline: none; }
.check-content .practice-confirmation select:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(128, 179, 44, .14); }
.check-content .practice-confirmation .field-help { margin-bottom: 0; }
.check-content .service-selection { min-width: 0; margin: 18px 0 0; padding: 0; border: 0; }
.check-content .service-selection legend { padding: 0; color: var(--navy); font-family: Outfit, sans-serif; font-size: .95rem; font-weight: 800; }
.check-content .service-intro { margin: 6px 0 12px; color: var(--copy); font-size: .76rem; line-height: 1.5; }
.check-content .service-intro strong { color: var(--navy); }
.check-content .service-selection-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 10px; color: var(--muted); font-size: .7rem; line-height: 1.4; }
.check-content #service-count { color: var(--green-dark); font-weight: 800; font-variant-numeric: tabular-nums; white-space: nowrap; }
.check-content #service-selection-status { text-align: right; }
.check-content .service-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 2px; }
.check-content .service-option { position: relative; display: flex; min-height: 48px; align-items: center; gap: 9px; padding: 10px 11px; border: 1px solid #cbd9b6; border-radius: 11px; color: var(--navy); background: white; font-size: .74rem; font-weight: 700; line-height: 1.3; cursor: pointer; transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease, opacity .16s ease; }
.check-content .service-option:hover { border-color: #9fbd6e; background: #fbfef7; }
.check-content .service-option:focus-within { border-color: var(--green); box-shadow: 0 0 0 3px rgba(128, 179, 44, .16); }
.check-content .service-option.is-selected { border-color: var(--green-dark); background: #f0f8e3; box-shadow: inset 0 0 0 1px var(--green-dark); }
.check-content .service-option.is-disabled { opacity: .48; cursor: not-allowed; }
.check-content .service-option input { width: 17px; height: 17px; flex: 0 0 auto; margin: 0; accent-color: var(--green-dark); }
.check-content .service-option span { overflow-wrap: anywhere; }

.check-content .method-strip { border-bottom: 1px solid var(--line); background: white; }
.check-content .method-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.check-content .method-grid article { min-height: 152px; display: flex; align-items: center; gap: 18px; padding: 34px 38px; border-right: 1px solid var(--line); }
.check-content .method-grid article:first-child { border-left: 1px solid var(--line); }
.check-content .method-grid article > span { color: var(--green); font-family: Outfit, sans-serif; font-size: 1rem; font-weight: 800; }
.check-content .method-grid h2 { margin-bottom: 5px; font-size: 1rem; }
.check-content .method-grid p { margin: 0; color: var(--copy); font-size: .82rem; line-height: 1.55; }

.check-content .analysis, .check-content .result { padding-top: 88px; padding-bottom: 110px; }
html[data-check-page="result"] .check-content .hero, html[data-check-page="result"] .check-content .method-strip { display: none; }
html[data-check-page="result"] .check-content { background: linear-gradient(180deg, #f6f9fa 0, #fff 440px); }
html[data-check-page="result"] .check-content .analysis, html[data-check-page="result"] .check-content .result { min-height: 68vh; }
.check-content .progress-card { max-width: 850px; display: grid; grid-template-columns: 130px 1fr; align-items: center; gap: 42px; margin: 0 auto; padding: clamp(34px, 6vw, 70px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--soft); }
.check-content .progress-orbit { width: 118px; height: 118px; position: relative; border: 1px solid #cbd9df; border-radius: 50%; animation: orbit 2.8s linear infinite; }
.check-content .progress-orbit::before, .check-content .progress-orbit::after { content: ""; position: absolute; inset: 19px; border: 1px solid #d8e6c3; border-radius: 50%; }
.check-content .progress-orbit::after { inset: 43px; background: var(--green); box-shadow: 0 0 0 10px rgba(128, 179, 44, .14); }
.check-content .progress-orbit span { position: absolute; width: 14px; height: 14px; top: -7px; left: 50%; border-radius: 50%; background: var(--navy); }
@keyframes orbit { to { transform: rotate(360deg); } }
.check-content .progress-card h2 { margin-bottom: 12px; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.check-content .progress-card p { color: var(--copy); }
.check-content .progress-track { height: 8px; margin-top: 24px; overflow: hidden; border-radius: 999px; background: #dce5e9; }
.check-content .progress-track span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--green), #a5d454); transition: width .3s ease; }
.check-content .progress-count { margin: 10px 0 0; font-size: .74rem; }

.check-content .result-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.check-content .result-head h2 { margin-bottom: 7px; font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.035em; }
.check-content .result-head p { margin: 0; color: var(--copy); }
.check-content .result-actions { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: .73rem; white-space: nowrap; }
.check-content .verdict { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); align-items: start; gap: 42px; margin-bottom: 22px; padding: 30px 34px; border-radius: var(--radius); color: white; background: var(--navy); }
.check-content .verdict-heading { display: grid; gap: 13px; }
.check-content .verdict-label { margin: 0; color: #b8d985; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.check-content .verdict h3 { margin: 0; color: white; font-size: 1.45rem; line-height: 1.25; text-wrap: balance; }
.check-content .verdict-copy { display: grid; gap: 13px; }
.check-content .verdict-copy p { margin: 0; color: #c9d5df; font-size: .92rem; line-height: 1.68; text-wrap: pretty; }
.check-content .metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 70px; }
.check-content .metric-card { min-height: 202px; position: relative; overflow: hidden; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.check-content .metric-card::after { content: ""; position: absolute; z-index: 0; width: 105px; height: 105px; right: -42px; top: -42px; border: 18px solid var(--green-pale); border-radius: 50%; pointer-events: none; }
.check-content .metric-card > * { position: relative; z-index: 1; }
.check-content .metric-card p { margin: 0; color: var(--copy); font-size: .82rem; font-weight: 800; }
.check-content .metric-card p.metric-title { display: flex; min-height: 27px; align-items: center; justify-content: space-between; gap: 10px; }
.check-content .metric-card .metric-assessment { display: inline-flex; min-height: 25px; align-items: center; padding: 4px 9px; border: 1px solid transparent; border-radius: 999px; font-size: .62rem; font-weight: 800; line-height: 1; white-space: nowrap; }
.check-content .metric-card .metric-assessment.is-strong { border-color: #d1e5ae; color: var(--green-dark); background: var(--green-pale); }
.check-content .metric-card .metric-assessment.is-okay { border-color: #d9e4ec; color: var(--navy); background: #eef3f7; }
.check-content .metric-card .metric-assessment.is-growth { border-color: #efd4a2; color: #9a6410; background: #fff7e8; }
.check-content .metric-card strong { display: block; margin: 22px 0 6px; color: var(--navy); font-family: Outfit, sans-serif; font-size: clamp(2.5rem, 5vw, 4.1rem); font-variant-numeric: tabular-nums; letter-spacing: -.05em; }
.check-content .metric-card strong.is-positive { color: var(--green-dark); }
.check-content .metric-card strong.is-missing { color: var(--amber); }
.check-content .metric-card strong.is-neutral { color: var(--navy); }
.check-content .metric-card span { display: block; color: var(--muted); font-size: .75rem; line-height: 1.45; text-wrap: pretty; }

.check-content .result-section { padding: 62px 0; border-top: 1px solid var(--line); }
.check-content .section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 50px; align-items: end; margin-bottom: 30px; }
.check-content .section-heading h3, .check-content .result-cta h3 { margin-bottom: 0; font-size: clamp(1.55rem, 3vw, 2.35rem); letter-spacing: -.025em; }
.check-content .section-heading > p { margin: 0; color: var(--copy); font-size: .84rem; line-height: 1.6; }
.check-content .topic-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.check-content .topic-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.check-content .topic-table { table-layout: fixed; }
.check-content .topic-table th:first-child { width: 22%; }
.check-content .topic-table th:not(:first-child) { width: 26%; }
.check-content .topic-table th { padding: 16px 20px; color: var(--muted); background: var(--soft); font-size: .69rem; letter-spacing: .06em; text-align: left; text-transform: uppercase; }
.check-content .table-heading { display: inline-flex; align-items: center; gap: 8px; }
.check-content .info-button { min-width: 44px; min-height: 44px; padding: 0 9px; border: 0; border-radius: 9px; color: var(--navy); background: #e8eff3; font-size: .62rem; font-weight: 800; letter-spacing: 0; text-transform: none; cursor: pointer; transition: color .16s ease, background .16s ease, transform .16s ease; }
.check-content .info-button:hover, .check-content .info-button[aria-expanded="true"] { color: white; background: var(--navy); }
.check-content .info-button:active { transform: scale(.97); }
.check-content .info-button:focus-visible { outline: 3px solid rgba(128, 179, 44, .36); outline-offset: 2px; }
.check-content .info-button-cell { min-height: 34px; margin-top: 9px; padding-inline: 11px; background: var(--soft); font-size: .66rem; }
.check-content .method-tooltip { position: fixed; z-index: 1000; width: min(330px, calc(100vw - 24px)); padding: 14px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; color: white; background: var(--navy-deep); box-shadow: 0 16px 42px rgba(7, 29, 49, .24); font-size: .76rem; line-height: 1.55; }
.check-content .topic-table td { padding: 21px 20px; border-top: 1px solid var(--line); color: var(--copy); font-size: .83rem; vertical-align: top; }
.check-content .topic-table td:first-child { color: var(--navy); font-weight: 800; }
.check-content .status-value { display: block; color: var(--navy); font-weight: 800; }
.check-content .status-detail { display: block; margin-top: 3px; color: var(--muted); font-size: .7rem; }
.check-content .status-detail-competitor { max-width: 100%; overflow: hidden; color: var(--navy); font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.check-content .status-value.is-positive { color: var(--green-dark); }
.check-content .status-value.is-missing { color: var(--amber); }
.check-content .status-value.is-neutral { color: var(--navy); }
.check-content .topic-table tbody .status-cell-content { display: flex; min-height: 112px; min-width: 0; flex-direction: column; align-items: flex-start; }
.check-content .topic-table tbody .status-cell-content .info-button-cell { margin-top: auto; }
.check-content .competitor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.check-content .competitor-card { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.check-content .competitor-rank { display: inline-flex; min-width: 36px; height: 36px; align-items: center; justify-content: center; margin-bottom: 20px; border-radius: 50%; color: white; background: var(--navy); font-family: Outfit, sans-serif; font-weight: 800; }
.check-content .competitor-card.is-top-ai .competitor-rank { background: var(--green-dark); }
.check-content .competitor-card.is-subject { border-color: var(--green); box-shadow: inset 0 0 0 1px var(--green); }
.check-content .competitor-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 7px; }
.check-content .competitor-card h4 { min-width: 0; margin: 0; color: var(--navy); font-size: 1.03rem; }
.check-content .large-provider-badge { display: inline-flex; flex: 0 0 auto; align-items: center; padding: 5px 8px; border: 1px solid #d9e4ec; border-radius: 999px; color: var(--navy); background: #eef3f7; font-size: .59rem; font-weight: 800; line-height: 1; white-space: nowrap; }
.check-content .competitor-card > p { min-height: 38px; margin: 0 0 20px; color: var(--muted); font-size: .76rem; line-height: 1.55; }
.check-content .competitor-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.check-content .competitor-stats div { padding: 12px; border-radius: 10px; background: var(--soft); }
.check-content .competitor-stats strong, .check-content .competitor-stats span { display: block; }
.check-content .competitor-stats strong { color: var(--navy); font-size: .94rem; }
.check-content .competitor-stats span { margin-top: 3px; color: var(--muted); font-size: .64rem; line-height: 1.35; }
.check-content .review-activity { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.check-content .review-activity.is-grouped { display: grid; gap: 14px; overflow: visible; border: 0; border-radius: 0; }
.check-content .review-group { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.check-content .review-group-subject { border-color: #cfe2ae; box-shadow: inset 0 0 0 1px rgba(128, 179, 44, .12); }
.check-content .review-row { display: grid; grid-template-columns: minmax(250px, 1.4fr) minmax(110px, .55fr) minmax(120px, .65fr) minmax(190px, 1fr); align-items: center; gap: 18px; padding: 20px 22px; background: white; }
.check-content .review-row + .review-row { border-top: 1px solid var(--line); }
.check-content .review-row.is-subject { background: #fbfef7; }
.check-content .review-identity { min-width: 0; }
.check-content .review-identity h4 { margin: 0; color: var(--navy); font-size: .88rem; line-height: 1.35; text-wrap: balance; }
.check-content .subject-label { display: inline-flex; margin-top: 7px; padding: 4px 8px; border-radius: 999px; color: var(--green-dark); background: var(--green-pale); font-size: .63rem; font-weight: 800; }
.check-content .review-stat strong, .check-content .review-stat span { display: block; }
.check-content .review-stat strong { color: var(--navy); font-size: 1rem; font-variant-numeric: tabular-nums; }
.check-content .review-stat span, .check-content .review-rate > span:first-child { margin-top: 3px; color: var(--muted); font-size: .66rem; }
.check-content .review-rate { display: grid; gap: 8px; }
.check-content .review-track { height: 7px; overflow: hidden; border-radius: 999px; background: #e6edf1; }
.check-content .review-track span { display: block; height: 100%; border-radius: inherit; background: var(--green); }
.check-content .section-note { margin: 14px 0 0; color: var(--muted); font-size: .7rem; line-height: 1.55; }
.check-content .rationale-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.check-content .rationale-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.check-content .rationale-topic { margin: 0; padding: 15px 20px; color: var(--green-dark); background: #f8fcee; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.check-content .rationale-item { padding: 18px 20px; }
.check-content .rationale-item + .rationale-item { border-top: 1px solid var(--line); }
.check-content .rationale-item h4 { margin: 0 0 9px; color: var(--navy); font-size: .88rem; line-height: 1.35; text-wrap: balance; }
.check-content .rationale-item ul { display: grid; gap: 6px; margin: 0; padding-left: 18px; color: var(--copy); font-size: .75rem; line-height: 1.5; }
.check-content .rationale-item li::marker { color: var(--green); }
.check-content .rationale-item li { text-wrap: pretty; }
.check-content .reason-redacted { max-width: 92%; overflow: hidden; color: #9aa7b0; filter: blur(5px); opacity: .68; pointer-events: none; user-select: none; white-space: nowrap; }
.check-content .rationale-teaser { margin: 11px 0 0; color: var(--green-dark); font-size: .65rem; font-weight: 800; line-height: 1.4; }
.check-content .rationale-empty { margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.5; }
.check-content .source-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.check-content .source-item { display: flex; min-width: 0; align-items: center; gap: 12px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: 0 7px 20px rgba(10, 37, 64, .045); }
.check-content .source-mark { display: inline-flex; width: 38px; height: 38px; flex: 0 0 38px; align-items: center; justify-content: center; border: 1px solid #dceac5; border-radius: 11px; color: var(--green-dark); background: var(--green-pale); font-family: Outfit, Inter, sans-serif; font-size: .83rem; font-weight: 800; }
.check-content .source-copy { display: block; min-width: 0; }
.check-content .source-copy strong, .check-content .source-copy > span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.check-content .source-copy strong { color: var(--navy); font-size: .8rem; }
.check-content .source-copy > span { margin-top: 3px; color: var(--muted); font-size: .65rem; }
.check-content .empty-state { padding: 24px; border-radius: var(--radius-sm); color: var(--copy); background: var(--soft); font-size: .84rem; line-height: 1.6; }
.check-content .result-cta { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; margin-top: 70px; padding: clamp(34px, 5vw, 54px); border-radius: var(--radius-lg); color: white; background: linear-gradient(135deg, var(--navy) 0%, #123c5e 100%); }
.check-content .result-cta h3 { color: white; }
.check-content .result-cta p:not(.section-kicker) { max-width: 680px; margin: 14px 0 0; color: #c9d6df; line-height: 1.65; }
.check-content .result-cta .section-kicker { color: #b7d987; }

@media (max-width: 980px) {
  .check-content .hero { padding-top: 70px; }
  .check-content .hero-grid { grid-template-columns: 1fr; }
  .check-content .hero-copy { max-width: 760px; }
  .check-content .method-grid article { padding: 28px 22px; }
  .check-content .verdict { grid-template-columns: 1fr 2fr; }
  .check-content .result-cta { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .check-content { --shell: min(100% - 28px, 1180px); }
  .check-content .hero { padding: 56px 0 60px; }
  .check-content h1 { font-size: clamp(2.45rem, 13vw, 3.7rem); }
  .check-content .hero-lead { font-size: 1rem; }
  .check-content .signal-row { gap: 10px 16px; }
  .check-content .check-card { padding: 24px 18px; border-radius: 22px; }
  .check-content .search-row { grid-template-columns: 1fr; }
  .check-content .service-options { grid-template-columns: 1fr; }
  .check-content .service-selection-meta { align-items: flex-start; flex-direction: column; gap: 2px; }
  .check-content #service-selection-status { text-align: left; }
  .check-content .method-grid { grid-template-columns: 1fr; }
  .check-content .method-grid article { min-height: auto; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .check-content .progress-card { grid-template-columns: 1fr; text-align: center; }
  .check-content .progress-orbit { margin: 0 auto; }
  .check-content .analysis, .check-content .result { padding-top: 60px; padding-bottom: 76px; }
  .check-content .result-head { align-items: flex-start; flex-direction: column; }
  .check-content .result-actions { width: 100%; justify-content: space-between; }
  .check-content .verdict, .check-content .metric-grid, .check-content .section-heading, .check-content .competitor-grid, .check-content .source-list, .check-content .rationale-grid { grid-template-columns: 1fr; }
  .check-content .verdict { gap: 15px; padding: 26px 22px; }
  .check-content .metric-grid { gap: 12px; }
  .check-content .metric-card { min-height: 160px; }
  .check-content .section-heading { gap: 12px; }
  .check-content .competitor-stats { grid-template-columns: 1fr; }
  .check-content .review-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .check-content .review-identity, .check-content .review-rate { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .check-content *, .check-content *::before, .check-content *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
