/* Mia Checker page */
.checker-page {
  --chk-accent: #00bfff;
  --chk-accent-2: #1e90ff;
  --chk-accent-dim: rgba(0, 191, 255, 0.12);
  --chk-border: #2a2d3a;
  --chk-card: #1a1c24;
  --chk-muted: #a3a3a3;
}

.checker-hero {
  max-width: 56rem;
  margin: 0 auto 2rem;
  padding: 2rem 1.25rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--chk-border);
  background:
    radial-gradient(
      ellipse 80% 60% at 50% -20%,
      rgba(0, 191, 255, 0.16),
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 40% at 100% 100%,
      rgba(30, 144, 255, 0.08),
      transparent 50%
    ),
    var(--chk-card);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.checker-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chk-accent);
  margin-bottom: 0.65rem;
}

.checker-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .checker-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
}

.checker-hero-copy h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 0.55rem;
  background: linear-gradient(90deg, var(--chk-accent), var(--chk-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.checker-hero-copy h2 {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 0.75rem;
}

.checker-hero-lead {
  color: var(--chk-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.checker-hero-visual img {
  width: 100%;
  max-width: 22rem;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 1rem;
  border: 1px solid rgba(0, 191, 255, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  object-fit: contain;
}

.checker-hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 1.25rem 0 1rem;
}

.checker-hero-stat,
.checker-jump a,
.checker-cta-tags span,
.checker-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.checker-hero-stat {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--chk-border);
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.76rem;
  color: var(--chk-muted);
}

.checker-hero-kicker {
  gap: 0.4rem;
}

.checker-hero-stat svg,
.checker-jump a svg,
.checker-cta-tags svg,
.checker-hero-kicker svg,
.checker-feature-icon svg {
  color: var(--chk-accent);
  stroke: currentColor;
}

.checker-hero-stat strong {
  color: var(--chk-accent);
}

.checker-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.checker-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.checker-icon-svg,
.checker-ui-icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  display: block;
}

.checker-feature-icon .checker-ui-icon {
  width: 1.125rem;
  height: 1.125rem;
}

.checker-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.checker-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #00bfff, #1e90ff);
  border: 1px solid rgba(0, 191, 255, 0.35);
}

.checker-btn--ghost {
  color: #e5e5e5;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--chk-border);
}

.checker-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 2.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.checker-jump a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--chk-border);
  background: rgba(255, 255, 255, 0.03);
  color: #d4d4d4;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}

.checker-jump a:hover {
  color: #f5f5f5;
  border-color: rgba(0, 191, 255, 0.35);
  background: var(--chk-accent-dim);
}

.checker-section-head {
  max-width: 40rem;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.checker-section-head h2 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 800;
  color: #f5f5f5;
  margin-bottom: 0.35rem;
}

.checker-section-head p {
  font-size: 0.88rem;
  color: var(--chk-muted);
  line-height: 1.55;
}

.checker-features {
  max-width: 52rem;
  margin: 0 auto 2.5rem;
}

.checker-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .checker-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.checker-feature-card {
  display: flex;
  gap: 0.85rem;
  padding: 1rem 1.05rem;
  border-radius: 0.9rem;
  border: 1px solid var(--chk-border);
  background: rgba(255, 255, 255, 0.02);
}

.checker-feature-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: var(--chk-accent-dim);
  color: var(--chk-accent);
  font-size: 0.95rem;
}

.checker-feature-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 0.2rem;
}

.checker-feature-card p {
  font-size: 0.82rem;
  color: var(--chk-muted);
  line-height: 1.5;
}

.checker-commands {
  max-width: 56rem;
  margin: 0 auto 2.5rem;
}

.checker-commands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .checker-commands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .checker-commands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.checker-cmd-card {
  padding: 1rem;
  border-radius: 0.9rem;
  border: 1px solid var(--chk-border);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s;
}

.checker-cmd-card:hover {
  border-color: rgba(0, 191, 255, 0.28);
}

.checker-cmd-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.checker-cmd-emoji {
  font-size: 1.35rem;
  line-height: 1;
}

.checker-cmd-card code {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--chk-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.checker-cmd-card p {
  font-size: 0.82rem;
  color: var(--chk-muted);
  line-height: 1.5;
}

.checker-gallery {
  max-width: 56rem;
  margin: 0 auto 2.5rem;
}

.checker-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

@media (min-width: 768px) {
  .checker-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.checker-shot-card {
  border-radius: 1rem;
  border: 1px solid var(--chk-border);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.checker-shot-card:hover {
  border-color: rgba(0, 191, 255, 0.3);
  transform: translateY(-2px);
}

.checker-shot-card img {
  width: 100%;
  height: auto;
  display: block;
}

.checker-shot-body {
  padding: 0.85rem 1rem 1rem;
}

.checker-shot-body h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 0.25rem;
}

.checker-shot-body p {
  font-size: 0.8rem;
  color: var(--chk-muted);
  line-height: 1.5;
}

.checker-sale {
  max-width: 44rem;
  margin: 0 auto 2.5rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(167, 139, 250, 0.25);
  background: rgba(167, 139, 250, 0.06);
}

.checker-sale img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid var(--chk-border);
  object-fit: contain;
}

.checker-sale h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #e9d5ff;
  margin-bottom: 0.35rem;
  text-align: center;
}

.checker-sale p {
  font-size: 0.86rem;
  color: var(--chk-muted);
  line-height: 1.55;
  text-align: center;
}

.checker-cta {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  text-align: center;
  border-radius: 1rem;
  border: 1px solid rgba(0, 191, 255, 0.25);
  background: var(--chk-accent-dim);
}

.checker-cta h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #e0f2fe;
  margin-bottom: 0.4rem;
}

.checker-cta > p {
  font-size: 0.88rem;
  color: var(--chk-muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.checker-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.checker-cta-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--chk-muted);
}

.checker-cta-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.checker-disclaimer {
  max-width: 40rem;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.76rem;
  color: #737373;
  font-style: italic;
}

.checker-disclaimer a {
  color: #737373;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checker-disclaimer a:hover {
  color: var(--chk-accent);
}

.checker-page [id] {
  scroll-margin-top: 5.5rem;
}
