    *, *::before, *::after { box-sizing: border-box; }
  html { -webkit-text-size-adjust: 100%; }
  body, h1, h2, p, ul, li { margin: 0; padding: 0; }
  ul { list-style: none; }
  button, input, textarea, select { font: inherit; color: inherit; }
  fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
  legend { padding: 0; }
    [hidden] { display: none !important; }

    :root {
    color-scheme: dark;
    --bg:     #000000;
    --ink:    #F2F2EF;
    --mid:    #8C8C85;
    --dim:    #7A7A72;
    --line:   #1C1C1A;
    --field:  #0B0B0A;
    --accent: #E4D64B;
    --btn:     #E9E2D0;
    --btn-tan: #D3C4A2;
    --btn-ink: #14130E;
    --ok:     #63B98A;

        --crit:   #D65B42;
    --high:   #DB8B3E;
    --med:    #C6A63F;
    --low:    #8A95A0;

    --f-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
    --f-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --wrap: 1120px;
    --pad-x: clamp(1.25rem, 4vw, 2.75rem);
  }

    body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--f-body);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
  }

  .wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--pad-x);
  }

  :focus-visible {
    outline: 1px solid var(--accent);
    outline-offset: 3px;
  }

  /* Any button or link that is turned off reads as turned off. */
  .cta[aria-disabled="true"], .cta:disabled,
  .p-go[aria-disabled="true"], .p-go:disabled,
  .gbtn:disabled, .f-submit:disabled, .fx-btn:disabled,
  .cta-send:disabled, .q-next:disabled {
    opacity: 0.45;
    pointer-events: none;
    cursor: default;
  }

  /* Keep browser autofill from painting fields light on the dark theme. */
  input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus,
  textarea:-webkit-autofill {
    -webkit-text-fill-color: var(--ink);
    -webkit-box-shadow: 0 0 0 1000px var(--field) inset;
    caret-color: var(--ink);
  }

    .nav { border-bottom: 1px solid var(--line); flex: 0 0 auto; }
  .nav-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.85rem;
  }
  .mark {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--ink);
  }
  .nav-auth {
    font-family: var(--f-mono);
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    transition: color .16s ease;
  }
  .nav-auth:hover { color: var(--ink); }

/* audience link, sits left of the sign-in link */
.nav-alt {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid #4A463D;
  transition: color .16s ease, border-color .16s ease;
}
.nav-alt:hover { color: var(--accent); border-bottom-color: var(--accent); }
@media (max-width: 700px) { .nav-alt { display: none; } }

  /* ============ MAIN — one screen, two columns ============ */
  .main {
    flex: 1 1 auto;
    display: grid;
    align-content: center;
    padding-block: clamp(1.75rem, 5vh, 3.25rem);
  }
  .cols {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: clamp(2rem, 5.5vw, 4.5rem);
    align-items: start;
    /* Fill the first screen so the platform band starts cleanly below the
       fold and is reached by scrolling, not left half-visible at the edge. */
    min-height: calc(100dvh - 7rem);
    align-content: center;
  }
  /* When the band is present, main flows top-down instead of centering the
       hero-plus-band block together (which pulled the band up into view). */
  .main:has(.builtwith) { align-content: start; }

  /* ---- left ---- */
  h1 {
    font-family: var(--f-mono);
    font-size: clamp(1.5rem, 2.85vw, 2.2rem);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.035em;
    text-wrap: balance;
  }
  h1 .dim { color: var(--dim); display: block; }

  .field-label {
    font-family: var(--f-mono);
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: clamp(2.75rem, 8.5vh, 5rem);
    margin-bottom: 0.95rem;
  }

  .scan-row {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--line);
    background: var(--field);
    max-width: 520px;
    transition: border-color .16s ease;
  }
  .scan-row:focus-within { border-color: var(--accent); }

  .scan-row input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: 0;
    font-family: var(--f-mono);
    font-size: 0.88rem;
    padding: 1.18rem 1.1rem;
  }
  .scan-row input::placeholder { color: var(--dim); }
  .scan-row input:focus { outline: none; }

  .scan-row button {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--btn-ink);
    border: 0;
    padding-inline: 1.25rem;
    cursor: pointer;
    white-space: nowrap;
    transition: filter .16s ease;
  }
  .scan-row button:hover { filter: brightness(1.09); }

  /* ---- stats, directly under the field ---- */
  .stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem clamp(2.25rem, 5vw, 3.75rem);
    margin-top: clamp(3.5rem, 10.5vh, 6rem);
    padding-top: clamp(1.75rem, 4vh, 2.6rem);
    border-top: 1px solid var(--line);
    max-width: 520px;
  }
  .stat {
    font-family: var(--f-mono);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dim);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }
  .stat b {
    color: var(--ink);
    font-size: clamp(1.1rem, 1.75vw, 1.35rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  /* ---- right: the live scan panel ---- */
  .checks { padding-top: 0.35rem; }
  .checks-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--line);
  }
  .checks-head h2 {
    font-family: var(--f-mono);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid);
  }
  .checks-head .total {
    font-family: var(--f-mono);
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dim);
    font-variant-numeric: tabular-nums;
  }

  .row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
    padding: 0.62rem 0;
    border-bottom: 1px solid var(--line);
  }

  .ico {
    width: 1.85rem;
    height: 1.85rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--field);
    color: var(--dim);
    flex: 0 0 auto;
    transition: color .3s ease, border-color .3s ease;
  }
  .ico svg { width: 14px; height: 14px; display: block; }

  .txt { display: grid; gap: 0.1rem; min-width: 0; }
  .row .name {
    font-family: var(--f-mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--mid);
    transition: color .3s ease;
  }
  .row .q {
    font-size: 0.72rem;
    line-height: 1.35;
    color: var(--dim);
  }

  /* status slot — reserves width so rows never shift */
  .status {
    width: 2.6rem;
    display: grid;
    place-items: center end;
    font-family: var(--f-mono);
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }
  .status .dot,
  .status .tick { grid-area: 1 / 1; opacity: 0; transition: opacity .25s ease; }
  .status .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    justify-self: end;
  }
  .status .tick { color: var(--ok); }

  /* --- states, driven by the loop --- */
  .row.is-scan .ico  { color: var(--accent); border-color: #3A3520; }
  .row.is-scan .name { color: var(--ink); }
  .row.is-scan .status .dot { opacity: 1; animation: pulse 1.7s ease-in-out infinite; }

  .row.is-done .ico  { color: var(--ok); border-color: #1E3327; }
  .row.is-done .name { color: var(--ink); }
  .row.is-done .status .tick { opacity: 1; }

  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

  /* ============ FOOTER ============ */
  .foot { flex: 0 0 auto; border-top: 1px solid var(--line); }
  .foot-in {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-block: 0.85rem;
    font-family: var(--f-mono);
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dim);
  }

  /* ============ NARROW ============ */
  @media (max-width: 780px) {
    .cols { grid-template-columns: 1fr; gap: 2.25rem; min-height: 0; align-content: start; }
    .main { align-content: start; }
  }

  /* ============ MOTION ============ */
  .rise {
    opacity: 0;
    animation: rise .5s cubic-bezier(.2,.7,.3,1) forwards;
  }
  .d1 { animation-delay: .04s; }
  .d2 { animation-delay: .12s; }
  .d3 { animation-delay: .2s; }
  .d4 { animation-delay: .28s; }
  @keyframes rise { from { transform: translateY(.5rem); } to { opacity: 1; transform: none; } }

  @media (prefers-reduced-motion: reduce) {
    .rise { animation: none; opacity: 1; transform: none; }
    *, *::before, *::after { transition-duration: .01ms !important; }
  }

/* =====================================================================
   SIGN-UP PAGE
   ===================================================================== */

.auth-cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5.5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 780px) {
  .auth-cols { grid-template-columns: 1fr; gap: 2.5rem; }
}

.auth h1 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin-bottom: 0.55rem;
}
.auth-sub {
  font-size: 0.85rem;
  color: var(--dim);
  max-width: 40ch;
}

/* --- terms agreement: explicit checkbox, gates both sign-in paths --- */
.agree {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  align-items: start;
  gap: 0.6rem;
  max-width: 340px;
  margin-top: clamp(1.4rem, 3.5vh, 2rem);
  font-size: 0.84rem;
  color: var(--mid);
  line-height: 1.45;
  cursor: pointer;
}
.agree input { position: absolute; opacity: 0; pointer-events: none; }
.agree-box {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.05rem;
  border: 1px solid #55504A;
  border-radius: 4px;
  display: grid;
  place-items: center;
  transition: background .14s ease, border-color .14s ease;
}
.agree-box::after {
  content: "\2713";                 font-size: 0.72rem;
  line-height: 1;
  color: var(--btn-ink);
  opacity: 0;
  transition: opacity .14s ease;
}
.agree input:checked ~ .agree-box {
  background: var(--accent);
  border-color: var(--accent);
}
.agree input:checked ~ .agree-box::after { opacity: 1; }
.agree input:focus-visible ~ .agree-box { outline: 1px solid var(--accent); outline-offset: 2px; }
.agree-txt a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }

.agree-err {
  max-width: 340px;
  margin-top: 0.7rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--crit);
  border-radius: 6px;
  background: rgba(222, 89, 67, 0.06);
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--crit);
}

.auth-actions {
  display: grid;
  gap: 0.7rem;
  justify-items: stretch;
  max-width: 340px;
  margin-top: clamp(1.5rem, 4vh, 2.2rem);
}

.gbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background: var(--btn);
  color: var(--btn-ink);
  border: 0;
  border-radius: 3px;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.72rem 1rem;
  cursor: pointer;
  transition: filter .16s ease;
}
.gbtn:hover { filter: brightness(0.94); }
.gbtn .g-mark {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.or {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.85rem;
  margin: 0.6rem 0;
}
.or::before, .or::after { content: ""; height: 1px; background: #2C2A24; }
.or span {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mid);
}

/* email + password, grouped in a lifted panel so they read against the black */
.fields {
  display: grid;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid #262420;
  border-radius: 5px;
  padding: 1rem;
}
.f-label {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.45rem;
  display: block;
}
/* darker than the panel so the inputs read as wells */
.f-input {
  width: 100%;
  background: #0A0A08;
  border: 1px solid #34322B;
  border-radius: 3px;
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 0.84rem;
  padding: 0.66rem 0.78rem;
  transition: border-color .16s ease;
}
.f-input::placeholder { color: #7E7A6D; }
.f-input:focus { outline: none; border-color: var(--accent); }

/* deeper tan than the provider button — different action, different weight */
.f-submit {
  width: 100%;
  background: var(--btn-tan);
  color: var(--btn-ink);
  border: 0;
  border-radius: 3px;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.7rem 1rem;
  margin-top: 0.1rem;
  cursor: pointer;
  transition: filter .16s ease;
}
.f-submit:hover { filter: brightness(0.94); }

/* "no account for that email" branch */
.no-acct {
  display: grid;
  gap: 0.65rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--field);
}
.no-acct[hidden] { display: none; }
.no-acct .o-dots { justify-self: start; }
.no-acct p {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.5;
}
.no-acct p b {
  color: var(--ink);
  font-weight: 600;
  word-break: break-all;
}

.auth-note {
  font-size: 0.75rem;
  color: var(--dim);
  line-height: 1.55;
  max-width: 340px;
  margin-top: 1.1rem;
}
.auth-note a { color: var(--mid); }

.held-msg {
  display: grid;
  gap: 0.5rem;
  padding: 0.95rem 0 1.05rem;
  border-bottom: 1px solid var(--line);
}
.held-msg .h-count {
  font-family: var(--f-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.queue-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}
.queue-head h2 {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}
.queue-head .total {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}

.target {
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}
.target .t-label {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
}
.target .t-url.empty { color: var(--dim); }
.target .t-url {
  font-family: var(--f-mono);
  font-size: 0.88rem;
  color: var(--accent);
  word-break: break-all;
  line-height: 1.35;
}

.queue li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}
.queue .ico { color: var(--ok); border-color: #1E3327; }
.queue .ico { width: 1.6rem; height: 1.6rem; }
.queue .ico svg { width: 12px; height: 12px; }

.scan-row { position: relative; }
.scan-row button { min-width: 7.2rem; }

.scan-bar {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 1.7s cubic-bezier(.3,.7,.4,1);
}
.scan-row.is-busy .scan-bar { width: 100%; }
.scan-row.is-busy { border-color: var(--mid); }
.scan-row.is-busy input { color: var(--dim); }
.scan-row.is-busy button { cursor: default; filter: none; }

.scan-cols {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 820px) {
  .scan-cols { grid-template-columns: 1fr; gap: 2.5rem; }
  .dial-wrap { justify-self: start; }
}

.dial-wrap {
  display: grid;
  justify-items: center;
  gap: 1.9rem;
}
.dial {
  position: relative;
  width: clamp(10rem, 17vw, 13rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.disc {
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, #1C1B17 0%, #100F0D 46%, #070706 78%, #030302 100%);
  box-shadow:
    inset 0 2px 1px rgba(255, 255, 255, 0.055),
    inset 0 -22px 40px rgba(0, 0, 0, 0.85),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 26px 50px rgba(0, 0, 0, 0.9),
    0 6px 16px rgba(0, 0, 0, 0.7);
}

.disc::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.022) 0 1px,
    transparent 1px 13px
  );
}

/* slow radar sweep — fills the interior with something that means "scanning" */
.sweep {
  position: absolute;
  inset: -30%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(228, 214, 75, 0.11) 34deg,
    rgba(228, 214, 75, 0.02) 62deg,
    transparent 84deg
  );
  animation: sweep 7.5s linear infinite;
}
@keyframes sweep { to { transform: rotate(360deg); } }

.dial svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  z-index: 2;
}
.dial-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 6;
}
.dial-arc {
  fill: none;
  stroke: var(--accent);
  stroke-width: 6;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(228, 214, 75, 0.4));
  transition: stroke-dashoffset 1.1s cubic-bezier(.4,.6,.3,1);
}

.qmark {
  position: relative;
  z-index: 3;
  font-family: var(--f-mono);
  font-size: clamp(2.6rem, 5vw, 3.7rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.95), 0 2px 4px rgba(0, 0, 0, 0.8);
  animation: bob 5.2s ease-in-out infinite;
}
.qmark-shadow {
  position: absolute;
  z-index: 1;
  bottom: 27%;
  width: 30%;
  height: 7%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.85);
  filter: blur(5px);
  animation: cast 5.2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(-7px); }
  50%      { transform: translateY(6px); }
}
@keyframes cast {
  0%, 100% { transform: scale(0.78); opacity: 0.45; }
  50%      { transform: scale(1.1);  opacity: 0.75; }
}

.dial.is-done .sweep { animation-play-state: paused; opacity: 0; transition: opacity .9s ease; }
.dial.is-done .qmark { color: var(--ok); }
.dial.is-done .dial-arc { filter: drop-shadow(0 0 7px rgba(99, 185, 138, 0.45)); stroke: var(--ok); }

@media (prefers-reduced-motion: reduce) {
  .sweep { animation: none; opacity: .05; }
  .qmark { animation: none; transform: none; }
  .qmark-shadow { animation: none; transform: scale(0.95); opacity: 0.6; }
}

.dial-meta {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  text-align: center;
}
.dial-meta .pct {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  font-variant-numeric: tabular-nums;
}

.run-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}
.run-head h2 {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}
.run-head .tally {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  font-variant-numeric: tabular-nums;
}

.run-stage {
  height: calc(3 * var(--run-row, 3rem));
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 26%, #000 74%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0, #000 26%, #000 74%, transparent 100%);
}
.run {
  transition: transform .5s cubic-bezier(.4, .8, .3, 1);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) { .run { transition: none; } }

.run li {
  height: var(--run-row, 3rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--line);
}
.run li:last-child { border-bottom: 0; }

.run .ico { width: 1.55rem; height: 1.55rem; border-radius: 5px; }
.run .ico svg { width: 11px; height: 11px; }

.run .r-name {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  color: var(--dim);
  transition: color .55s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.run .status {
  width: 1.6rem;
  display: grid;
  place-items: center end;
  font-family: var(--f-mono);
  font-size: 0.66rem;
}
.run .status .dot,
.run .status .tick { grid-area: 1 / 1; opacity: 0; transition: opacity .35s ease; }
.run .status .dot {
  width: 4.5px;
  height: 4.5px;
  border-radius: 50%;
  background: var(--accent);
  justify-self: end;
}
.run .status .tick { color: var(--ok); }

.run li.is-run .ico  { color: var(--accent); border-color: #3A3520; }
.run li.is-run .r-name { color: var(--ink); }
.run li.is-run .status .dot { opacity: 1; animation: pulse 2.4s ease-in-out infinite; }

.run li.is-done .ico  { color: var(--ok); border-color: #1E3327; }
.run li.is-done .r-name { color: var(--mid); }
.run li.is-done .status .tick { opacity: 1; }

.res-cols {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 820px) {
  .res-cols { grid-template-columns: 1fr; gap: 2.5rem; }
}

.verdict { display: grid; justify-items: start; gap: 0; }

.v-eyebrow {
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 1rem;
}
.v-head {
  font-family: var(--f-mono);
  font-size: clamp(1.5rem, 2.9vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--dim);
}
.v-head b {
  color: var(--accent);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.v-rule {
  width: 100%;
  max-width: 400px;
  height: 1px;
  background: var(--line);
  margin-top: 1.4rem;
}

.cta {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0;
  background: var(--btn);
  color: var(--btn-ink);
  border: 0;
  border-radius: 3px;
  padding: 0.72rem 1.15rem;
  margin-top: clamp(1.5rem, 3.5vh, 2rem);
  cursor: pointer;
  text-decoration: none;
  transition: filter .16s ease;
}
.cta:hover { filter: brightness(0.93); }

.assure {
  display: grid;
  gap: 0.62rem;
  margin-top: 1.5rem;
}
.assure li {
  font-size: 0.88rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.assure li::before {
  content: "\2713";
  font-family: var(--f-mono);
  color: var(--ok);
  font-size: 0.8rem;
}

.find-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}
.find-head h2 {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}
.find-head .meta {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}

.find li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
}
.find li:last-child { border-bottom: 0; }

.find .ico { width: 1.6rem; height: 1.6rem; border-radius: 5px; }
.find .ico svg { width: 11px; height: 11px; }

.find .f-name {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--ink);
  line-height: 1.4;
}

.find .tag {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.find .tag.crit { color: var(--crit); }
.find .tag.high { color: var(--high); }
.find .tag.med  { color: var(--med); }
.find .tag.low  { color: var(--low); }

.find li.locked .f-name {
  filter: blur(4px);
  opacity: 0.6;
  user-select: none;
  pointer-events: none;
}
.find li.locked .ico { opacity: 0.5; }
.find li.locked .tag { opacity: 0.65; }

.page-title {
  font-family: var(--f-mono);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dim);
  margin-bottom: clamp(1.25rem, 3vh, 2rem);
  line-height: 1.35;
}
.page-title .site {
  color: var(--ink);
  word-break: break-all;
}

.rep-cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.62fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) {
  .rep-cols { grid-template-columns: 1fr; gap: 2.5rem; }
}

.rep-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}
.rep-head h2 {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}
.rep-head .n {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  font-variant-numeric: tabular-nums;
}
.rep-head .n .c-crit { color: var(--crit); }
.rep-head .n .c-high { color: var(--high); }

.fnd {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.35rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
}
.fnd:last-child { border-bottom: 0; }

.fnd .ico { display: none; }

.fnd .f-top {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.fnd .tag {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  flex: 0 0 auto;
}
.fnd .tag.crit { color: var(--crit); }
.fnd .tag.high { color: var(--high); }
.fnd .tag.med  { color: var(--med); }
.fnd .tag.low  { color: var(--low); }

.fnd .f-title {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}
.fnd .f-desc {
  font-family: var(--f-body);
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.5;
  max-width: 60ch;
  margin-top: 0.1rem;
}

.locked-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.75rem;
  padding: 1.1rem 0 0.7rem;
  border-top: 1px solid #2A2822;
}
.locked-head h3 {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin: 0;
}
.locked-head .n {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  font-variant-numeric: tabular-nums;
}

.fnd.locked .f-title {
  filter: blur(4.5px);
  opacity: 0.62;
  user-select: none;
}
.fnd.locked .f-desc {
  filter: blur(3.5px);
  opacity: 0.42;
  user-select: none;
}
.fnd.locked { opacity: 0.85; }

.fixbox {
  margin-bottom: clamp(1.25rem, 3vh, 1.6rem);
  border: 1px solid #35322D;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.045);
  padding: clamp(1rem, 2vw, 1.25rem);
  display: grid;
  gap: 0.65rem;
  justify-items: start;
}
.fixbox .fx-label {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}
.fixbox p {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.5;
  max-width: 56ch;
}
.fixbox .fx-btn {
  background: var(--btn-tan);
  color: var(--btn-ink);
  border: 0;
  border-radius: 3px;
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.58rem 1rem;
  cursor: pointer;
  transition: filter .16s ease;
}
.fixbox .fx-btn:hover { filter: brightness(0.94); }

.upsell {
  border: 1px solid #35322D;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.045);
  padding: clamp(1.1rem, 2.2vw, 1.35rem);
  display: grid;
  gap: 0.7rem;
  position: sticky;
  top: 1.5rem;
}
.upsell .u-label {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}
.upsell .u-head {
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}
.upsell .u-head b {
  color: var(--ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.u-spec { display: grid; margin-top: 0.15rem; }
.u-spec > div {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 0.8rem;
  padding: 0.5rem 0;
  border-top: 1px solid #2A2822;
  align-items: baseline;
}
.u-spec > div:last-child { border-bottom: 1px solid #2A2822; }
.u-spec dt {
  font-family: var(--f-mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.u-spec dd {
  margin: 0;
  font-size: 0.76rem;
  color: var(--mid);
  line-height: 1.4;
}
.u-spec dd b {
  color: var(--ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.upsell .cta { margin-top: 0.35rem; width: 100%; text-align: center; }

.pay-intro { max-width: 62ch; }
.pay-intro .p-eyebrow {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.9rem;
}
.pay-intro h1 .hot { color: var(--ink); }
.pay-intro h1 {
  font-family: var(--f-mono);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--ink);
}
.pay-intro h1 .pay-bar { color: var(--dim); font-weight: 400; margin: 0 0.25rem; }
.pay-intro .p-sub {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.5;
  margin-top: 0.5rem;
  max-width: 66ch;
}
.pay-intro .p-sub b { color: var(--ink); font-weight: 600; }

.breach-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  text-align: center;
  margin-top: clamp(1.75rem, 4.5vh, 2.75rem);
  padding: 0.6rem 1.4rem;
  border: 1px solid #3A3524;
  border-radius: 999px;
  background: rgba(228, 214, 75, 0.045);
  font-size: 0.86rem;
  color: var(--mid);
}
.breach-stat b {
  color: var(--accent);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.breach-stat .breach-src {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.2vw, 1.75rem);
  margin-top: clamp(2.25rem, 5.5vh, 3.5rem);
  align-items: stretch;
}
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } }

.plan {
  position: relative;
  border: 1px solid #2A2822;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: clamp(1.5rem, 2.3vw, 2.1rem);
  display: flex;
  flex-direction: column;
}
.plan.pick {
  border-color: #5A5433;
  background: rgba(228, 214, 75, 0.05);
}

.plan .p-tag {
  position: absolute;
  top: -0.72rem;
  left: clamp(1.5rem, 2.6vw, 2rem);
  font-family: var(--f-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--btn-ink);
  background: var(--accent);
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
}

.plan .p-label {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}

.plan .p-price {
  margin-top: 0.65rem;
  font-family: var(--f-mono);
  font-size: clamp(1.7rem, 3.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 0.55rem;
}
.plan .p-anchor {
  display: block;
  font-size: 0.85rem;
  color: var(--mid);
  margin-top: 0.4rem;
  font-variant-numeric: tabular-nums;
}
.plan .p-anchor b { color: var(--ink); font-weight: 700; }
.plan .p-price span {
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--dim);
}

.plan .p-blurb {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.55;
  margin-top: 1rem;
}

.plan ul { display: block; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.plan li {
  position: relative;
  padding: 0.42rem 0 0.42rem 1.4rem;
  font-size: 0.86rem;
  color: #ADA89B;
  line-height: 1.5;
}
.plan li::before {
  content: "\2022";                 position: absolute;
  left: 0.1rem;
  top: 0.26rem;
  color: var(--mid);
}
.plan li b { color: var(--ink); font-weight: 600; }

.plan li.same {
  padding-left: 0;
  font-family: var(--f-body);
  font-size: 0.76rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--dim);
  padding-top: 0;
  padding-bottom: 0.45rem;
}
.plan li.same::before { content: none; }

.plan .p-cancel {
  margin-top: auto;                padding-top: 1.4rem;
  font-size: 0.74rem;
  font-style: italic;
  color: var(--dim);
}

.plan .p-go {
  margin-top: 1.1rem;
  width: 100%;
  text-align: center;
  border: 1px solid #4A463D;
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.62rem 1rem;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: background .16s ease, border-color .16s ease;
}
.plan .p-go:hover { background: rgba(255, 255, 255, 0.07); border-color: var(--mid); }

.plan.pick .p-go {
  background: var(--btn);
  border-color: var(--btn);
  color: var(--btn-ink);
}
.plan.pick .p-go:hover { filter: brightness(0.93); background: var(--btn); }

.pay-foot {
  margin-top: clamp(0.9rem, 2vh, 1.4rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  max-width: 74ch;
  font-size: 0.82rem;
  color: var(--dim);
  line-height: 1.6;
}

.co-cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
@media (max-width: 860px) { .co-cols { grid-template-columns: 1fr; gap: 2rem; } }

.co-slot {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.co-slot #whopMount { min-height: 4rem; }
.co-slot .co-after {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--dim);
  line-height: 1.7;
}

.co-sum {
  border: 1px solid #2A2822;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.045);
  padding: clamp(1.15rem, 2.4vw, 1.5rem);
  display: grid;
  gap: 0;
}
.co-sum .s-label {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.9rem;
}
.co-sum .s-plan {
  font-family: var(--f-mono);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.co-sum .s-site {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--accent);
  word-break: break-all;
  margin-top: 0.5rem;
}
.co-sum .s-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid #2A2822;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--mid);
}
.co-sum .s-row b {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.5vw, 1.6rem);
}
.nav-scans {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.nav-scans b { color: var(--accent); font-weight: 700; }

#navAuth:empty { display: none; }
.nav-user {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.nav-user::before {
  content: "";
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--btn);
  color: var(--btn-ink);
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0;
  content: attr(data-initial);
}
.nav-user:hover { color: var(--accent); }

/* --- past scans, on the landing page for signed-in users --- */
.history { margin-top: clamp(2rem, 5vh, 3rem); }
.history-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}
.history-head h2 {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}
.history-head .n {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}
.history a.h-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.8rem clamp(0.9rem, 2.5vw, 1.75rem);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background .16s ease;
}
.history a.h-row:hover { background: rgba(255, 255, 255, 0.03); }
.history .h-site {
  font-family: var(--f-mono);
  font-size: 0.82rem;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.history .h-when {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  color: var(--dim);
  white-space: nowrap;
}
.history .h-count {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--mid);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.history .h-count.clean { color: var(--ok); }

/* =====================================================================
   SIGN-IN OVERLAY
   ===================================================================== */

.overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--bg);
  display: grid;
  place-items: center;
  gap: 1.4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.overlay.on { opacity: 1; pointer-events: auto; }
.overlay .o-in { display: grid; justify-items: center; gap: 1.5rem; }
.overlay .o-msg {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}
/* three ticking blocks, same language as the scan dots */
.o-dots { display: flex; gap: 0.45rem; }
.o-dots span {
  width: 6px;
  height: 6px;
  background: var(--accent);
  opacity: 0.2;
  animation: tick 1.05s ease-in-out infinite;
}
.o-dots span:nth-child(2) { animation-delay: .16s; }
.o-dots span:nth-child(3) { animation-delay: .32s; }
@keyframes tick { 0%, 100% { opacity: 0.18; } 45% { opacity: 1; } }

/* =====================================================================
   FAILURE + EMPTY STATES
   ===================================================================== */

.dial.is-fail .dial-arc { stroke: var(--crit); filter: none; }
.dial.is-fail .sweep { opacity: 0; }
.dial.is-fail .qmark { color: var(--crit); }

.state-panel {
  border: 1px solid #2A2822;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.045);
  padding: clamp(1.25rem, 2.6vw, 1.75rem);
  display: grid;
  gap: 0.8rem;
  justify-items: start;
  max-width: 56ch;
}
.state-panel.bad { border-color: #3D2320; background: rgba(222, 89, 67, 0.05); }
.state-panel.good { border-color: #22331F; background: rgba(99, 185, 138, 0.05); }

.state-panel .sp-label {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}
.state-panel.bad .sp-label { color: var(--crit); }
.state-panel.good .sp-label { color: var(--ok); }
.state-panel h2 {
  font-family: var(--f-mono);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--ink);
}
.state-panel p {
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.6;
}
.state-panel ul { display: grid; gap: 0.35rem; }
.state-panel li {
  font-size: 0.82rem;
  color: var(--dim);
  line-height: 1.5;
  padding-left: 0.9rem;
  position: relative;
}
.state-panel li::before {
  content: "\2013";
  position: absolute;
  left: 0;
  color: var(--dim);
}
.scan-tip {
  display: block;
  max-width: 34rem;
  margin: 0 0 1.7rem auto;
  min-height: 1.5em;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0b0a;
  padding: 0.95rem 1.15rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--mid);
  opacity: 1;
  transition: opacity .5s ease;
}
.scan-tip.is-fading { opacity: 0; }
.scan-tip b { color: var(--ink); font-weight: 600; }
@media (prefers-reduced-motion: reduce) { .scan-tip { transition: none; } }
@media (max-width: 720px) { .scan-tip { max-width: none; margin-left: 0; } }

.scorebox {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0b0a;
  padding: 1.1rem 1.2rem 1.2rem;
  margin-top: 1rem;
}
.scorebox .s-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.55rem;
}
.s-num { display: flex; align-items: baseline; gap: 0.15rem; font-family: var(--f-body); }
.s-num b { font-size: 2.2rem; font-weight: 700; line-height: 1; color: var(--ink); }
.s-num span { font-size: 1rem; color: var(--mid); }
.s-num b.good { color: #62B87C; }
.s-num b.ok   { color: #D2BE52; }
.s-num b.warn { color: #DB9E43; }
.s-num b.bad  { color: #CF5B44; }
.s-bar {
  position: relative;
  height: 9px;
  border-radius: 5px;
  background: #1a1a17;
  margin: 0.75rem 0 0.6rem;
  overflow: hidden;
}
.s-fill { position: absolute; top: 0; bottom: 0; left: 0; width: 0; border-radius: 5px; transition: width .6s ease; }
.s-fill.good { background: #62B87C; }
.s-fill.ok   { background: #D2BE52; }
.s-fill.warn { background: #DB9E43; }
.s-fill.bad  { background: #CF5B44; }
.s-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent calc(10% - 1px), #0b0b0a calc(10% - 1px), #0b0b0a 10%);
  pointer-events: none;
}
.s-note { font-size: 0.8rem; color: var(--mid); margin: 0.15rem 0 0; line-height: 1.5; }
.s-note b { color: var(--ink); font-weight: 600; }
.s-predict {
  font-size: 0.8rem;
  color: var(--mid);
  margin: 0.55rem 0 0;
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
  line-height: 1.5;
}
.s-predict b { color: #62B87C; font-weight: 700; }
.scorebox.is-updating { animation: scoreGlow 2.6s ease; }
@keyframes scoreGlow {
  0% { box-shadow: 0 0 0 0 rgba(98, 184, 124, 0); border-color: var(--line); }
  45% { box-shadow: 0 0 24px 2px rgba(98, 184, 124, 0.28); border-color: rgba(98, 184, 124, 0.45); }
  100% { box-shadow: 0 0 0 0 rgba(98, 184, 124, 0); border-color: var(--line); }
}
@media (prefers-reduced-motion: reduce) { .scorebox.is-updating { animation: none; } }

.fixrow {
  margin-bottom: clamp(1.25rem, 3vh, 1.6rem);
  display: grid;
  gap: 0.65rem;
  justify-items: start;
}
.fixrow .fx-btn {
  background: var(--btn-tan);
  color: var(--btn-ink);
  border: 0;
  border-radius: 3px;
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.58rem 1rem;
  cursor: pointer;
  transition: filter .16s ease;
}
.fixrow .fx-btn:hover { filter: brightness(0.94); }

.state-panel .sp-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.25rem; align-items: center; }
.state-panel .sp-actions .fx-btn {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.72rem 1.15rem;
  margin-top: clamp(1.5rem, 3.5vh, 2rem);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .16s ease;
}
.state-panel .sp-actions .fx-btn:hover { border-color: var(--mid); }

.fx-out { display: none; width: 100%; }
.fx-out.on { display: grid; gap: 0.7rem; }
.fx-out textarea {
  width: 100%;
  min-height: 11rem;
  resize: vertical;
  background: #080807;
  border: 1px solid #34322B;
  border-radius: 3px;
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 0.76rem;
  line-height: 1.6;
  padding: 0.85rem 0.9rem;
}
.fx-out textarea:focus { outline: none; border-color: var(--accent); }
.fx-row { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }
.fx-copied {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  color: var(--ok);
  opacity: 0;
  transition: opacity .2s ease;
}
.fx-copied.on { opacity: 1; }

@media (max-width: 620px) {
  .nav-in { gap: 0.75rem; }
  .nav-right { gap: 0.85rem; }
  .nav-scans { font-size: 0.6rem; letter-spacing: 0.08em; }
  .mark { font-size: 0.66rem; letter-spacing: 0.16em; }
  .nav-auth { font-size: 0.6rem; }

    .main { align-content: start; }

  .history a.h-row { grid-template-columns: minmax(0, 1fr) auto; }
  .history .h-when { grid-column: 1; font-size: 0.64rem; }
  .history .h-count { grid-column: 2; grid-row: 1; }

  .fnd { grid-template-columns: auto minmax(0, 1fr); }
  .run li { gap: 0.6rem; }
  .u-spec > div { grid-template-columns: 4.6rem minmax(0, 1fr); gap: 0.6rem; }
}

@media (max-height: 700px) {
  .main { align-content: start; }
}

.agency-col { max-width: none; }
.ag-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 30rem);
  column-gap: 0;
  align-items: stretch;
  min-height: max(30rem, calc(100vh - 11rem));
}
.ag-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(2rem, 6vw, 5rem);
  padding-block: clamp(1rem, 4vh, 2.5rem);
}
.ag-right {
  border-left: 1px solid #3A372F;
  padding-left: clamp(2rem, 6vw, 5rem);
  padding-block: clamp(1rem, 4vh, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ag-hero { max-width: none; }
.ag-hero h1 {
  font-family: var(--f-mono);
  font-size: clamp(1.7rem, 3.6vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--ink);
  max-width: 13ch;
}
.ag-hero .lede {
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  color: var(--mid);
  line-height: 1.72;
  margin-top: 1.75rem;
  max-width: 44ch;
}
.ag-hero .lede b { color: var(--ink); font-weight: 600; }
.ag-hero sup {
  font-size: 0.62em;
  color: var(--dim);
  vertical-align: super;
  line-height: 0;
}
.ag-hero sup a { color: var(--dim); text-decoration: none; border-bottom: 1px solid #33312B; }
.ag-hero sup a:hover { color: var(--mid); }

.quiz { max-width: none; }
.quiz-intro {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.quiz-sub {
  font-size: 0.84rem;
  color: var(--dim);
  margin-top: 0.45rem;
  line-height: 1.5;
}
.quiz-body { margin-top: 1.6rem; }

.q-step {
  display: none;
  border: 1px solid #2E2B24;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.045);
  padding: clamp(1.5rem, 3.5vw, 2.1rem);
}
.q-step.on { display: block; animation: qin .28s cubic-bezier(.2,.7,.3,1); }
.q-ans { display: grid; gap: 1.35rem; margin-top: 1.15rem; }
.q-ask .q-title { margin: 0.85rem 0 0; }
@keyframes qin {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .q-step.on { animation: none; } }

.q-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.q-meta {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  font-variant-numeric: tabular-nums;
}
.q-ticks { display: flex; gap: 0.28rem; }
.q-ticks span {
  width: 1.15rem;
  height: 2px;
  background: #2E2B24;
  transition: background .3s ease;
}
.q-ticks span.done { background: #55504360; }
.q-ticks span.now  { background: var(--accent); }

.q-title {
  font-family: var(--f-mono);
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.35;
  color: var(--ink);
  margin: 0.9rem 0 1.15rem;
}

.opts { display: grid; }
.opt {
  display: grid;
  grid-template-columns: 0.8rem minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
  padding: 0.72rem 0.65rem;
  margin-inline: -0.65rem;
  border-radius: 3px;
  font-size: 0.9rem;
  color: var(--mid);
  cursor: pointer;
  transition: color .14s ease, background .14s ease;
}
.opt + .opt { box-shadow: 0 -1px 0 var(--line); }
.opt:hover { color: var(--ink); background: rgba(255, 255, 255, 0.035); }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt .box {
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid #55504A;
  border-radius: 2px;
  display: block;
  transition: background .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.opt input:checked ~ .box {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(228, 214, 75, 0.12);
}
.opt input:checked ~ .lbl { color: var(--ink); }
.opt input:focus-visible ~ .box { outline: 1px solid var(--accent); outline-offset: 2px; }

.q-fields { display: grid; gap: 0.9rem; }
.q-field label {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-bottom: 0.4rem;
}
.q-input {
  width: 100%;
  background: #08080700;
  border: 0;
  border-bottom: 1px solid #3A382F;
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 0.9rem;
  padding: 0.5rem 0.1rem;
  transition: border-color .16s ease;
}
.q-input::placeholder { color: #5C584D; }
.q-input:focus { outline: none; border-bottom-color: var(--accent); }
.q-other { margin-top: 0.9rem; padding-top: 0.9rem; border-top: 1px solid var(--line); }

.q-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-top: 1.25rem;
}
.q-next {
  background: var(--btn);
  color: var(--btn-ink);
  border: 0;
  border-radius: 3px;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.7rem 1.7rem;
  cursor: pointer;
  transition: filter .16s ease, background .16s ease, color .16s ease;
}
.q-next:hover { filter: brightness(0.93); }
.q-next:disabled {
  background: transparent;
  color: var(--dim);
  box-shadow: inset 0 0 0 1px #2E2B24;
  cursor: default;
  filter: none;
}
.q-back {
  background: none;
  border: 0;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  cursor: pointer;
  padding: 0;
  transition: color .16s ease;
}
.q-back:hover { color: var(--mid); }
.q-back[hidden] { display: none; }

.q-sending { display: none; }
.q-sending.on {
  display: grid;
  gap: 1.2rem;
  justify-items: start;
  border: 1px solid #2E2B24;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.045);
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 1.7rem);
}
.q-sending .s-msg {
  font-family: var(--f-mono);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
}

.ag-fine {
  margin-top: clamp(3.5rem, 10vh, 6rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  max-width: 62ch;
  font-size: 0.72rem;
  color: var(--dim);
  line-height: 1.65;
}
.ag-fine p + p { margin-top: 0.6rem; }
.ag-fine a { color: var(--mid); }

.next-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: stretch;
}
.next-main { max-width: 34rem; }
.next-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
    border-left: 1px solid #2E2B26;
  padding-left: clamp(1.75rem, 3.5vw, 3rem);
}
@media (max-width: 860px) {
  .next-wrap { grid-template-columns: 1fr; gap: 2.25rem; }
  .next-side {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 1.6rem;
  }
}
.next-label {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.next-wrap h1 {
  font-family: var(--f-mono);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--ink);
}
.next-wrap p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.65;
  margin-top: 1.1rem;
}
.cta-zone { margin-top: 1.9rem; }
.cta-send {
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border: 0;
  border-radius: 4px;
  background: var(--btn);
  color: var(--btn-ink);
  cursor: pointer;
  transition: background .16s ease, transform .12s ease;
}
.cta-send {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.cta-send:hover { background: #F5F0E4; }
.cta-send:active { transform: translateY(1px); }
.cta-send:disabled { opacity: 0.5; cursor: default; }

.cta-send.is-sending,
.cta-send.is-sending:disabled { opacity: 1; cursor: default; }
.cta-send.is-sending:active { transform: none; }

.cta-spin {
  display: none;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  border: 2px solid rgba(20, 19, 14, 0.22);
  border-top-color: var(--btn-ink);
  animation: ctaspin 0.7s linear infinite;
}
.cta-send.is-sending .cta-spin { display: block; }
@keyframes ctaspin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .cta-spin { animation: none; opacity: 0.55; }
}

.next-wrap .mail-note {
  font-size: 0.78rem;
  color: var(--dim);
  margin-top: 0.8rem;
}

.sent-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 1.9rem;
  padding: 1rem 1.15rem;
  border: 1px solid #23352B;
  border-radius: 5px;
  background: rgba(99, 185, 138, 0.06);
  outline: none;
  animation: rise .4s cubic-bezier(.2,.7,.3,1) both;
}
.sent-mark {
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  color: var(--ok);
}
.sent-mark svg { display: block; width: 100%; height: 100%; }
.next-wrap .sent-title {
  margin-top: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}
.next-wrap .sent-sub {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.4;
}

.next-wrap .next-sub {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 0;
}
.next-list { display: grid; gap: 0.7rem; margin-top: 1.1rem; }
.next-list li {
  font-size: 0.85rem;
    color: var(--mid);
  line-height: 1.55;
  padding-left: 1.05rem;
  position: relative;
}
.next-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--dim);
  font-family: var(--f-mono);
}

@media (max-width: 900px) {
  .ag-grid { grid-template-columns: minmax(0, 1fr); row-gap: clamp(2.25rem, 6vh, 3.25rem); min-height: 0; }
  .ag-left { padding-right: 0; padding-block: 0; }
  .ag-right { border-left: 0; padding-left: 0; padding-block: 0; border-top: 1px solid #3A372F; padding-top: clamp(2rem, 5vh, 2.75rem); }
  .ag-hero .lede { max-width: 54ch; }
}

.q-err {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--crit);
  max-width: 34ch;
}

.q-input.bad { border-bottom-color: var(--crit); }
.q-input.bad:focus { border-bottom-color: var(--crit); }

.q-input:disabled {
  color: var(--dim);
  border-bottom-style: dashed;
  border-bottom-color: #2E2B24;
  cursor: not-allowed;
}
.q-input:disabled::placeholder { color: #37342D; }

.opt-solo {
  justify-self: start;
  font-size: 0.84rem;
}
.opt-solo + .opt-solo,
.opt-solo:only-child { box-shadow: none; }

.builtwith {
  border-top: 1px solid var(--line);
  padding-block: clamp(2.5rem, 6vh, 4rem);
  margin-top: clamp(2rem, 5vh, 3.5rem);
  text-align: center;
}
.bw-eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
}
.bw-grid {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  max-width: 56rem;
  margin: 1.6rem auto 0;
}
.bw-tile {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  background: #F2F2EF;
  border-radius: 13px;
  color: #14130E;
  transition: transform .16s ease, background .16s ease;
}
.bw-tile:hover { transform: translateY(-2px); background: #fff; }
.bw-tile svg { width: 1.55rem; height: 1.55rem; fill: currentColor; }
.bw-word {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}
.bw-note {
  font-size: 0.82rem;
  color: var(--dim);
  margin-top: 1.4rem;
  line-height: 1.5;
}
.vh {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.mark-logo {
  width: 1.4rem;
  height: 1.4rem;
  display: block;
  flex: 0 0 auto;
}

.nav-userwrap { display: inline-flex; align-items: center; gap: 0.7rem; }
.nav-signout {
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0.32rem 0.62rem;
  cursor: pointer;
  transition: color .16s ease, border-color .16s ease;
}
.nav-signout:hover { color: var(--ink); border-color: var(--mid); }

.manage-sub {
  margin-top: 1.1rem;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}
.manage-sub a { color: var(--dim); text-decoration: underline; text-underline-offset: 2px; }
.manage-sub a:hover { color: var(--mid); }

/* ---- Onboarding ---- */
.ob-main { padding-block: clamp(2rem, 6vh, 4.5rem); }
.ob-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 880px) { .ob-grid { grid-template-columns: 1fr; gap: 2.25rem; } }

.ob-step {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: var(--dim);
  margin-bottom: 0.9rem;
}
.ob-step b { color: var(--accent); font-weight: 700; }

.ob-progress { display: flex; gap: 0.45rem; margin-bottom: 2.25rem; max-width: 22rem; }
.ob-progress span { height: 3px; flex: 1; background: #2A2822; border-radius: 2px; }
.ob-progress span.on { background: var(--accent); }

.ob-title {
  font-family: var(--f-mono);
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.35rem;
}
.ob-desc {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--mid);
  max-width: 30ch;
  margin-bottom: 1rem;
}

.ob-cards { display: flex; flex-direction: column; gap: 1rem; }
.ob-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.15rem;
  padding: 1.1rem 1.3rem;
  border: 1px solid #2A2822;
  border-radius: 10px;
  background: #0A0A08;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.ob-card:hover, .ob-card:focus-visible {
  border-color: var(--mid);
  background: #100F0C;
  outline: none;
}
.ob-ico {
  width: 2.7rem; height: 2.7rem;
  display: grid; place-items: center;
  border: 1px solid #33312B;
  border-radius: 8px;
  color: var(--mid);
  flex: 0 0 auto;
}
.ob-ico svg { width: 21px; height: 21px; }
.ob-card-title {
  font-family: var(--f-mono);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.ob-card-desc {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--dim);
}
.ob-arrow { font-size: 1.1rem; color: var(--mid); }
.ob-card:hover .ob-arrow, .ob-card:focus-visible .ob-arrow { color: var(--accent); }

.ob-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(2.25rem, 6vh, 3.5rem);
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.ob-back {
  color: var(--mid);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.ob-back:hover { color: var(--ink); }
.ob-foot-note { text-align: right; }

.ob-risk p {
  font-family: var(--f-mono);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: 1.15rem;
  max-width: 38ch;
}
.ob-red { color: var(--crit); font-weight: 700; }
.ob-note {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  color: var(--dim);
  margin-top: 0.4rem;
}

.ob-panel {
  border: 1px solid #2A2822;
  border-radius: 12px;
  background: #0A0A08;
  padding: clamp(1.4rem, 3vw, 2.1rem);
}
.ob-panel-label {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.4rem;
}
.ob-panel-desc {
  font-family: var(--f-mono);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 1.7rem;
}
.ob-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--accent);
  color: var(--btn-ink);
  font-family: var(--f-mono);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 1rem;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: filter 0.15s ease;
}
.ob-cta:hover { filter: brightness(1.06); }
.ob-panel-sub {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--dim);
  margin-top: 1rem;
  text-align: center;
}

.foot-legal {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.foot-legal a {
  color: var(--dim);
  text-decoration: none;
  transition: color 0.15s ease;
}
.foot-legal a:hover { color: var(--mid); }

.legal { max-width: 60ch; }
.legal-draft {
  font-size: 0.78rem;
  color: var(--dim);
  line-height: 1.5;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.legal-toc {
  display: flex;
  gap: 1.25rem;
  margin: 1.5rem 0 2.5rem;
}
.legal-toc a {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
}
.legal-toc a:hover { color: var(--ink); }

.legal-sec { margin-bottom: 2.75rem; scroll-margin-top: 4rem; }
.legal-sec h1 {
  font-family: var(--f-mono);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.legal-sec p {
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}
.legal-sec p:last-child { margin-bottom: 0; }
.legal-contact {
  font-size: 0.82rem;
  color: var(--dim);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.legal-contact a, .legal-sec a { color: var(--mid); }
.legal-sec h2 {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 1.9rem 0 0.7rem;
}
.legal-sec ul {
  margin: 0 0 0.85rem;
  padding-left: 1.1rem;
  list-style: disc;
}
.legal-sec li {
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}
.legal-lead {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 1.6rem;
}
.legal-updated {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.scan-err {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--crit);
}
#urlInput.bad { border-color: var(--crit); }

.scan-row button:disabled { opacity: 0.5; cursor: not-allowed; }

.scan-consent {
  margin-top: 1rem;
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--dim);
}
.scan-consent a {
  color: var(--dim);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.16);
  text-underline-offset: 2px;
}
.scan-consent a:hover { color: var(--mid); text-decoration-color: var(--mid); }

/* =====================================================================
   MOBILE (<=767px) — compact phone layout for the landing page and paywall
   only. Scoped to page-specific selectors so desktop and other pages are
   unchanged.
   ===================================================================== */
@media (max-width: 767px) {

  /* ---------- Landing: hero ---------- */
  .cols { gap: 1.25rem; }
  .cols h1 { font-size: clamp(1.6rem, 6.6vw, 1.9rem); line-height: 1.16; letter-spacing: -0.02em; }
  .field-label { margin-top: 0.9rem; font-size: 0.6rem; }

  /* ---------- Landing: scan form (stacked, full width, compact) ---------- */
  .scan-row { flex-direction: column; align-items: stretch; gap: 0.6rem; border: 0; background: transparent; max-width: none; }
  .scan-row input { width: 100%; min-height: 46px; border: 1px solid var(--line); background: var(--field); border-radius: 6px; font-size: 1rem; padding: 0.65rem 0.85rem; }
  .scan-row input:focus { border-color: var(--accent); }
  .scan-row button { width: 100%; min-height: 46px; border-radius: 6px; font-size: 0.78rem; }
  .scan-row .scan-bar { display: none; }
  .scan-consent { font-size: 0.74rem; margin-top: 0.65rem; line-height: 1.45; }
  .scan-err { font-size: 0.78rem; }

  /* ---------- Landing: proof stats, one compact strip ---------- */
  .stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.6rem 0.5rem; margin-top: 1.4rem; padding-top: 1rem; }
  .stat { display: flex; flex-direction: column; gap: 0.08rem; font-size: 0.56rem; letter-spacing: 0.03em; min-width: 0; }
  .stat b { font-size: 1.1rem; }

  /* ---------- Landing: "what we check", tight rows ---------- */
  .checks { padding-top: 0; }
  .checks-head { padding-bottom: 0.5rem; }
  .checks-head h2 { font-size: 0.66rem; }
  .checks-head .total { font-size: 0.58rem; }
  .row { gap: 0.55rem; padding: 0.48rem 0; }
  .row .name { font-size: 0.84rem; }
  .row .q { font-size: 0.73rem; line-height: 1.3; }
  .row .ico { width: 1.5rem; height: 1.5rem; }

  /* ---------- Landing: platforms, small tag grid ---------- */
  .builtwith { margin-top: 1.6rem; }
  .bw-grid { gap: 0.45rem; max-width: none; }
  .bw-tile { width: 2.55rem; height: 2.55rem; border-radius: 10px; }

  /* ---------- Paywall: opening ---------- */
  .pay-intro { max-width: none; }
  .pay-intro h1 { font-size: clamp(1.5rem, 6vw, 1.8rem); line-height: 1.12; }
  .pay-intro .p-sub { font-size: 0.84rem; max-width: none; margin-top: 0.4rem; }
  .breach-stat { margin-top: 1.15rem; padding: 0.55rem 0.8rem; }
  .breach-stat > span:first-child { font-size: 0.78rem; line-height: 1.4; }
  .breach-stat .breach-src { font-size: 0.55rem; }

  /* ---------- Paywall: thin, compact plan cards ---------- */
  .plans { gap: 0.75rem; margin-top: 1.4rem; }
  .plan { width: 100%; max-width: 420px; margin-inline: auto; padding: 0.9rem 1rem; border-radius: 10px; }
  .plan .p-label { font-size: 0.58rem; }
  .plan .p-price { margin-top: 0.25rem; font-size: 1.6rem; }
  .plan .p-price span { font-size: 0.7rem; }
  .plan .p-anchor { margin-top: 0.2rem; font-size: 0.74rem; }
  .plan ul { margin-top: 0.7rem; padding-top: 0.65rem; }
  .plan li { padding-top: 0.24rem; padding-bottom: 0.24rem; font-size: 0.8rem; line-height: 1.32; }
  .plan .p-cancel { padding-top: 0.7rem; font-size: 0.68rem; }
  .plan .p-go { margin-top: 0.7rem; min-height: 44px; font-size: 0.84rem; }
  .plan .p-tag { top: -0.58rem; font-size: 0.55rem; padding: 0.18rem 0.5rem; }

  /* ---------- Paywall: closing note ---------- */
  .pay-foot { max-width: none; font-size: 0.82rem; padding-top: 0.85rem; margin-top: 0.9rem; }
}

/* Narrower phones: proof stats fall to a 2-up grid, third spans the row. */
@media (max-width: 400px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(3) { grid-column: 1 / -1; }
}

@media (max-width: 360px) {
  .cols h1 { font-size: 1.5rem; }
  .pay-intro h1 { font-size: 1.45rem; }
  .bw-tile { width: 2.35rem; height: 2.35rem; }
  .plan { padding: 0.8rem 0.9rem; }
  .plan .p-price { font-size: 1.5rem; }
}
