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

.check-page [hidden] {
  display: none !important;
}

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

.check-page .check-site-header {
  background: rgba(5, 19, 28, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.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(320px, 0.65fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  min-height: 610px;
  padding: clamp(36px, 6vw, 70px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 83% 16%, 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;
  top: -220px;
  right: -190px;
}

.check-hero::after {
  width: 260px;
  height: 260px;
  bottom: -150px;
  left: -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-route-card {
  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: 760px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

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

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

.check-site-form {
  margin-top: 30px;
}

.check-site-form label {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.check-site-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.check-site-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 13px;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font: inherit;
  font-size: 16px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.check-site-form input::placeholder {
  color: rgba(238, 247, 250, 0.48);
}

.check-site-form input:focus {
  border-color: #45e7aa;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 4px rgba(69, 231, 170, 0.12);
}

.check-site-form > p {
  margin: 9px 0 0;
  color: rgba(235, 246, 251, 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.check-site-form > p[data-state="error"] {
  color: #ffb9c1;
}

.check-primary-button,
.check-secondary-button,
.check-secondary-on-dark,
.check-text-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border-radius: 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  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-secondary-button {
  border: 1px solid #b9cad5;
  background: #fff;
  color: var(--check-ink);
}

.check-secondary-on-dark {
  min-height: 44px;
  padding-inline: 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

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

.check-primary-button:hover,
.check-secondary-button:hover,
.check-secondary-on-dark:hover {
  transform: translateY(-2px);
}

.check-primary-button:disabled,
.check-secondary-button:disabled,
.check-secondary-on-dark:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.check-primary-button:focus-visible,
.check-secondary-button:focus-visible,
.check-secondary-on-dark:focus-visible,
.check-text-button:focus-visible,
.check-service a:focus-visible,
.check-site-form input:focus-visible,
.check-faq summary:focus-visible {
  outline: 3px solid rgba(22, 119, 238, 0.32);
  outline-offset: 3px;
}

.check-popular-prompt {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  color: rgba(235, 246, 251, 0.68);
  font-size: 12px;
  font-weight: 750;
}

.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-route-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(91, 239, 182, 0.22);
  border-radius: 24px;
  background: rgba(3, 17, 24, 0.68);
  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-route-card[data-state="connected"] {
  border-color: rgba(67, 230, 170, 0.55);
  background: rgba(5, 43, 33, 0.72);
}

.check-route-card[data-state="direct"] {
  border-color: rgba(244, 180, 89, 0.45);
}

.check-route-card[data-state="error"] {
  border-color: rgba(244, 118, 133, 0.46);
}

.check-route-card-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 34px;
  color: #59eab4;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.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-route-card > small {
  display: block;
  margin-bottom: 7px;
  color: rgba(235, 246, 251, 0.55);
  font-weight: 750;
}

.check-route-card > strong {
  display: block;
  color: #fff;
  font-size: clamp(25px, 3vw, 35px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.check-route-card > p {
  margin: 13px 0 0;
  color: rgba(235, 246, 251, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.check-route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.check-route-tags 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-route-card details {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.check-route-card summary {
  color: rgba(242, 248, 251, 0.75);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.check-route-card details p {
  margin: 10px 0 0;
  overflow-wrap: anywhere;
  color: rgba(235, 246, 251, 0.55);
  font-size: 11px;
  line-height: 1.5;
}

.check-section-kicker {
  margin-bottom: 7px;
  color: #0a8c68;
  font-size: 11px;
}

.check-custom-result,
.check-services-section,
.check-how,
.check-faq,
.check-return-card {
  margin-top: 20px;
  border: 1px solid var(--check-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--check-shadow);
}

.check-custom-result {
  padding: clamp(24px, 4vw, 38px);
  scroll-margin-top: 90px;
}

.check-custom-result[data-state="ok"] {
  border-color: #aee2c5;
  background: linear-gradient(135deg, #edfbf4, #fff);
}

.check-custom-result[data-state="warning"] {
  border-color: #efd0a4;
  background: linear-gradient(135deg, #fff8eb, #fff);
}

.check-custom-result[data-state="fail"] {
  border-color: #efc0c5;
  background: linear-gradient(135deg, #fff1f2, #fff);
}

.check-custom-result:focus {
  outline: none;
}

.check-custom-result-head,
.check-section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.check-custom-result h2,
.check-section-heading h2,
.check-how h2,
.check-return-card h2 {
  margin: 0;
  color: var(--check-ink);
  font-size: clamp(26px, 4vw, 39px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.check-result-pill {
  flex: 0 0 auto;
  padding: 8px 11px;
  border-radius: 99px;
  background: #edf1f4;
  color: #637484;
  font-size: 11px;
  font-weight: 900;
}

.check-result-pill[data-state="ok"] {
  background: #dff7eb;
  color: var(--check-green-dark);
}

.check-result-pill[data-state="warning"] {
  background: #fff0d6;
  color: #9b5b0f;
}

.check-result-pill[data-state="fail"] {
  background: #ffe4e7;
  color: #ac3140;
}

.check-custom-verdict {
  max-width: 760px;
  margin: 18px 0 0;
  color: #42566b;
  font-size: 17px;
  line-height: 1.55;
}

.check-custom-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.check-custom-meta span {
  padding: 7px 10px;
  border: 1px solid #d3dfe6;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--check-muted);
  font-size: 12px;
  font-weight: 800;
}

.check-result-actions,
.check-return-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  margin-top: 20px;
}

.check-services-section,
.check-how,
.check-faq {
  padding: clamp(25px, 5vw, 46px);
}

.check-section-heading {
  align-items: center;
}

.check-section-lead {
  max-width: 820px;
  margin: 12px 0 0;
  color: var(--check-muted);
  font-size: 16px;
  line-height: 1.58;
}

.check-services-button {
  flex: 0 0 auto;
}

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

.check-service {
  min-width: 0;
  padding: 21px;
  border: 1px solid var(--check-line);
  border-radius: 18px;
  background: #fbfdfe;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.check-service[data-state="checking"] {
  border-color: #bcd8f3;
  background: #f5faff;
}

.check-service[data-state="ok"] {
  border-color: #b9e7cf;
  background: #f4fcf8;
}

.check-service[data-state="warning"] {
  border-color: #efd5b2;
  background: #fffaf2;
}

.check-service[data-state="fail"] {
  border-color: #efc0c5;
  background: #fff7f8;
}

.check-service-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  align-items: center;
}

.check-service-logo {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.check-service-logo-youtube {
  background: #ed1c24;
}

.check-service-logo-telegram {
  background: #289ed9;
}

.check-service-logo-tiktok {
  background: #111820;
  box-shadow: inset 3px 0 #24e5df, inset -3px 0 #f03c5d;
}

.check-service h3 {
  margin: 0;
  color: var(--check-ink);
  font-size: 17px;
  line-height: 1.25;
}

.check-service dl {
  display: grid;
  gap: 8px;
  margin: 19px 0 0;
}

.check-service dl > div {
  display: grid;
  grid-template-columns: minmax(105px, 0.7fr) minmax(0, 1.3fr);
  gap: 12px;
  align-items: center;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(226, 235, 240, 0.55);
}

.check-service [data-service-direct-row][hidden] {
  display: none;
}

.check-service dt {
  color: #6b7b8b;
  font-size: 11px;
  font-weight: 800;
}

.check-service dd {
  margin: 0;
  color: #4f6071;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.35;
  text-align: right;
}

.check-service dd[data-state="ok"] {
  color: var(--check-green-dark);
}

.check-service dd[data-state="warning"] {
  color: #9b5b0f;
}

.check-service dd[data-state="fail"] {
  color: var(--check-red);
}

.check-service dd[data-state="unknown"],
.check-service dd[data-state="waiting"] {
  color: #71808e;
}

.check-service > a {
  display: inline-flex;
  margin-top: 15px;
  color: var(--check-blue-dark);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.check-services-summary,
.check-context-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 23px;
  border: 1px solid #c5dae7;
  border-radius: 17px;
  background: #f4f9fc;
  scroll-margin-top: 90px;
}

.check-services-summary h3,
.check-context-cta h3 {
  margin: 0;
  color: var(--check-ink);
  font-size: 22px;
  letter-spacing: -0.025em;
}

.check-services-summary p,
.check-context-cta p {
  margin: 7px 0 0;
  color: var(--check-muted);
  font-size: 13px;
  line-height: 1.5;
}

.check-services-summary .check-result-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

.check-context-cta {
  border-color: #aee2c5;
  background: linear-gradient(125deg, #ebfaf3, #f8fffb);
}

.check-context-cta .check-primary-button {
  flex: 0 0 auto;
}

.check-honesty-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--check-soft);
  color: var(--check-muted);
  font-size: 12px;
  line-height: 1.55;
}

.check-how {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.check-how ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.check-how li {
  position: relative;
  min-height: 76px;
  padding: 16px 16px 16px 62px;
  border: 1px solid var(--check-line);
  border-radius: 14px;
  background: #fbfdfe;
  counter-increment: steps;
}

.check-how li::before {
  content: counter(steps);
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  background: #e7f2ff;
  color: var(--check-blue-dark);
  font-size: 12px;
  font-weight: 950;
}

.check-how li strong,
.check-how li span {
  display: block;
}

.check-how li strong {
  font-size: 15px;
}

.check-how li span {
  margin-top: 4px;
  color: var(--check-muted);
  font-size: 12px;
  line-height: 1.45;
}

.check-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.check-faq details {
  padding: 0 18px;
  border: 1px solid var(--check-line);
  border-radius: 14px;
  background: #fbfdfe;
}

.check-faq summary {
  padding: 18px 0;
  color: var(--check-ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  cursor: pointer;
}

.check-faq details p {
  margin: -3px 0 18px;
  color: var(--check-muted);
  font-size: 13px;
  line-height: 1.58;
}

.check-return-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  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;
  margin-top: 0;
}

.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-return-actions a:first-child {
  border-color: #19c875;
  background: #e7faef;
  color: #087b49;
}

.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-route-card {
    max-width: 580px;
  }

  .check-how {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .check-main {
    width: min(100% - 20px, 680px);
    padding-top: 82px;
    padding-bottom: 50px;
  }

  .check-site-header .brand > span:last-child,
  .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-site-form-row {
    grid-template-columns: 1fr;
  }

  .check-popular-prompt {
    align-items: flex-start;
    flex-direction: column;
  }

  .check-route-card {
    padding: 22px;
    border-radius: 18px;
  }

  .check-route-card-head {
    margin-bottom: 26px;
  }

  .check-custom-result,
  .check-services-section,
  .check-how,
  .check-faq,
  .check-return-card {
    border-radius: 19px;
  }

  .check-section-heading,
  .check-services-summary,
  .check-context-cta,
  .check-return-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .check-services-button,
  .check-context-cta .check-primary-button {
    width: 100%;
  }

  .check-service-grid,
  .check-faq-list {
    grid-template-columns: 1fr;
  }

  .check-services-summary .check-result-actions {
    width: 100%;
  }

  .check-return-actions {
    width: 100%;
  }
}

@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-primary-button,
  .check-secondary-button,
  .check-secondary-on-dark {
    width: 100%;
    min-height: 54px;
  }

  .check-hero h1 {
    letter-spacing: -0.045em;
  }

  .check-site-form input {
    min-height: 54px;
  }

  .check-custom-result-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .check-service {
    padding: 17px;
  }

  .check-service dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .check-service dd {
    text-align: left;
  }

  .check-result-actions,
  .check-return-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .check-return-actions a {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .check-live-dot {
    animation: none;
  }

  .check-primary-button,
  .check-secondary-button,
  .check-secondary-on-dark,
  .check-route-card,
  .check-service {
    transition: none;
  }
}
