/* Scratch Code Verify — front-end form + result. Neutral tokens so it fits most themes;
   falls back gracefully if the theme defines --green / --ink / etc. */
.scv-wrap{--scv-green:var(--green,#1DA074);--scv-green-d:var(--green-d,#178460);--scv-red:var(--red,#D62A28);--scv-ink:var(--ink,#16191F);--scv-muted:var(--muted,#6B7280);--scv-line:var(--line,#E6E8EB);font-family:var(--font-jost,inherit);color:var(--scv-ink);max-width:560px;margin:0 auto;}

.scv-card{background:#fff;border:1px solid var(--scv-line);border-radius:16px;padding:28px 28px 30px;}
.scv-title{font-weight:800;font-size:22px;margin:0 0 8px;color:var(--scv-ink);}
.scv-intro{font-size:15px;color:var(--scv-muted);line-height:1.55;margin:0 0 22px;}

.scv-errors{background:#fdecec;border:1px solid #f6c9c9;border-radius:12px;padding:12px 16px;margin:0 0 20px;}
.scv-errors p{margin:0;font-size:14px;color:#b3261e;line-height:1.45;}

.scv-field{margin-bottom:16px;}
.scv-field label{display:block;font-size:14px;font-weight:600;margin:0 0 8px;color:var(--scv-ink);}
.scv-field input{width:100%;box-sizing:border-box;height:52px;border:1px solid var(--scv-line);border-radius:11px;padding:0 15px;font-family:inherit;font-size:15px;color:var(--scv-ink);background:#fff;}
.scv-field input:focus{outline:none;border-color:var(--scv-green);}
#scv-code{letter-spacing:.08em;text-transform:uppercase;font-weight:600;}

.scv-hp{position:absolute!important;left:-9999px!important;top:-9999px!important;width:1px;height:1px;overflow:hidden;}
.scv-turnstile{margin:0 0 16px;}

.scv-btn{display:block;width:100%;height:54px;border:0;border-radius:11px;background:var(--scv-green);color:#fff;font-family:inherit;font-weight:800;font-size:16px;cursor:pointer;transition:background .2s;}
.scv-btn:hover{background:var(--scv-green-d);}

/* Result banner */
.scv-result{display:flex;align-items:flex-start;gap:14px;border:1px solid var(--scv-line);border-radius:14px;padding:18px 20px;margin:0 0 20px;}
.scv-result-ico{flex-shrink:0;}
.scv-result-c{display:flex;flex-direction:column;gap:4px;}
.scv-result-h{font-weight:800;font-size:17px;}
.scv-result-p{font-size:14.5px;line-height:1.55;color:var(--scv-muted);}
.scv-result.is-ok{background:#eef7f2;border-color:#c7e6d6;}
.scv-result.is-ok .scv-result-ico,.scv-result.is-ok .scv-result-h{color:var(--scv-green-d);}
.scv-result.is-warn{background:#fff7e8;border-color:#f3dca6;}
.scv-result.is-warn .scv-result-ico,.scv-result.is-warn .scv-result-h{color:#9a6a00;}
.scv-result.is-bad{background:#fdecec;border-color:#f6c9c9;}
.scv-result.is-bad .scv-result-ico,.scv-result.is-bad .scv-result-h{color:var(--scv-red);}

@media(max-width:560px){.scv-card{padding:22px 20px 24px;}}
