:root {
  --check-ink: #10243a;
  --check-muted: #617287;
  --check-line: #dbe5eb;
  --check-card: #ffffff;
  --check-soft: #f3f7f9;
  --check-blue: #1677ee;
  --check-blue-dark: #0c55b0;
  --check-green: #19c56b;
  --check-green-dark: #087b49;
  --check-amber: #e28b24;
  --check-red: #de4a56;
  --check-shadow: 0 20px 60px rgba(18, 46, 69, 0.1);
}

body.check-page {
  min-width: 320px;
  background: #eef3f5;
  color: var(--check-ink);
  overflow-x: hidden;
}

.check-page .check-site-header {
  background: rgba(5, 19, 28, 0.9);
  border-color: rgba(255, 255, 255, 0.1);
}

.check-nav-links a[aria-current="page"] {
  color: #fff;
}

.check-nav-links a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 4px;
  border-radius: 99px;
  background: #42e9a8;
}

.check-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-account-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.check-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 106px 0 80px;
}

.check-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: center;
  min-height: 520px;
  padding: clamp(38px, 6vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 20%, rgba(40, 214, 144, 0.22), transparent 30%),
    radial-gradient(circle at 8% 90%, rgba(30, 126, 244, 0.2), transparent 34%),
    linear-gradient(138deg, #07141f 0%, #0a2028 62%, #0c2b27 100%);
  box-shadow: 0 28px 90px rgba(8, 31, 42, 0.28);
  color: #f7fbff;
}

.check-hero::before,
.check-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(69, 235, 170, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.check-hero::before { width: 430px; height: 430px; right: -190px; top: -220px; }
.check-hero::after { width: 260px; height: 260px; left: -150px; bottom: -150px; }

.check-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, #000 48%, #000);
}

.check-hero-copy,
.check-ip-preview { position: relative; z-index: 2; }

.check-eyebrow,
.check-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 13px;
  color: #43e6aa;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.check-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(67, 230, 170, 0.12);
}

.check-hero h1 {
  max-width: 720px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(43px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.check-hero h1 span { color: #47e7ae; }

.check-lead {
  max-width: 680px;
  margin: 0;
  color: rgba(239, 248, 252, 0.78);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.58;
}

.check-hero-actions,
.check-result-actions,
.check-compare-actions,
.check-return-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.check-hero-actions { margin-top: 30px; }

.check-primary-button,
.check-secondary-button,
.check-text-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 12px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.check-primary-button {
  border: 1px solid #26dd8e;
  background: linear-gradient(135deg, #30e395, #19c875);
  box-shadow: 0 12px 28px rgba(31, 212, 127, 0.23);
  color: #052317;
}

.check-primary-button:hover,
.check-secondary-button:hover { transform: translateY(-2px); }
.check-primary-button:focus-visible,
.check-secondary-button:focus-visible,
.check-text-button:focus-visible,
.check-service a:focus-visible { outline: 3px solid rgba(22, 119, 238, 0.32); outline-offset: 3px; }
.check-primary-button:disabled { cursor: wait; opacity: 0.7; transform: none; }
.check-primary-button svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.check-secondary-button {
  border: 1px solid #b9cad5;
  background: #fff;
  color: var(--check-ink);
}

.check-text-button {
  min-height: 44px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: var(--check-blue-dark);
  font-size: 13px;
}

.check-data-note {
  display: flex;
  flex-direction: column;
  color: rgba(235, 246, 251, 0.62);
  font-size: 12px;
  line-height: 1.25;
}
.check-data-note strong { color: #fff; font-size: 14px; }

.check-privacy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: rgba(235, 246, 251, 0.64);
  font-size: 13px;
  font-weight: 700;
}
.check-privacy-note span { display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: rgba(65, 229, 168, 0.14); color: #49e7ad; }

.check-ip-preview {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(91, 239, 182, 0.22);
  border-radius: 24px;
  background: rgba(3, 17, 24, 0.64);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 22px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.check-ip-preview-head { display: flex; align-items: center; gap: 9px; margin-bottom: 36px; color: #59eab4; font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: 0.07em; }
.check-live-dot { width: 9px; height: 9px; border-radius: 50%; background: #36df94; box-shadow: 0 0 0 6px rgba(54, 223, 148, 0.12); animation: checkPulse 1.8s ease-in-out infinite; }
.check-ip-preview small { display: block; margin-bottom: 8px; color: rgba(235, 246, 251, 0.55); font-weight: 750; }
.check-ip-preview > strong { display: block; overflow-wrap: anywhere; color: #fff; font-size: clamp(25px, 3vw, 36px); line-height: 1.08; letter-spacing: -0.04em; }
.check-ip-preview-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.check-ip-preview-meta span { padding: 6px 9px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 8px; background: rgba(255, 255, 255, 0.05); color: rgba(244, 250, 252, 0.76); font-size: 12px; font-weight: 800; }
.check-ip-preview p { margin: 22px 0 0; color: rgba(235, 246, 251, 0.55); font-size: 12px; line-height: 1.5; }

.check-explainer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.check-explainer article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  padding: 22px;
  border: 1px solid var(--check-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
}
.check-explainer-number { color: var(--check-blue); font-size: 12px; font-weight: 950; letter-spacing: 0.08em; }
.check-explainer strong { display: block; margin-bottom: 6px; font-size: 16px; }
.check-explainer p { margin: 0; color: var(--check-muted); font-size: 13px; line-height: 1.5; }

.check-progress-panel,
.check-panel,
.check-results,
.check-return-card {
  border: 1px solid var(--check-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--check-shadow);
}

.check-progress-panel { margin-top: 20px; padding: clamp(24px, 4vw, 36px); }
.check-progress-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.check-progress-head h2 { margin: 0; color: var(--check-ink); font-size: clamp(23px, 3vw, 31px); letter-spacing: -0.035em; }
.check-progress-head > strong { color: var(--check-blue); font-size: 28px; }
.check-section-kicker { margin-bottom: 7px; color: #0a8c68; font-size: 11px; }
.check-progress-track { height: 10px; margin: 24px 0 16px; overflow: hidden; border-radius: 99px; background: #e5edf1; }
.check-progress-track span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--check-blue), #28d991); transition: width 0.3s ease; }
.check-progress-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.check-progress-steps span { padding: 9px; border-radius: 9px; background: var(--check-soft); color: #768697; text-align: center; font-size: 12px; font-weight: 800; }
.check-progress-steps span.is-active { background: #e8f2ff; color: var(--check-blue-dark); }
.check-progress-steps span.is-done { background: #e6f8ef; color: var(--check-green-dark); }
.check-progress-panel > p { margin: 17px 0 0; color: var(--check-muted); font-size: 13px; }

.check-results { margin-top: 20px; padding: clamp(18px, 3vw, 28px); }
.check-verdict {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid #bde9d2;
  border-radius: 20px;
  background: linear-gradient(135deg, #edfdf5, #f7fffb);
}
.check-verdict[data-tone="warning"] { border-color: #f0d7ae; background: linear-gradient(135deg, #fff8e9, #fffdf8); }
.check-verdict[data-tone="bad"] { border-color: #efc0c5; background: linear-gradient(135deg, #fff1f2, #fffafa); }
.check-verdict[data-tone="neutral"] { border-color: #bfd8f1; background: linear-gradient(135deg, #eef7ff, #fbfdff); }
.check-score { display: grid; width: 86px; height: 86px; place-items: center; align-content: center; border: 8px solid #bcebd4; border-radius: 50%; background: #fff; color: var(--check-green-dark); }
.check-verdict[data-tone="warning"] .check-score { border-color: #f3d69d; color: #a15c09; }
.check-verdict[data-tone="bad"] .check-score { border-color: #f0bfc5; color: #b62f3d; }
.check-verdict[data-tone="neutral"] .check-score { border-color: #b9d9f5; color: var(--check-blue); }
.check-score strong { font-size: 29px; line-height: 1; }
.check-score span { margin-top: 3px; color: var(--check-muted); font-size: 10px; font-weight: 800; }
.check-verdict-copy h2 { margin: 0 0 5px; color: var(--check-ink); font-size: clamp(23px, 3vw, 33px); letter-spacing: -0.04em; }
.check-verdict-copy p { margin: 0; color: var(--check-muted); }
.check-verdict-time { align-self: start; color: var(--check-muted); font-size: 12px; font-weight: 750; white-space: nowrap; }

.check-metric-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
.check-metric { position: relative; min-width: 0; min-height: 175px; padding: 22px; overflow: hidden; border: 1px solid var(--check-line); border-radius: 18px; background: #fff; }
.check-metric-icon { display: grid; width: 34px; height: 34px; margin-bottom: 22px; place-items: center; border-radius: 10px; background: #eaf3ff; color: var(--check-blue); font-size: 13px; font-weight: 950; }
.check-metric small { display: block; margin-bottom: 6px; color: var(--check-muted); font-size: 12px; font-weight: 800; }
.check-metric > strong { display: block; overflow-wrap: anywhere; color: var(--check-ink); font-size: clamp(24px, 3vw, 32px); line-height: 1.08; letter-spacing: -0.04em; }
.check-metric > strong em { color: #8391a0; font-size: 13px; font-style: normal; letter-spacing: 0; }
.check-metric p { margin: 9px 0 0; color: var(--check-muted); font-size: 12px; line-height: 1.45; }

.check-panel { margin-top: 16px; padding: clamp(22px, 4vw, 32px); box-shadow: none; }
.check-panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.check-panel h2,
.check-return-card h2 { margin: 0; color: var(--check-ink); font-size: clamp(22px, 3vw, 30px); letter-spacing: -0.035em; }
.check-panel-badge { padding: 7px 10px; border-radius: 99px; background: #eaf3ff; color: var(--check-blue-dark); font-size: 11px; font-weight: 850; white-space: nowrap; }

.check-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px; }
.check-service { position: relative; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 12px; align-items: center; min-height: 112px; padding: 17px; border: 1px solid var(--check-line); border-radius: 16px; background: #fbfdfe; }
.check-service-logo { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 12px; color: #fff; font-weight: 950; }
.check-service-logo-telegram { background: #289ed9; }
.check-service-logo-youtube { background: #f21e28; }
.check-service-logo-whatsapp { background: #20bd68; }
.check-service strong { display: block; font-size: 15px; }
.check-service p { margin: 3px 0 0; color: var(--check-muted); font-size: 12px; line-height: 1.35; }
.check-service-state { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; background: #edf1f4; color: #7b8996; font-size: 13px; font-weight: 900; }
.check-service[data-state="ok"] { border-color: #b9e7cf; background: #f4fcf8; }
.check-service[data-state="ok"] .check-service-state { background: #dff7eb; color: var(--check-green-dark); }
.check-service[data-state="fail"] { border-color: #efd5b2; background: #fffaf2; }
.check-service[data-state="fail"] .check-service-state { background: #fff0d6; color: #a86210; }
.check-service a { grid-column: 2 / -1; color: var(--check-blue-dark); font-size: 11px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.check-service[data-state="ok"] a { display: none; }
.check-honesty-note { margin: 18px 0 0; padding: 13px 15px; border-radius: 12px; background: var(--check-soft); color: var(--check-muted); font-size: 12px; line-height: 1.55; }

.check-advice-panel { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 18px; background: #f9fbfc; }
.check-advice-mark { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 12px; background: #e8f2ff; color: var(--check-blue); font-weight: 950; }
.check-advice-panel ul { display: grid; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
.check-advice-panel li { position: relative; padding-left: 22px; color: #42566b; line-height: 1.55; }
.check-advice-panel li::before { content: "✓"; position: absolute; left: 0; color: #0b9368; font-weight: 950; }

.check-compare-panel { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr); gap: 22px; align-items: center; }
.check-compare-copy p { margin: 10px 0 0; color: var(--check-muted); line-height: 1.55; }
.check-compare-copy .check-compare-disclaimer { font-size: 11px; }
.check-compare-status { padding: 20px; border: 1px solid #cbd9e2; border-radius: 16px; background: var(--check-soft); }
.check-compare-status small,
.check-compare-status strong,
.check-compare-status span { display: block; }
.check-compare-status small { color: var(--check-blue-dark); font-size: 11px; font-weight: 850; text-transform: uppercase; }
.check-compare-status strong { margin-top: 7px; overflow-wrap: anywhere; font-size: 17px; }
.check-compare-status span { margin-top: 5px; color: var(--check-muted); font-size: 12px; }
.check-compare-status[data-state="changed"] { border-color: #aee2c5; background: #edfbf4; }
.check-compare-status[data-state="same"] { border-color: #efd0a4; background: #fff8eb; }
.check-compare-actions { grid-column: 1 / -1; }

.check-history-list { display: grid; gap: 8px; }
.check-history-empty { margin: 0; padding: 20px; border: 1px dashed #cbd8e0; border-radius: 14px; color: var(--check-muted); text-align: center; }
.check-history-item { display: grid; grid-template-columns: minmax(145px, 1fr) repeat(2, minmax(90px, auto)) auto; gap: 12px; align-items: center; padding: 13px 15px; border: 1px solid var(--check-line); border-radius: 13px; background: #fbfdfe; }
.check-history-item strong { display: block; font-size: 13px; }
.check-history-item small { display: block; margin-top: 2px; color: var(--check-muted); font-size: 11px; }
.check-history-value { color: #354a60; font-size: 12px; font-weight: 800; text-align: right; }
.check-history-score { display: inline-flex; justify-self: end; min-width: 42px; padding: 5px 8px; border-radius: 99px; background: #e6f8ef; color: var(--check-green-dark); font-size: 12px; font-weight: 900; }

.check-result-actions { margin-top: 20px; }
.check-result-actions .check-primary-button { min-width: 190px; }
.check-action-status { min-height: 20px; margin: 10px 0 0; color: var(--check-green-dark); font-size: 12px; font-weight: 800; }

.check-return-card { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 20px; padding: clamp(25px, 5vw, 42px); background: linear-gradient(120deg, #fff, #f4fbf8); }
.check-return-card p { max-width: 700px; margin: 10px 0 0; color: var(--check-muted); }
.check-return-actions { flex: 0 0 auto; }
.check-return-actions a { display: inline-flex; min-height: 46px; align-items: center; padding: 0 14px; border: 1px solid #b9cad5; border-radius: 11px; color: var(--check-blue-dark); font-size: 13px; font-weight: 850; }

.check-footer { color: #e8f2f4; }

@keyframes checkPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.64; transform: scale(0.82); }
}

@media (max-width: 980px) {
  .check-main { width: min(100% - 28px, 880px); }
  .check-hero { grid-template-columns: 1fr; min-height: auto; }
  .check-ip-preview { max-width: 560px; }
  .check-explainer { grid-template-columns: 1fr; }
  .check-metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .check-service-grid { grid-template-columns: 1fr; }
  .check-service { min-height: 94px; }
  .check-compare-panel { grid-template-columns: 1fr; }
  .check-compare-actions { grid-column: auto; }
  .check-return-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 760px) {
  .check-main { width: min(100% - 20px, 680px); padding-top: 82px; padding-bottom: 50px; }
  .check-site-header .brand > span:last-child { display: none; }
  .check-account-link { display: none; }
  .check-hero { gap: 30px; padding: 30px 22px; border-radius: 20px; }
  .check-hero h1 { font-size: clamp(39px, 12vw, 56px); }
  .check-lead { font-size: 16px; }
  .check-ip-preview { padding: 22px; border-radius: 18px; }
  .check-ip-preview-head { margin-bottom: 26px; }
  .check-progress-steps { grid-template-columns: repeat(2, 1fr); }
  .check-verdict { grid-template-columns: auto minmax(0, 1fr); gap: 15px; }
  .check-verdict-time { grid-column: 2; }
  .check-score { width: 72px; height: 72px; border-width: 7px; }
  .check-score strong { font-size: 24px; }
  .check-history-item { grid-template-columns: minmax(0, 1fr) auto; }
  .check-history-value:nth-of-type(2) { display: none; }
}

@media (max-width: 520px) {
  .check-page .check-site-header { padding-inline: 12px; }
  .check-page .header-cta { min-height: 40px; padding: 0 12px; font-size: 13px; }
  .check-hero-actions { align-items: stretch; flex-direction: column; }
  .check-primary-button,
  .check-secondary-button { width: 100%; min-height: 54px; }
  .check-data-note { align-items: center; flex-direction: row; justify-content: center; gap: 5px; }
  .check-explainer article { padding: 18px; }
  .check-progress-panel,
  .check-results { border-radius: 18px; }
  .check-progress-head > strong { font-size: 22px; }
  .check-progress-steps span { font-size: 11px; }
  .check-metric-grid { grid-template-columns: 1fr; }
  .check-metric { min-height: 150px; }
  .check-panel-head { flex-direction: column; }
  .check-service { grid-template-columns: auto minmax(0, 1fr) auto; padding: 14px; }
  .check-advice-panel { grid-template-columns: 1fr; }
  .check-compare-actions { align-items: stretch; flex-direction: column; }
  .check-result-actions { align-items: stretch; flex-direction: column; }
  .check-return-actions { align-items: stretch; flex-direction: column; width: 100%; }
  .check-return-actions a { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .check-live-dot { animation: none; }
  .check-progress-track span,
  .check-primary-button,
  .check-secondary-button { transition: none; }
}
