:root {
  color-scheme: dark;
  --ink: #f4f7fb;
  --muted: #98a8bc;
  --night: #07111f;
  --night-2: #0b1728;
  --panel: rgba(13, 28, 47, 0.9);
  --line: rgba(171, 193, 218, 0.16);
  --lime: #c9ff55;
  --cyan: #51d9ff;
  --amber: #ffbf69;
  --red: #ff6b7b;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 12%, rgba(81, 217, 255, 0.13), transparent 30rem),
    radial-gradient(circle at 15% 38%, rgba(201, 255, 85, 0.08), transparent 29rem),
    var(--night);
  color: var(--ink);
  line-height: 1.6;
}

a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-200%);
  padding: 0.7rem 1rem;
  background: var(--lime);
  color: #08110c;
  border-radius: 0.5rem;
}
.skip-link:focus { transform: none; }

.site-header {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid rgba(201, 255, 85, 0.55);
  border-radius: 0.72rem 0.72rem 0.72rem 0.2rem;
  background: rgba(201, 255, 85, 0.1);
  color: var(--lime);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
nav { display: flex; gap: 1.5rem; }
nav a, .footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}
nav a:hover, nav a:focus-visible, .footer-links a:hover, .footer-links a:focus-visible { color: var(--ink); }

.hero {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 720px;
  padding: 5.8rem 0 6.4rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}
.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--cyan);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.eyebrow span {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  margin-right: 0.65rem;
  background: currentColor;
  vertical-align: middle;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  font-weight: 780;
}
h1 em { color: var(--lime); font-style: normal; }
.hero-lede {
  max-width: 35rem;
  color: #c7d2df;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.1rem;
}
.trust-row span {
  padding: 0.52rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
}

.checker-card {
  position: relative;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid rgba(137, 168, 203, 0.22);
  border-radius: 1.4rem;
  background: linear-gradient(145deg, rgba(18, 39, 63, 0.96), rgba(10, 23, 40, 0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.checker-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--cyan), transparent 85%);
}
.card-heading, .result-topline, .confidence-row, .result-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.card-heading { align-items: flex-start; margin-bottom: 1.7rem; }
.step-label {
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.checker-card h2 { margin-bottom: 0; font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1.15; letter-spacing: -0.035em; }
.status-chip {
  flex: 0 0 auto;
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(201, 255, 85, 0.2);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(201, 255, 85, 0.06);
  font-size: 0.72rem;
}
.status-chip i {
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.35rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0.7rem var(--lime);
}
#check-form > label { display: block; margin-bottom: 0.5rem; color: #d7e0ea; font-size: 0.84rem; font-weight: 700; }
.paid-gate {
  display: grid;
  gap: 0.15rem;
  margin-bottom: 1.35rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 191, 105, 0.25);
  border-radius: 0.7rem;
  background: rgba(255, 191, 105, 0.07);
  color: #d7e0ea;
  font-size: 0.78rem;
}
.paid-gate strong { color: var(--amber); }
.paid-gate span { color: var(--muted); }
.request-gate { margin-bottom: 1.5rem; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; margin-bottom: 0.5rem; color: #d7e0ea; font-size: 0.84rem; font-weight: 700; }
.optional { color: var(--muted); font-size: 0.72rem; font-weight: 500; }
.form-field textarea {
  width: 100%;
  resize: vertical;
  min-height: 6.6rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(148, 177, 210, 0.28);
  border-radius: 0.8rem;
  outline: 0;
  background: rgba(3, 12, 23, 0.7);
  color: var(--ink);
}
.form-field textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(81, 217, 255, 0.1); }
.form-field textarea::placeholder { color: #61748b; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.url-control {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0.15rem 1rem;
  border: 1px solid rgba(148, 177, 210, 0.28);
  border-radius: 0.8rem;
  background: rgba(3, 12, 23, 0.7);
}
.url-control:focus-within { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(81, 217, 255, 0.1); }
.url-control > span { color: var(--cyan); }
.url-control input {
  width: 100%;
  padding: 0.92rem 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}
.url-control input::placeholder { color: #61748b; }
.input-help { margin: 0.55rem 0 1.25rem; color: #71849b; font-size: 0.74rem; }
.input-help a { color: var(--cyan); }
.access-control { border-color: rgba(201, 255, 85, 0.24); }
.access-control:focus-within { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(201, 255, 85, 0.09); }
.access-control > span { color: var(--lime); }
.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}
.consent-row input { width: 1rem; height: 1rem; margin-top: 0.18rem; accent-color: var(--lime); }
.turnstile-wrap { min-height: 65px; margin: 0.35rem 0 1rem; }
.turnstile-wrap .cf-turnstile { width: 100%; }
.primary-button, .secondary-button {
  width: 100%;
  margin-top: 1.2rem;
  border: 0;
  border-radius: 0.78rem;
  padding: 0.95rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--lime);
  color: #10190b;
  font-weight: 850;
}
.primary-button:hover:not(:disabled) { background: #d6ff7c; transform: translateY(-1px); }
.primary-button:disabled { cursor: not-allowed; opacity: 0.38; }
.form-status { min-height: 1.5rem; margin: 0.6rem 0 0; color: var(--amber); font-size: 0.82rem; }
.request-success { padding: 1rem 0 0; animation: reveal 240ms ease both; }
.request-success[hidden] { display: none; }
.request-success h3 { margin-bottom: 0.6rem; font-size: clamp(1.7rem, 4vw, 2.4rem); }
.request-success > p:not(.step-label) { color: #c7d2df; }
.reference-line { padding: 0.75rem 0.9rem; border: 1px solid var(--line); border-radius: 0.7rem; background: rgba(3, 12, 23, 0.45); font-size: 0.78rem; }
.reference-line strong { color: var(--cyan); overflow-wrap: anywhere; }

.result-panel { animation: reveal 240ms ease both; }
.result-panel[hidden] { display: none; }
.result-panel h3 { margin-bottom: 0; font-size: 1.7rem; }
.verdict-badge { padding: 0.38rem 0.68rem; border-radius: 999px; font-size: 0.75rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.07em; }
.verdict-safe { background: rgba(201, 255, 85, 0.13); color: var(--lime); }
.verdict-unsure { background: rgba(255, 191, 105, 0.13); color: var(--amber); }
.verdict-scam { background: rgba(255, 107, 123, 0.13); color: var(--red); }
.confidence-row { margin-top: 1.5rem; color: var(--muted); font-size: 0.8rem; }
.confidence-row strong { color: var(--ink); }
.confidence-track { height: 0.38rem; margin: 0.45rem 0 1.35rem; border-radius: 999px; background: rgba(255, 255, 255, 0.08); overflow: hidden; }
.confidence-track span { display: block; height: 100%; width: 0; border-radius: inherit; background: linear-gradient(90deg, var(--cyan), var(--lime)); transition: width 450ms ease; }
.result-summary { color: #d2dce7; }
.usage-summary { margin: -0.4rem 0 1rem; color: var(--cyan); font-size: 0.78rem; font-weight: 700; }
.signal-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.55rem; }
.signal-list li { padding: 0.72rem 0.8rem; border: 1px solid var(--line); border-radius: 0.65rem; color: var(--muted); font-size: 0.8rem; }
.signal-list strong { display: block; color: var(--ink); }
.result-actions { align-items: stretch; }
.secondary-button { justify-content: center; flex: 1; background: #d8e3ef; }
.text-button { flex: 1; margin-top: 1.2rem; border: 1px solid var(--line); border-radius: 0.78rem; background: transparent; color: var(--ink); font-weight: 750; }
.result-disclaimer { margin: 1rem 0 0; color: #71849b; font-size: 0.72rem; }

.pricing-section {
  padding: clamp(4rem, 9vw, 8rem) max(1rem, calc((100% - 1180px) / 2));
  background: #eef3f0;
  color: #11211e;
}
.pricing-intro { margin-bottom: 2.5rem; }
.pricing-intro h2 { font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 0.98; letter-spacing: -0.055em; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: stretch; }
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 4vw, 2.2rem);
  border: 1px solid #cbd7d2;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 46, 38, 0.06);
}
.plan-card.featured { border: 2px solid #274d41; transform: translateY(-0.5rem); }
.value-badge { position: absolute; top: 1rem; right: 1rem; padding: 0.3rem 0.55rem; border-radius: 999px; background: #dfffa0; color: #1d3512; font-size: 0.68rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.07em; }
.plan-name { margin-bottom: 0.45rem; color: #426057; font-size: 0.78rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.11em; }
.plan-price { display: flex; align-items: baseline; gap: 0.35rem; margin-bottom: 0.85rem; }
.plan-price strong { font-size: 3rem; line-height: 1; letter-spacing: -0.06em; }
.plan-price span, .plan-card > p:nth-of-type(3) { color: #64746f; }
.plan-card ul { margin: 1rem 0 1.5rem; padding: 0; list-style: none; display: grid; gap: 0.55rem; }
.plan-card li { padding-left: 1.25rem; color: #42544e; font-size: 0.88rem; }
.plan-card li::before { content: "✓"; margin-left: -1.25rem; margin-right: 0.45rem; color: #315d20; font-weight: 900; }
.plan-button { margin-top: auto; padding: 0.85rem 1rem; border-radius: 0.68rem; background: #122820; color: #fff; text-align: center; text-decoration: none; font-weight: 800; }
.plan-button:hover, .plan-button:focus-visible { background: #284f41; }
.pricing-note { max-width: 56rem; margin: 1.4rem auto 0; color: #66756f; text-align: center; font-size: 0.78rem; }

.contact-section {
  padding: clamp(4rem, 9vw, 8rem) max(1rem, calc((100% - 1180px) / 2));
  background: #eef3f0;
  color: #11211e;
}
.contact-intro h2 { font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 0.98; letter-spacing: -0.055em; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.contact-grid article { padding: clamp(1.5rem, 4vw, 2.2rem); border: 1px solid #cbd7d2; border-radius: 1rem; background: #fff; }
.contact-icon { display: grid; place-items: center; width: 2.6rem; height: 2.6rem; margin-bottom: 2rem; border-radius: 0.75rem; background: #dfffa0; color: #1d3512; font-weight: 900; }
.contact-grid h3 { margin-bottom: 0.55rem; font-size: 1.35rem; }
.contact-grid p { margin-bottom: 0.6rem; color: #42544e; }
.contact-grid a { color: #173f35; font-weight: 800; overflow-wrap: anywhere; }
.contact-grid small { color: #66756f; line-height: 1.5; }

.method-section {
  padding: clamp(4rem, 9vw, 8rem) max(1rem, calc((100% - 1180px) / 2));
  background: #f3f7f4;
  color: #11211e;
}
.section-intro { max-width: 46rem; margin-bottom: 3rem; }
.section-intro h2, .limits-section h2 { font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 0.98; letter-spacing: -0.055em; }
.section-intro > p:last-child { max-width: 40rem; color: #50615c; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #cbd7d2; border: 1px solid #cbd7d2; }
.method-grid article { padding: clamp(1.5rem, 4vw, 2.5rem); background: #f3f7f4; }
.method-number { color: #6c8079; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.75rem; }
.method-grid h3 { margin: 2.5rem 0 0.5rem; font-size: 1.4rem; }
.method-grid p { margin-bottom: 0; color: #596b65; }

.limits-section {
  padding: clamp(4rem, 9vw, 8rem) max(1rem, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 8vw, 8rem);
  background: var(--lime);
  color: #101b10;
}
.eyebrow.light { color: #365023; }
.limits-copy { align-self: end; font-size: 1.05rem; }

footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.5rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  color: var(--muted);
  font-size: 0.82rem;
}
.footer-brand { color: var(--ink); }
.footer-links { display: flex; gap: 1.25rem; }
footer > p { grid-column: 1 / -1; margin-bottom: 0; padding-top: 1.5rem; border-top: 1px solid var(--line); }

@keyframes reveal { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (max-width: 820px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 4rem; }
  .checker-card { width: 100%; }
  .method-grid { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .limits-section { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  footer > p { grid-column: auto; }
}

@media (max-width: 520px) {
  .site-header { min-height: 70px; }
  .brand > span:last-child { max-width: 11rem; line-height: 1.05; }
  .hero { width: min(100% - 1.2rem, 1180px); }
  .checker-card { padding: 1.1rem; border-radius: 1rem; }
  .card-heading, .result-actions { flex-direction: column; align-items: stretch; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .status-chip { align-self: flex-start; }
  .text-button { min-height: 3.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
