:root {
  --paper: #f3ead4;
  --ink: #171512;
  --red: #f04a24;
  --yellow: #ffc928;
  --line: 3px solid var(--ink);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "IBM Plex Mono", monospace; overflow-x: hidden; overflow-x: clip; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
.noise { position: fixed; inset: 0; pointer-events: none; opacity: .08; z-index: 20; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E"); }
.topbar { min-height: 78px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 4vw; border-bottom: var(--line); background: var(--paper); position: relative; z-index: 10; }
.brand { display: flex; align-items: center; gap: 12px; font-family: "Archivo Black", sans-serif; font-size: 1.25rem; letter-spacing: -.03em; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; background: var(--red); border: 2px solid var(--ink); border-radius: 50%; transform: rotate(-7deg); }
nav { display: flex; gap: clamp(16px, 3vw, 44px); text-transform: uppercase; font-size: .84rem; font-weight: 600; }
nav a { padding: 10px 0; border-bottom: 2px solid transparent; }
nav a:hover, nav a:focus-visible { border-color: var(--ink); }
.sound-toggle { justify-self: end; width: 48px; height: 38px; border: 2px solid var(--ink); background: var(--yellow); font-weight: 700; transform: rotate(3deg); cursor: pointer; }
.hero { min-height: 720px; display: grid; grid-template-columns: 1.02fr .98fr; border-bottom: var(--line); }
.hero-copy { padding: clamp(48px, 7vw, 110px) 4vw 60px; display: flex; flex-direction: column; align-items: flex-start; }
.eyebrow { font-size: .78rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.eyebrow span { background: var(--ink); color: var(--paper); padding: 5px 8px; }
h1, h2, h3 { font-family: "Archivo Black", sans-serif; margin: 0; line-height: .88; letter-spacing: -.055em; text-transform: uppercase; }
h1 { font-size: clamp(4.4rem, 9.4vw, 10rem); margin-top: 36px; }
h1 em { color: var(--red); font-style: normal; -webkit-text-stroke: 2px var(--ink); text-shadow: 5px 5px 0 var(--ink); }
.hero-sub { margin: 22px 0 0; font-family: "Archivo Black", sans-serif; font-size: clamp(1.35rem, 2.3vw, 2.3rem); text-transform: uppercase; }
.intro { max-width: 590px; font-size: clamp(1rem, 1.25vw, 1.22rem); line-height: 1.6; margin: 30px 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; padding: 0 22px; border: 2px solid var(--ink); display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; font-weight: 600; cursor: pointer; box-shadow: 4px 4px 0 var(--ink); transition: transform .16s, box-shadow .16s; }
.button:hover, .button:focus-visible { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.button-dark { background: var(--ink); color: var(--paper); }
.button-ghost { background: transparent; }
.status { margin-top: auto; padding-top: 50px; font-size: .76rem; text-transform: uppercase; }
.status span { display: inline-block; width: 10px; height: 10px; background: var(--yellow); border: 1px solid var(--ink); border-radius: 50%; margin-right: 8px; }
.hero-visual { min-height: 720px; position: relative; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; background: var(--red); border-left: var(--line); }
.hero-visual img { position: relative; z-index: 2; width: min(87%, 680px); max-height: 89%; object-fit: contain; object-position: bottom; filter: drop-shadow(14px 15px 0 rgba(23,21,18,.95)); transform: rotate(1deg); }
.sunburst { position: absolute; width: 120%; aspect-ratio: 1; background: repeating-conic-gradient(var(--yellow) 0 9deg, transparent 9deg 18deg); border-radius: 50%; opacity: .92; animation: spin 55s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.sticker { position: absolute; z-index: 4; display: grid; place-items: center; width: 114px; height: 114px; border: 3px solid var(--ink); border-radius: 50%; background: var(--paper); font-family: "Archivo Black", sans-serif; text-align: center; line-height: .95; box-shadow: 5px 5px 0 var(--ink); }
.sticker-one { top: 9%; left: 7%; transform: rotate(-12deg); }
.sticker-two { right: 7%; top: 20%; background: var(--yellow); transform: rotate(10deg); }
.scribble { position: absolute; z-index: 5; bottom: 20px; left: 28px; right: 28px; margin: 0; padding: 10px; background: var(--paper); border: 2px solid var(--ink); text-align: center; font-weight: 600; transform: rotate(-1deg); }
.ticker { display: flex; width: 100%; max-width: 100%; background: var(--ink); color: var(--paper); font-family: "Archivo Black", sans-serif; font-size: 1.08rem; padding: 14px 0; overflow: hidden; }
.ticker div { flex: none; white-space: nowrap; animation: ticker 25s linear infinite; }
.ticker b { color: var(--yellow); margin: 0 18px; }
@keyframes ticker { to { transform: translateX(-100%); } }
section:not(.hero) { padding: clamp(70px, 9vw, 140px) 4vw; border-bottom: var(--line); }
.section-label { font-size: .8rem; font-weight: 600; margin-bottom: 55px; padding-bottom: 12px; border-bottom: 1px solid var(--ink); }
.workshop { background: var(--paper); }
.workshop-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 7vw; align-items: end; margin-bottom: 64px; }
.workshop h2 { font-size: clamp(3.6rem, 8.2vw, 9rem); }
.workshop h2 em { color: var(--red); font-style: normal; -webkit-text-stroke: 2px var(--ink); }
.workshop-head > p { font-size: 1.05rem; line-height: 1.65; max-width: 480px; }
.meme-studio { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(420px, 1.22fr); border: var(--line); background: var(--yellow); box-shadow: 10px 10px 0 var(--ink); }
.meme-controls { padding: clamp(24px, 4vw, 54px); border-right: var(--line); background: var(--paper); }
.meme-controls fieldset { padding: 0; margin: 0 0 30px; border: 0; }
.meme-controls legend, .meme-controls label { display: block; margin-bottom: 12px; font-family: "Archivo Black", sans-serif; font-size: .9rem; text-transform: uppercase; }
.prompt-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.prompt-chip { padding: 9px 11px; border: 2px solid var(--ink); background: transparent; font-size: .75rem; font-weight: 600; cursor: pointer; }
.prompt-chip:hover, .prompt-chip:focus-visible, .prompt-chip.is-active { background: var(--yellow); box-shadow: 3px 3px 0 var(--ink); }
.meme-controls textarea { width: 100%; resize: vertical; min-height: 74px; border: 2px solid var(--ink); background: #fffaf0; color: var(--ink); padding: 13px; font: 600 1rem/1.4 "IBM Plex Mono", monospace; outline: 0; }
.meme-controls textarea:focus { box-shadow: 4px 4px 0 var(--red); }
.field-meta { display: flex; justify-content: space-between; margin: 6px 0 26px; font-size: .7rem; opacity: .68; }
.palette { display: flex; gap: 12px; }
.color-swatch { width: 42px; height: 42px; border: 2px solid var(--ink); cursor: pointer; }
.color-swatch[data-theme="red"] { background: var(--red); }
.color-swatch[data-theme="yellow"] { background: var(--yellow); }
.color-swatch[data-theme="ink"] { background: var(--ink); }
.color-swatch.is-active { outline: 3px solid var(--ink); outline-offset: 3px; transform: rotate(-5deg); }
.studio-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.meme-preview { position: relative; padding: clamp(30px, 5vw, 76px); display: flex; flex-direction: column; justify-content: center; align-items: center; background: var(--yellow); overflow: hidden; }
.meme-preview::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(var(--ink) 1.2px, transparent 1.2px); background-size: 14px 14px; opacity: .12; }
.meme-preview canvas { position: relative; z-index: 1; display: block; width: min(100%, 680px); height: auto; border: var(--line); box-shadow: 10px 10px 0 var(--ink); background: var(--red); }
.meme-preview > p { position: relative; z-index: 1; align-self: flex-end; margin: 20px 0 0; font-size: .72rem; font-weight: 600; }
.preview-tape { position: absolute; z-index: 3; top: 35px; right: -45px; padding: 10px 60px; background: var(--ink); color: var(--paper); font-size: .74rem; font-weight: 600; transform: rotate(8deg); }
.manifesto-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; }
.manifesto h2, .launch h2, .community h2 { font-size: clamp(3.2rem, 7vw, 8.1rem); }
.manifesto p { font-size: 1.08rem; line-height: 1.72; }
.manifesto .lead { font-family: "Archivo Black", sans-serif; font-size: clamp(1.45rem, 2vw, 2.1rem); line-height: 1.1; text-transform: uppercase; }
.rules { background: var(--yellow); }
.rules > h2 { font-size: clamp(3.8rem, 8vw, 9rem); margin-bottom: 65px; }
.rules > h2 span { color: var(--red); -webkit-text-stroke: 2px var(--ink); }
.rule-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: var(--line); }
.rule-grid article { min-height: 270px; padding: 24px; background: var(--paper); border-right: var(--line); }
.rule-grid article:last-child { border-right: 0; }
.rule-grid article > span { font-size: .75rem; }
.rule-grid h3 { font-size: clamp(1.45rem, 2vw, 2rem); margin: 60px 0 18px; }
.rule-grid p { font-size: .9rem; line-height: 1.55; }
.launch { background: var(--ink); color: var(--paper); }
.launch .section-label { border-color: var(--paper); }
.launch-head { display: grid; grid-template-columns: 1.2fr .8fr; gap: 6vw; align-items: end; }
.launch-head > p { max-width: 430px; font-size: 1.15rem; line-height: 1.6; }
.timeline { list-style: none; margin: 80px 0 0; padding: 0; border-top: 1px solid var(--paper); }
.timeline li { display: grid; grid-template-columns: 140px 1fr; gap: 30px; padding: 28px 0; border-bottom: 1px solid rgba(243,234,212,.45); }
.timeline .day { color: var(--yellow); font-weight: 600; }
.timeline strong { font-family: "Archivo Black", sans-serif; font-size: clamp(1.35rem, 2.2vw, 2.2rem); text-transform: uppercase; }
.timeline p { margin: 8px 0 0; color: rgba(243,234,212,.76); line-height: 1.5; }
.token-card { display: grid; grid-template-columns: 1.3fr .7fr; gap: 8vw; background: var(--red); }
.token-card h2 { font-size: clamp(2.8rem, 5.6vw, 6.5rem); margin-top: 30px; }
.token-note { align-self: end; padding: 28px; border: var(--line); background: var(--paper); box-shadow: 8px 8px 0 var(--ink); transform: rotate(1deg); }
.token-note p { line-height: 1.6; }
.token-note span { display: inline-block; margin-top: 20px; padding: 6px 9px; background: var(--yellow); border: 2px solid var(--ink); font-size: .78rem; font-weight: 600; }
.community { text-align: center; }
.community h2 { max-width: 1100px; margin: 30px auto 55px; }
.socials { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.socials button { min-height: 54px; padding: 0 24px; border: var(--line); background: transparent; opacity: .58; }
footer { display: grid; grid-template-columns: .6fr 1.4fr auto; align-items: center; gap: 6vw; padding: 42px 4vw; background: var(--ink); color: var(--paper); font-size: .72rem; line-height: 1.5; }
.footer-brand { font-size: 1rem; }
.footer-brand .brand-mark { color: var(--ink); }
.toast { position: fixed; right: 24px; bottom: 24px; z-index: 30; padding: 14px 18px; background: var(--yellow); border: var(--line); box-shadow: 4px 4px 0 var(--ink); font-weight: 600; transform: translateY(160%); transition: transform .25s; }
.toast.show { transform: translateY(0); }

@media (max-width: 900px) {
  .topbar { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { border-left: 0; border-top: var(--line); min-height: 590px; }
  .manifesto-grid, .launch-head, .token-card, .workshop-head { grid-template-columns: 1fr; }
  .meme-studio { grid-template-columns: 1fr; }
  .meme-controls { border-right: 0; border-bottom: var(--line); }
  .rule-grid { grid-template-columns: 1fr 1fr; }
  .rule-grid article:nth-child(2) { border-right: 0; }
  .rule-grid article:nth-child(-n+2) { border-bottom: var(--line); }
  footer { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .topbar { min-height: 66px; padding: 0 18px; }
  .brand { font-size: 1rem; }
  .brand-mark { width: 36px; height: 36px; }
  .hero-copy, section:not(.hero) { padding-left: 20px; padding-right: 20px; }
  h1 { font-size: clamp(2.8rem, 14vw, 6.2rem); }
  .hero-sub { font-size: 1.2rem; }
  .hero-visual { min-height: 490px; }
  .hero-visual img { width: 96%; }
  .sticker { width: 88px; height: 88px; font-size: .74rem; }
  .rule-grid { grid-template-columns: 1fr; }
  .rule-grid article { border-right: 0; border-bottom: var(--line); min-height: 220px; }
  .rule-grid article:last-child { border-bottom: 0; }
  .timeline li { grid-template-columns: 1fr; gap: 12px; }
  .button { width: 100%; justify-content: center; }
  .meme-preview { padding: 46px 20px 32px; }
  .preview-tape { top: 16px; right: -64px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sunburst, .ticker div { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* ---------- Faro do Zé (veredito) ---------- */
.faro { background: var(--paper); }
.faro h2 { font-size: clamp(3.6rem, 8.2vw, 9rem); }
.faro h2 em { color: var(--red); font-style: normal; -webkit-text-stroke: 2px var(--ink); }
.faro-box { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(360px, 1.2fr); border: var(--line); background: var(--yellow); box-shadow: 10px 10px 0 var(--ink); }
.faro-form { padding: clamp(24px, 4vw, 48px); border-right: var(--line); background: var(--paper); display: flex; flex-direction: column; gap: 14px; }
.faro-form label { font-family: "Archivo Black", sans-serif; font-size: .9rem; text-transform: uppercase; }
.faro-form input { width: 100%; border: 2px solid var(--ink); background: #fffaf0; color: var(--ink); padding: 14px; font: 600 .95rem/1.3 "IBM Plex Mono", monospace; outline: 0; }
.faro-form input:focus { box-shadow: 4px 4px 0 var(--red); }
.faro-form .button { align-self: flex-start; }
.faro-examples { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .75rem; }
.faro-legend { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 10px; font-size: .8rem; line-height: 1.45; }
.tag { display: inline-block; padding: 3px 7px; border: 2px solid var(--ink); font-family: "Archivo Black", sans-serif; font-size: .72rem; font-weight: 400; letter-spacing: .02em; margin-right: 4px; white-space: nowrap; }
.tag-zoado { background: var(--red); color: var(--paper); }
.tag-alerta { background: var(--yellow); }
.tag-limpo { background: var(--paper); }
.faro-result { position: relative; padding: clamp(24px, 4vw, 48px); min-height: 380px; background: var(--yellow); }
.faro-result::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(var(--ink) 1.2px, transparent 1.2px); background-size: 14px 14px; opacity: .1; pointer-events: none; }
.faro-empty, .faro-loading, .faro-error { position: relative; margin: 0; font-size: 1rem; line-height: 1.6; }
.faro-error { padding: 16px; background: var(--paper); border: 2px solid var(--ink); }
.verdict { position: relative; background: var(--paper); border: var(--line); box-shadow: 8px 8px 0 var(--ink); }
.verdict-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 16px; padding: 18px 20px; border-bottom: var(--line); }
.verdict-zoado .verdict-head { background: var(--red); color: var(--paper); }
.verdict-alerta .verdict-head { background: var(--yellow); }
.verdict-badge { font-family: "Archivo Black", sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); line-height: .9; text-transform: uppercase; letter-spacing: -.04em; }
.verdict-name { font-weight: 600; overflow-wrap: anywhere; }
.verdict-mint { font-size: .72rem; opacity: .8; }
.verdict-body { padding: 18px 20px; }
.verdict-body ul { list-style: none; margin: 0 0 14px; padding: 0; display: grid; gap: 10px; }
.verdict-body li { position: relative; padding-left: 26px; font-size: .88rem; line-height: 1.5; }
.verdict-body li::before { position: absolute; left: 0; top: 1px; width: 16px; height: 16px; border: 2px solid var(--ink); content: ""; }
.verdict-body li.red::before { background: var(--red); border-radius: 50%; }
.verdict-body li.yellow::before { background: var(--yellow); }
.verdict-body li.white::before { background: var(--paper); }
.verdict-body li.note { padding-left: 26px; opacity: .8; font-size: .8rem; }
.verdict-body li.note::before { content: "i"; border: 0; width: auto; height: auto; font-weight: 700; }
.verdict-data { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0; margin: 0; border-top: 1px solid var(--ink); }
.verdict-data div { padding: 10px 12px 10px 0; border-bottom: 1px dashed rgba(23,21,18,.35); }
.verdict-data dt { font-size: .66rem; text-transform: uppercase; opacity: .7; }
.verdict-data dd { margin: 2px 0 0; font-weight: 600; font-size: .9rem; }
.verdict-foot { margin: 14px 0 0; font-size: .72rem; opacity: .75; line-height: 1.45; }
.faro-note { max-width: 860px; margin: 40px 0 0; font-size: .85rem; line-height: 1.6; }

/* ---------- A Prova ---------- */
.prova { background: var(--paper); }
.prova h2 { font-size: clamp(3.2rem, 7vw, 8.1rem); }
.prova h2 span { color: var(--red); -webkit-text-stroke: 2px var(--ink); }
.prova .launch-head > p { max-width: 460px; font-size: 1.02rem; line-height: 1.6; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 70px 0 40px; border: var(--line); box-shadow: 10px 10px 0 var(--ink); }
.stat { padding: 26px 22px; background: var(--paper); border-right: var(--line); display: flex; flex-direction: column; gap: 14px; }
.stat:last-child { border-right: 0; }
.stat b { font-family: "Archivo Black", sans-serif; font-weight: 400; font-size: clamp(2.6rem, 4.6vw, 4.6rem); line-height: .9; letter-spacing: -.05em; }
.stat span { font-size: .85rem; line-height: 1.45; }
.stat em { font-style: normal; font-weight: 600; }
.stat-red { background: var(--red); color: var(--paper); }
.stat-yellow { background: var(--yellow); }
.prova-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.prova-card { padding: 24px; border: var(--line); background: #fffaf0; }
.prova-card h3 { font-size: clamp(1.4rem, 2.2vw, 2rem); margin-bottom: 14px; }
.prova-card p { font-size: .92rem; line-height: 1.6; }
.prova-table { width: 100%; border-collapse: collapse; font-size: .85rem; margin-top: 10px; }
.prova-table th, .prova-table td { text-align: left; padding: 8px 10px 8px 0; border-bottom: 1px solid rgba(23,21,18,.3); }
.prova-table th { font-size: .7rem; text-transform: uppercase; }
.prova-table caption { text-align: left; font-size: .75rem; padding-bottom: 8px; }
.prova-list { margin-top: 24px; }
.prova-list ol { margin: 0; padding: 0; list-style: none; display: grid; gap: 0; }
.prova-list li { display: grid; grid-template-columns: minmax(0, 1.4fr) auto auto auto; gap: 16px; align-items: center; padding: 10px 0; border-bottom: 1px dashed rgba(23,21,18,.35); font-size: .85rem; }
.prova-list li strong { overflow-wrap: anywhere; }
.prova-list li a { text-decoration: underline; }
.prova-metodo { margin-top: 24px; font-size: .82rem; line-height: 1.6; }
.prova-metodo summary { cursor: pointer; font-weight: 600; text-transform: uppercase; }

/* ---------- Token e planos ---------- */
.facts { margin: 40px 0 0; display: grid; gap: 0; border-top: 2px solid var(--ink); }
.facts div { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding: 12px 0; border-bottom: 2px solid var(--ink); }
.facts dt { font-family: "Archivo Black", sans-serif; text-transform: uppercase; font-size: .9rem; }
.facts dd { margin: 0; font-size: .92rem; line-height: 1.5; }
.facts a { text-decoration: underline; }
.dev-table { margin-top: 30px; background: var(--paper); border: 2px solid var(--ink); }
.dev-table th, .dev-table td { padding: 8px 12px; }
.dev-table caption { padding: 0 0 8px; font-weight: 600; }
.token-note p + p { margin-top: 12px; }
.planos { background: var(--yellow); }
.planos h2 { font-size: clamp(3.4rem, 7.4vw, 8.4rem); margin-bottom: 60px; }
.planos h2 em { color: var(--red); font-style: normal; -webkit-text-stroke: 2px var(--ink); }
.plan-grid { display: grid; grid-template-columns: 1fr 1.3fr; border: var(--line); box-shadow: 10px 10px 0 var(--ink); }
.plan { padding: 30px; background: var(--paper); }
.plan + .plan { border-left: var(--line); }
.plan-main { background: var(--ink); color: var(--paper); }
.plan-main .eyebrow span { background: var(--red); }
.plan h3 { font-size: clamp(2rem, 3.4vw, 3.2rem); margin: 22px 0 20px; }
.plan ul { margin: 0; padding-left: 18px; display: grid; gap: 10px; font-size: .95rem; line-height: 1.5; }
.planos-note { max-width: 900px; margin: 40px 0 0; font-size: .9rem; line-height: 1.65; }

@media (max-width: 900px) {
  .faro-box, .prova-grid, .plan-grid { grid-template-columns: 1fr; }
  .faro-form { border-right: 0; border-bottom: var(--line); }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: var(--line); }
  .plan + .plan { border-left: 0; border-top: var(--line); }
  .prova-list li { grid-template-columns: 1fr auto; }
}

@media (max-width: 560px) {
  .stat-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: var(--line); }
  .stat:last-child { border-bottom: 0; }
  .facts div { grid-template-columns: 1fr; gap: 4px; }
  .faro-result { min-height: 260px; padding: 20px; }
}

/* ISCA: a fábrica (sobe na 1ª hora, dono com ~79%) */
.tag-isca { background: var(--ink); color: var(--yellow); }
.verdict-isca .verdict-head { background: var(--ink); color: var(--yellow); }

/* sound toggle cabe "WOOF" */
.sound-toggle { width: auto; min-width: 48px; padding: 0 8px; }

/* ---------- RUGDOG: busca no topo, 8 checagens, links aceitos, exemplo ---------- */
.hero-form { display: flex; flex-wrap: wrap; gap: 10px; width: 100%; max-width: 620px; }
.hero-form input { flex: 1 1 260px; min-width: 0; min-height: 52px; border: 2px solid var(--ink); background: #fffaf0; color: var(--ink); padding: 0 14px; font: 600 .95rem/1.3 "IBM Plex Mono", monospace; outline: 0; }
.hero-form input:focus { box-shadow: 4px 4px 0 var(--red); }
.hero-small { margin: 12px 0 0; max-width: 620px; font-size: .78rem; line-height: 1.5; opacity: .8; }
.hero-copy .hero-actions { margin-top: 16px; }
.checks { background: var(--yellow); }
.checks h2 { font-size: clamp(3.2rem, 7vw, 8.1rem); }
.checks h2 span { color: var(--red); -webkit-text-stroke: 2px var(--ink); }
.check-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 60px; border: var(--line); box-shadow: 10px 10px 0 var(--ink); }
.check { min-height: 210px; padding: 22px; background: var(--paper); border-right: var(--line); border-bottom: var(--line); }
.check:nth-child(4n) { border-right: 0; }
.check:nth-last-child(-n+4) { border-bottom: 0; }
.check span { font-size: .72rem; font-weight: 600; letter-spacing: .04em; }
.check h3 { font-size: clamp(1.2rem, 1.7vw, 1.6rem); margin: 26px 0 12px; }
.check p { margin: 0; font-size: .86rem; line-height: 1.5; }
.check-star { background: var(--ink); color: var(--paper); }
.check-star span { color: var(--yellow); }
.link-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 34px; font-size: .8rem; font-weight: 600; }
.link-row b { padding: 7px 10px; border: 2px solid var(--ink); background: var(--paper); font-weight: 600; }
.sample-label { position: relative; display: inline-block; margin: 0 0 12px; padding: 5px 9px; background: var(--ink); color: var(--yellow); font-size: .72rem; font-weight: 600; letter-spacing: .04em; }
@media (max-width: 900px) {
  .check-grid { grid-template-columns: 1fr 1fr; }
  .check:nth-child(4n) { border-right: var(--line); }
  .check:nth-child(2n) { border-right: 0; }
  .check:nth-last-child(-n+4) { border-bottom: var(--line); }
  .check:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 560px) {
  h1 { font-size: clamp(2.6rem, 12.5vw, 6.2rem); }
  .check-grid { grid-template-columns: 1fr; }
  .check { min-height: 0; border-right: 0 !important; border-bottom: var(--line) !important; }
  .check:last-child { border-bottom: 0 !important; }
  .hero-form .button { width: 100%; justify-content: center; }
}

/* ---- account, bones, Watch (Sep 11) ---- */
.top-actions { justify-self: end; display: flex; gap: 10px; align-items: center; }
.top-actions .sound-toggle { justify-self: auto; }
.signin-top { height: 38px; padding: 0 12px; border: 2px solid var(--ink); background: var(--ink); color: var(--paper); font: 700 .8rem "IBM Plex Mono", monospace; text-transform: uppercase; cursor: pointer; box-shadow: 3px 3px 0 var(--red); white-space: nowrap; }
.signin-top:hover, .signin-top:focus-visible { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--red); }
.planos-lead { max-width: 780px; font-size: 1.05rem; line-height: 1.55; margin: 0 0 34px; }
.plan-grid.plan-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.account { background: var(--yellow); }
.account-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 30px; align-items: end; margin-bottom: 40px; }
.account-head h2 { margin: 0; font-family: "Archivo Black", sans-serif; font-size: clamp(2.6rem, 7vw, 5.6rem); line-height: .9; }
.account-head h2 em { color: var(--red); font-style: normal; -webkit-text-stroke: 2px var(--ink); }
.account-head p { margin: 0; line-height: 1.55; font-weight: 500; }
.account-panel { border: var(--line); background: var(--paper); box-shadow: 10px 10px 0 var(--ink); padding: clamp(20px, 4vw, 44px); max-width: 1000px; }
.acc-title, .acc-block h3 { font-family: "Archivo Black", sans-serif; font-size: 1.25rem; margin: 0 0 10px; }
.acc-msg { margin: 0 0 18px; padding: 10px 12px; border: 2px solid var(--ink); background: #fffaf0; font-weight: 600; }
.acc-msg.err { border-color: var(--red); box-shadow: 4px 4px 0 var(--red); }
.acc-sub { font-size: .85rem; margin: 4px 0; opacity: .82; overflow-wrap: anywhere; }
.acc-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; padding-bottom: 20px; border-bottom: 2px solid var(--ink); }
.bones-big { font-family: "Archivo Black", sans-serif; font-size: clamp(2.4rem, 7vw, 4rem); margin: 4px 0; line-height: 1; }
.acc-block { padding: 22px 0; border-bottom: 1px dashed var(--ink); }
.acc-block:last-child { border-bottom: 0; padding-bottom: 0; }
.watch-form { display: flex; gap: 10px; margin: 14px 0; flex-wrap: wrap; }
.watch-form input { flex: 1 1 240px; min-width: 0; min-height: 52px; border: 2px solid var(--ink); background: #fffaf0; color: var(--ink); padding: 0 12px; font: 600 .95rem "IBM Plex Mono", monospace; }
.watch-list, .alert-list, .ledger-list, .acc-points { list-style: none; padding: 0; margin: 10px 0 0; display: grid; gap: 8px; }
.acc-points { margin-bottom: 22px; }
.acc-points li::before { content: "🦴 "; }
.watch-item { display: flex; justify-content: space-between; gap: 12px; align-items: center; padding: 10px 12px; border: 2px solid var(--ink); background: #fffaf0; overflow-wrap: anywhere; }
.watch-item.ended { opacity: .55; }
.link-btn { background: none; border: 0; padding: 4px; text-decoration: underline; font: 700 .85rem "IBM Plex Mono", monospace; color: var(--ink); cursor: pointer; }
.alert-list li, .ledger-list li { font-size: .9rem; overflow-wrap: anywhere; }
.ledger-list .plus { color: #1d6b35; }
.ledger-list .minus { color: #a3241b; }
.tg-code { font-weight: 700; background: var(--ink); color: var(--paper); padding: 2px 6px; user-select: all; }
.acc-empty { opacity: .7; font-style: italic; }
.watch-cta { padding: 16px clamp(16px, 3vw, 28px); border-top: 2px solid var(--ink); display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }
.watch-cta p { margin: 0; font-size: .85rem; font-weight: 600; }
.faro-login { margin-top: 12px; }
@media (max-width: 900px) {
  .plan-grid.plan-grid-3 { grid-template-columns: 1fr; }
  .account-head { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .top-actions { gap: 6px; }
  .signin-top { height: 34px; padding: 0 8px; font-size: .72rem; }
  .watch-cta .button, .account-panel .button { width: 100%; justify-content: center; }
}
.watch-item > div { flex: 1 1 auto; min-width: 0; }
.watch-item .link-btn { flex: 0 0 auto; white-space: nowrap; }
.wallet-pick { display: flex; flex-wrap: wrap; gap: 10px; margin: 6px 0 4px; }

/* ---- LIVE feed + brand (Sep 11) ---- */
.brand-img { object-fit: cover; background: none; padding: 0; }
.token-logo { display: block; width: min(220px, 60%); height: auto; margin: 0 0 18px; border-radius: 50%; box-shadow: 6px 6px 0 var(--ink); }
.live { background: var(--ink); color: var(--paper); }
.live .section-label { border-color: var(--paper); }
.live-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 30px; align-items: end; margin-bottom: 30px; }
.live-head h2 { margin: 0; font-family: "Archivo Black", sans-serif; font-size: clamp(2.6rem, 7vw, 5.6rem); line-height: .9; }
.live-head h2 em { color: var(--yellow); font-style: normal; }
.live-head p { margin: 0; line-height: 1.55; }
.live-status { font-weight: 700; margin: 0 0 16px; }
.live-status.on { color: var(--yellow); }
.live-status.off { opacity: .75; }
.live-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.live-item { display: grid; grid-template-columns: auto minmax(0, 1fr) auto auto; gap: 16px; align-items: center; padding: 12px 14px; border: 2px solid var(--paper); background: #221f1a; }
.live-empty { opacity: .75; font-style: italic; }
.live-badge { display: inline-block; min-width: 96px; text-align: center; padding: 6px 8px; font-family: "Archivo Black", sans-serif; border: 2px solid var(--paper); }
.lb-rug { background: var(--red); color: var(--paper); }
.lb-bait { background: var(--yellow); color: var(--ink); }
.lb-sketchy { background: var(--paper); color: var(--ink); }
.lb-new { background: transparent; color: var(--paper); }
.live-main { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.live-main strong { overflow-wrap: anywhere; }
.live-reason { font-size: .82rem; opacity: .8; }
.live-nums { display: flex; gap: 14px; font-size: .85rem; white-space: nowrap; }
.live-nums .down { color: #ff8a70; }
.live-nums .up { color: #9be28f; }
.live-sniff { min-height: 40px; background: var(--paper); color: var(--ink); border-color: var(--paper); box-shadow: 3px 3px 0 var(--yellow); }
@media (max-width: 900px) {
  .live-head { grid-template-columns: 1fr; }
  .live-item { grid-template-columns: auto minmax(0, 1fr); }
  .live-nums, .live-sniff { grid-column: 1 / -1; }
  .live-nums { flex-wrap: wrap; white-space: normal; }
}
.wallet-addr code { overflow-wrap: anywhere; word-break: break-all; font-size: .85em; }
.socials a.social-live { display: inline-flex; align-items: center; min-height: 54px; padding: 0 24px; border: var(--line); background: var(--yellow); color: var(--ink); font-weight: 700; text-decoration: none; box-shadow: 4px 4px 0 var(--ink); }
.socials a.social-live:hover, .socials a.social-live:focus-visible { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.tg-open { margin: 6px 0 8px; text-decoration: none; }
