/* ScamShield AI: solana layout. Generated file. */

:root {
  --bg: #0a0a0a; --surface: #151515; --surface-2: #111111; --soft: #1d1d1d; --soft-hover: #262626;
  --ink: #ffffff; --ink-hover: #e6e6e6; --ink-2: #a8a8b3; --ink-3: #6e6e78;
  --line: #232323; --line-strong: #333333;
  --accent: #9b6bff; --accent-hover: #ab82ff; --accent-shade: #5a33b3; --accent-ink: #ffffff; --accent-text: #c3a6ff;
  --pop: #2ee6a6; --pop-soft: #13231d; --pop-line: #1f6b52;
  --ok: #2ee6a6; --bad: #ff5c7a; --focus: rgba(155, 107, 255, 0.3); --shadow: rgba(0, 0, 0, 0.6);
  --font-display: "Geist", system-ui, sans-serif; --font-body: "Geist", system-ui, sans-serif; --font-mono: "Geist Mono", ui-monospace, monospace;
  --display-weight: 500; --display-tracking: -0.035em; --display-stretch: 100%;
  --grad: linear-gradient(90deg, #9b6bff, #2ee6a6); --lilac: #cdb8ff; --mint: #7ef0c8;
  color-scheme: dark;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
code { font-family: var(--font-mono); font-size: 0.86em; background: var(--soft); padding: 0.12em 0.4em; border-radius: 6px; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 8px; }
::selection { background: var(--pop); color: var(--ink); }

.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.hand { font-family: "Caveat", cursive; font-weight: 600; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: var(--bg); padding: 8px 14px; border-radius: 999px; z-index: 200; }
.skip:focus { left: 12px; }

h1, h2 { font-family: var(--font-display); font-weight: var(--display-weight); letter-spacing: var(--display-tracking); font-stretch: var(--display-stretch, 100%); line-height: 1.05; }
h3 { font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 10px 20px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none; white-space: nowrap;
  transition: transform 0.12s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-ink { background: var(--ink); color: var(--bg); }
.btn-ink:hover { background: var(--ink-hover); }
.btn-ink.connected { background: var(--surface); color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-strong); font-family: var(--font-mono); font-size: 0.85rem; }
.btn-accent { background: var(--accent); color: var(--accent-ink); box-shadow: 0 2px 0 var(--accent-shade); }
.btn-accent:hover:not(:disabled) { background: var(--accent-hover); }
.btn-ghost { background: var(--surface); color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-strong); }
.btn-ghost:hover { background: var(--soft); }
.btn-lg { min-height: 54px; padding: 14px 28px; font-size: 1rem; }
.btn-sm { min-height: 36px; padding: 6px 14px; font-size: 0.85rem; }
.btn-block { width: 100%; }
.link-arrow { font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--line-strong); padding-bottom: 2px; }
.link-arrow::after { content: " \2192"; }
.link-arrow:hover { border-color: var(--ink); }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: saturate(1.4) blur(10px); -webkit-backdrop-filter: saturate(1.4) blur(10px); }
.nav-inner { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: var(--display-weight); font-stretch: var(--display-stretch, 100%); letter-spacing: var(--display-tracking); font-size: 1.2rem; text-decoration: none; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { text-decoration: none; font-weight: 500; color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.net { display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem; color: var(--ink-2); }
.net i { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }
.menu-btn { display: none; width: 44px; height: 44px; border-radius: 12px; flex-direction: column; gap: 6px; align-items: center; justify-content: center; }
.menu-btn span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }
.nav-links:empty ~ .nav-actions .menu-btn { display: none !important; }

/* ---------- utilities ---------- */
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.logo { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; }
.logo svg { width: 26px; height: 26px; flex-shrink: 0; }
.logo span { white-space: nowrap; }
.footer-links { flex-wrap: wrap; }
.foot-mono { font-family: var(--font-mono); }

/* ---------- tool core ---------- */
.setup-banner { margin-bottom: 20px; padding: 14px 18px; border-radius: 16px; background: var(--pop-soft); color: var(--ink); font-size: 0.95rem; border: 1.5px dashed var(--pop-line); }
.setup-banner code { background: rgba(0, 0, 0, 0.06); }
.field-label { display: block; font-weight: 700; margin-bottom: 10px; }
.field {
  width: 100%; font: inherit; font-size: 1.02rem; color: var(--ink); background: var(--field-bg, var(--bg));
  border: 1.5px solid var(--line-strong); border-radius: 16px; padding: 15px 16px; resize: vertical;
  transition: border-color 0.15s, box-shadow 0.15s;
}
textarea.field { min-height: 128px; }
.field::placeholder { color: var(--ink-3); }
.field:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px var(--focus); }
.field-foot { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; margin: 12px 0 20px; }
.examples { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 8px; }
.examples-label { font-size: 0.85rem; color: var(--ink-3); margin-right: 2px; }
.example-chip { font-size: 0.85rem; padding: 5px 12px; border-radius: 999px; background: var(--soft); color: var(--ink); transition: background-color 0.15s; }
.example-chip:hover { background: var(--soft-hover); }
.char-count { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-3); padding-top: 6px; flex-shrink: 0; }
.fine { margin-top: 12px; font-size: 0.86rem; color: var(--ink-2); text-align: center; }
.fine a { font-weight: 600; margin-left: 4px; }
.live-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 22px; margin-top: 20px; padding-top: 16px; border-top: 1.5px dashed var(--line); font-size: 0.86rem; color: var(--ink-2); }
.live-stats b { color: var(--ink); font-family: var(--font-mono); font-weight: 600; }
.pending { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; padding: 12px 14px; border-radius: 14px; background: var(--pop-soft); color: var(--ink); font-size: 0.9rem; }

.progress { list-style: none; margin-top: 22px; padding-top: 18px; border-top: 1.5px solid var(--line); display: grid; gap: 14px; text-align: left; }
.pstep { display: flex; gap: 14px; opacity: 0.4; transition: opacity 0.2s; }
.pstep strong { display: block; font-size: 0.95rem; }
.pdetail { font-size: 0.86rem; color: var(--ink-2); word-break: break-word; }
.pdetail a { font-weight: 600; }
.pdot { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; border-radius: 50%; border: 2px solid var(--line-strong); position: relative; }
.pstep.active, .pstep.done, .pstep.error { opacity: 1; }
.pstep.active .pdot { border-color: var(--ink); border-right-color: transparent; animation: spin 0.8s linear infinite; }
.pstep.done .pdot { border-color: var(--ok); background: var(--ok); }
.pstep.done .pdot::after { content: ""; position: absolute; left: 6px; top: 3px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.pstep.error .pdot { border-color: var(--bad); background: var(--bad); }
.pstep.error .pdetail { color: var(--bad); }
@keyframes spin { to { transform: rotate(360deg); } }

.me { display: grid; gap: 9px; font-size: 0.92rem; }
.me div { display: flex; justify-content: space-between; gap: 12px; }
.me dt { color: var(--ink-2); }
.me dd { font-weight: 600; font-family: var(--font-mono); font-size: 0.86rem; text-align: right; }
.history { display: grid; gap: 8px; }
.history-item { text-align: left; display: grid; gap: 2px; padding: 10px 12px; border-radius: 12px; background: var(--bg); font-size: 0.88rem; transition: background-color 0.15s; }
.history-item:hover { background: var(--soft); }
.history-item span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.history-item small { color: var(--ink-3); font-size: 0.76rem; }

.result { animation: rise 0.3s ease-out; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.result-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; }
.result-head h3 { margin: 0; }
.result-body { font-size: 1.02rem; }
.result-body h3, .result-body h4, .result-body h5, .result-body h6 { font-weight: 700; font-size: 1.05rem; margin: 18px 0 6px; }
.result-body p { margin: 8px 0; }
.result-body ul, .result-body ol { margin: 8px 0 8px 1.3em; }
.result-body li { margin: 4px 0; }
.result-body hr { border: 0; border-top: 1.5px solid var(--line); margin: 16px 0; }
.result-meta { margin-top: 18px; padding-top: 14px; border-top: 1.5px dashed var(--line); font-size: 0.86rem; color: var(--ink-2); }
.result-meta a { font-weight: 600; }
.disclaimer { margin-top: 6px; font-size: 0.8rem; color: var(--ink-3); }

/* ---------- modal & toast ---------- */
.modal { margin: auto; width: min(420px, calc(100% - 32px)); border: 0; border-radius: 28px; padding: 26px; background: var(--modal-bg, #fff); color: var(--modal-ink, #1a1a1a); box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.35); font-family: var(--font-body); }
.modal::backdrop { background: rgba(10, 10, 20, 0.5); }
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.modal-head h3 { font-size: 1.15rem; }
.dialog-close { width: 36px; height: 36px; border-radius: 50%; opacity: 0.6; }
.dialog-close:hover { opacity: 1; background: rgba(0, 0, 0, 0.06); }
.wallet-list { display: grid; gap: 8px; margin-bottom: 14px; }
.wallet-option { display: flex; align-items: center; gap: 14px; width: 100%; padding: 14px; border-radius: 16px; background: rgba(0, 0, 0, 0.04); text-align: left; transition: background-color 0.15s; }
.wallet-option:hover { background: rgba(0, 0, 0, 0.08); }
.wallet-option img { border-radius: 8px; }
.wallet-option small { display: block; opacity: 0.7; font-size: 0.8rem; }
.wallet-option.danger strong { color: #c62828; }
.wallet-icon-fallback { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; font-weight: 700; background: #1a1a1a; color: #fff; }
.wallet-empty { display: grid; gap: 10px; text-align: center; }
.wallet-empty .btn-ink { background: #1a1a1a; color: #fff; }
.wallet-empty .btn-ghost { background: #fff; color: #1a1a1a; box-shadow: inset 0 0 0 1.5px #d4d4d8; }
.wallet-empty a:not(.btn) { font-weight: 600; }
.modal-foot { font-size: 0.84rem; opacity: 0.7; }
.toasts { position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 100; display: grid; gap: 8px; width: min(420px, calc(100% - 32px)); }
.toast { padding: 13px 18px; border-radius: 16px; background: #1a1a1a; color: #fff; font-size: 0.92rem; box-shadow: 0 16px 40px -16px rgba(0,0,0,0.5); opacity: 0; transform: translateY(8px); transition: opacity 0.25s, transform 0.25s; }
.toast.show { opacity: 1; transform: none; }
.toast-error { background: #c62828; }

/* ---------- shared responsive ---------- */
@media (max-width: 760px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--surface); padding: 6px 20px 14px; box-shadow: 0 12px 24px -16px rgba(0,0,0,0.3); }
  .nav-open .nav-links { display: flex; }
  .nav-links a { padding: 13px 0; border-bottom: 1.5px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .menu-btn { display: flex; }
  .net { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 16px; }
  .brand > span:last-child { display: none; }
  .nav-actions .js-connect { padding: 8px 16px; min-height: 40px; }
  .field-foot { flex-direction: column; }
  .pending { flex-direction: column; align-items: stretch; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}


/* ===== ScamShield: dark, precise, gradient-edged (after solana.com) ===== */
body { background: var(--bg); font-size: 17px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav { background: rgba(10, 10, 10, 0.8); border-bottom: 1px solid var(--line); }
.nav .logo { font-weight: 600; font-size: 1.05rem; letter-spacing: 0.08em; text-transform: uppercase; }
.nav .btn-ink { background: #fff; color: #0a0a0a; padding: 6px 6px 6px 18px; gap: 10px; }
.nav .btn-ink::after { content: "\2192"; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: #0a0a0a; color: #fff; font-size: 0.85rem; }
.nav .btn-ink.connected { background: #1b1b1b; color: #fff; padding: 8px 16px; box-shadow: inset 0 0 0 1px var(--line-strong); }
.nav .btn-ink.connected::after { display: none; }

.sl-hero { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 56px; align-items: center; padding-top: 96px; padding-bottom: 60px; }
.sl-title { font-weight: 500; font-size: clamp(2.8rem, 6.2vw, 4.6rem); letter-spacing: -0.035em; line-height: 1.02; }
.sl-title span { display: block; font-weight: 300; }
.sl-sub { color: var(--ink-2); font-size: 1.2rem; max-width: 30em; margin: 22px 0 34px; }
.sl-capsule { display: flex; align-items: center; gap: 10px; padding: 6px 6px 6px 20px; border-radius: 999px; background: #1a1a1a; box-shadow: inset 0 0 0 1px var(--line-strong); position: relative; }
.sl-capsule::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.2s; pointer-events: none; }
.sl-capsule:focus-within::before { opacity: 1; }
.sl-capsule .field-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.sl-capsule .field { border: 0; background: transparent; padding: 12px 0; font-size: 1.05rem; box-shadow: none; }
.sl-capsule .field:focus { box-shadow: none; }
.sl-capsule #run-btn { width: auto; flex-shrink: 0; background: #fff; color: #0a0a0a; box-shadow: none; padding: 6px 6px 6px 22px; gap: 12px; min-height: 52px; }
.sl-capsule #run-btn::after { content: "\2192"; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: #0a0a0a; color: #fff; }
.sl-capsule #run-btn:hover:not(:disabled) { background: #eee; }
.sl-under { display: flex; justify-content: space-between; gap: 14px; margin-top: 16px; align-items: center; }
.sl-under .example-chip { background: #1a1a1a; color: var(--ink-2); box-shadow: inset 0 0 0 1px var(--line); }
.sl-under .example-chip:hover { color: #fff; background: #222; }
.sl-hero .fine { text-align: left; color: var(--ink-3); }
.sl-hero .progress { border-color: var(--line); }

.sl-verdict { position: relative; }
.sl-vcard { border-radius: 20px; background: var(--lilac); color: #140f24; padding: 26px; transform: rotate(2deg); box-shadow: 0 40px 80px -40px rgba(153, 102, 255, 0.6); }
.sl-vcard small { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; }
.sl-vcard .sl-vrisk { display: flex; align-items: baseline; gap: 10px; margin: 8px 0 14px; }
.sl-vcard .sl-vrisk b { font-size: 3rem; font-weight: 500; letter-spacing: -0.04em; line-height: 1; }
.sl-vcard .sl-vrisk span { font-family: var(--font-mono); font-size: 0.8rem; padding: 4px 10px; border-radius: 999px; background: #140f24; color: var(--lilac); }
.sl-vcard ul { list-style: none; display: grid; gap: 8px; font-size: 0.95rem; }
.sl-vcard li { display: flex; gap: 10px; }
.sl-vcard li::before { content: "\2715"; font-size: 0.8rem; margin-top: 3px; }
.sl-vmini { position: absolute; left: -30px; bottom: -34px; border-radius: 16px; background: #1a1a1a; box-shadow: inset 0 0 0 1px var(--line-strong); padding: 14px 18px; font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink-2); transform: rotate(-3deg); }
.sl-vmini b { color: var(--mint); font-weight: 500; }

.sl-report:has(> .result[hidden]) { display: none; }
.sl-report { padding-bottom: 30px; }
.sl-report .result { border-radius: 24px; background: #151515; padding: 30px; box-shadow: inset 0 0 0 1px var(--line-strong); position: relative; overflow: hidden; }
.sl-report .result::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--grad); }
.sl-report .result-head h3 { font-weight: 500; font-size: 1.4rem; letter-spacing: -0.02em; }
.sl-report .result-body > p:first-child strong { display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--lilac); color: #140f24; font-family: var(--font-mono); font-weight: 500; }
.sl-report .result-body h4 { font-family: var(--font-mono); font-weight: 500; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); margin-top: 22px; }
.sl-report .btn-ghost { background: #222; color: #fff; box-shadow: none; }
.sl-report .result-meta { border-color: var(--line); }

.sl-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-top: 40px; }
.sl-stat { border-radius: 22px; padding: 26px; display: grid; gap: 4px; min-height: 190px; align-content: space-between; }
.sl-stat span { font-size: 0.95rem; }
.sl-stat b { font-size: clamp(2.4rem, 4.6vw, 3.4rem); font-weight: 500; letter-spacing: -0.04em; line-height: 1; }
.sl-stat small { font-size: 0.85rem; opacity: 0.75; }
.sl-stat-a { background: var(--lilac); color: #140f24; }
.sl-stat-b { background: var(--mint); color: #062018; }
.sl-stat-c { background: #1a1a1a; box-shadow: inset 0 0 0 1px var(--line-strong); }

.sl-mine { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.sl-mine:not(:has(#me-box:not([hidden]))) { display: none; }
.sl-panel:has(> [hidden]:only-child) { display: none; }
.sl-panel { border-radius: 22px; padding: 22px; background: #151515; box-shadow: inset 0 0 0 1px var(--line); }
.sl-panel h3 { font-weight: 500; margin-bottom: 12px; }
.sl-panel .history-item { background: #1d1d1d; }

.sl-list, .sl-steps-sec, .sl-faq { padding-top: 110px; }
.sl-list h2, .sl-steps-sec h2, .sl-faq h2 { font-weight: 500; font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -0.035em; }
.sl-list-sub { color: var(--ink-2); max-width: 36em; margin: 10px 0 30px; }
.sl-rows { display: grid; gap: 1px; background: var(--line); border-radius: 22px; overflow: hidden; box-shadow: 0 0 0 1px var(--line); }
.sl-row { display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; gap: 18px; align-items: center; padding: 20px 24px; background: var(--bg); transition: background-color 0.15s; }
.sl-row:hover { background: #161616; }
.sl-badge { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-mono); font-size: 0.85rem; color: #0a0a0a; }
.sl-row strong { font-weight: 500; font-size: 1.05rem; }
.sl-row p { color: var(--ink-2); font-size: 0.95rem; }
.sl-seen { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-3); white-space: nowrap; }

.sl-steps { list-style: none; counter-reset: s; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.sl-steps li { counter-increment: s; border-radius: 22px; padding: 26px; background: #151515; box-shadow: inset 0 0 0 1px var(--line); }
.sl-steps li::before { content: counter(s); display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--grad); color: #0a0a0a; font-weight: 600; margin-bottom: 26px; }
.sl-steps h3 { font-weight: 500; font-size: 1.2rem; margin-bottom: 6px; }
.sl-steps p { color: var(--ink-2); }

.sl-faq { max-width: 860px; padding-bottom: 110px; }
.sl-faq-list { margin-top: 20px; }
.sl-faq-list details { border-bottom: 1px solid var(--line); padding: 22px 0; }
.sl-faq-list summary { cursor: pointer; list-style: none; font-size: 1.1rem; font-weight: 500; display: flex; justify-content: space-between; gap: 16px; }
.sl-faq-list summary::-webkit-details-marker { display: none; }
.sl-faq-list summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--ink-3); }
.sl-faq-list details[open] summary::after { content: "\2212"; }
.sl-faq-list details p { margin-top: 10px; color: var(--ink-2); }

.sl-foot { border-top: 1px solid var(--line); padding: 44px 0 56px; color: var(--ink-3); font-size: 0.9rem; }
.sl-foot-inner { display: flex; flex-wrap: wrap; gap: 20px 40px; justify-content: space-between; }
.sl-foot-inner > div:first-child { max-width: 420px; }
.sl-foot .logo { font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; }
.sl-foot .footer-links { display: flex; gap: 22px; }
.sl-foot a { color: var(--ink-2); text-decoration: none; }

@media (max-width: 900px) {
  .sl-hero { grid-template-columns: 1fr; padding-top: 60px; }
  .sl-verdict { max-width: 420px; margin: 20px auto 30px; }
  .sl-stats, .sl-mine, .sl-steps { grid-template-columns: 1fr; }
  .sl-stat { min-height: 0; }
}
@media (max-width: 560px) {
  .sl-capsule { flex-direction: column; align-items: stretch; border-radius: 22px; padding: 10px; }
  .sl-capsule .field { padding: 10px; }
  .sl-capsule #run-btn { width: 100%; justify-content: space-between; }
  .sl-under { flex-direction: column; align-items: flex-start; }
  .sl-vmini { left: 0; }
  .sl-row { grid-template-columns: 40px minmax(0, 1fr); }
  .sl-badge { width: 40px; height: 40px; }
  .sl-seen { grid-column: 2; }
}


