/* ============================================================
   PLATED — stylesheet
   Ported from the Claude Design prototype (Plated.dc.html).
   Palette, type and components match the design 1:1.
   ============================================================ */

:root {
  --bg:        #08090D;
  --bg-app:    #0B0C11;
  --panel:     #0E0F15;
  --card:      #13151C;
  --line:      #181A22;
  --line-2:    #1C1F28;
  --line-3:    #23262F;
  --line-4:    #2A2E3A;
  --line-5:    #2E323E;

  --text:      #ffffff;
  --text-1:    #E6E8EE;
  --text-2:    #C6CAD4;
  --text-3:    #B6BAC6;
  --muted:     #9499A6;
  --muted-2:   #6A7180;
  --muted-3:   #5A6070;
  --muted-4:   #4A505E;
  --muted-5:   #3A3E48;

  --red:       #E8322A;
  --red-hover: #FF463C;
  --red-dark:  #C0211B;
  --green:     #4ADE80;

  --plate-yellow: #F5C518;
  --plate-blue:   #0a3d91;
  --plate-ink:    #15161C;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-plate:   'Archivo Black', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  background-image:
    radial-gradient(circle at 50% 0%, rgba(232,50,42,0.08), transparent 55%),
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  background-attachment: fixed;
  font-family: var(--font-body);
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

::selection { background: var(--red); color: #fff; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--panel); }
::-webkit-scrollbar-thumb { background: var(--line-4); border-radius: 6px; }

a { color: inherit; }

@keyframes blink    { 0%,45%{opacity:1;} 50%,95%{opacity:.25;} 100%{opacity:1;} }
@keyframes scanline { 0%{transform:translateY(-100%);} 100%{transform:translateY(2200%);} }
@keyframes pulseGlow{ 0%,100%{opacity:.5;} 50%{opacity:1;} }
@keyframes dotFlash { 0%,80%,100%{opacity:.2;} 40%{opacity:1;} }

/* ---- layout shell -------------------------------------------------------- */
/* transparent so the body's red-glow + grid motif shows site-wide */
.app { background: transparent; min-height: 100vh; position: relative; }
.wrap { max-width: 1180px; margin: 0 auto; }
.section { padding: clamp(40px,6vw,80px) 24px; }
.section--top-border { border-top: 1px solid var(--line); }

/* ---- header -------------------------------------------------------------- */
.site-header {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 26px; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 20;
  background: rgba(11,12,17,0.9); backdrop-filter: blur(10px);
  flex-wrap: wrap;
}
.brand { background: none; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 9px; padding: 0; text-decoration: none; }
.brand__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px var(--red); animation: blink 1.6s infinite; flex: none; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 25px; letter-spacing: 0.12em; color: #fff; line-height: 1; }
.brand--sm .brand__name { font-size: 23px; }
.brand--sm .brand__dot { width: 9px; height: 9px; }

.nav { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.nav-link {
  background: none; border: none; color: var(--muted);
  font-size: 14px; font-weight: 600; cursor: pointer; padding: 8px 10px;
  font-family: var(--font-body); border-radius: 7px; text-decoration: none;
}
.nav-link:hover { color: var(--text-1); }
.nav-user {
  display: flex; align-items: center; gap: 8px; margin-left: 6px; padding: 6px 12px;
  background: var(--card); border: 1px solid var(--line-3); border-radius: 99px;
}
.nav-user__avatar { width: 24px; height: 24px; border-radius: 50%; background: var(--red); color: #fff; font-weight: 700; font-size: 12px; display: flex; align-items: center; justify-content: center; }
.nav-user__email { font-size: 13px; color: var(--text-3); font-family: var(--font-mono); }

/* ---- buttons ------------------------------------------------------------- */
.btn { font-family: var(--font-body); cursor: pointer; border-radius: 8px; border: none; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; gap: 7px; text-decoration: none; }
.btn--primary { background: var(--red); color: #fff; padding: 9px 17px; font-size: 14px; }
.btn--primary:hover { background: var(--red-hover); }
.btn--primary-lg { background: var(--red); color: #fff; padding: 13px 22px; font-size: 15px; border-radius: 9px; }
.btn--primary-lg:hover { background: var(--red-hover); }
.btn--block { width: 100%; padding: 14px; font-size: 16px; border-radius: 10px; }
.btn--ghost { background: var(--card); border: 1px solid var(--line-3); color: var(--text-1); padding: 11px 18px; font-size: 14px; font-weight: 600; border-radius: 9px; }
.btn--ghost:hover { border-color: var(--line-5); color: #fff; }
.btn--dark { background: var(--bg-app); color: #fff; padding: 15px 26px; font-size: 16px; border-radius: 10px; }
.btn--dark:hover { background: #000; }
.btn--sm { padding: 8px 14px; font-size: 12.5px; font-weight: 600; border-radius: 7px; background: var(--card); border: 1px solid var(--line-4); color: var(--text-1); }

/* ---- mono eyebrow / section heads --------------------------------------- */
.eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; color: var(--red); margin-bottom: 12px; }
.eyebrow--muted { color: var(--muted-3); }
.h-display { font-family: var(--font-display); font-weight: 800; color: #fff; text-transform: uppercase; line-height: 0.95; margin: 0; }
.h-section { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px,4.5vw,46px); color: #fff; margin: 0; text-transform: uppercase; letter-spacing: 0.01em; }
.section-head { text-align: center; margin-bottom: 40px; }

/* ---- plate badge --------------------------------------------------------- */
.plate {
  display: inline-flex; align-items: stretch; background: var(--plate-yellow);
  border-radius: 7px; overflow: hidden; flex: none; box-shadow: 0 1px 0 rgba(0,0,0,.4);
}
.plate__uk { background: var(--plate-blue); color: #fff; display: flex; align-items: center; justify-content: center; padding: 0 7px; font-family: var(--font-body); font-weight: 700; font-size: 10px; letter-spacing: 0.04em; }
.plate__reg { color: var(--plate-ink); font-family: var(--font-plate); font-size: 17px; padding: 6px 12px; letter-spacing: 0.03em; }

.plate--lg { border-radius: 11px; padding: 5px; box-shadow: 0 0 0 3px var(--bg-app), 0 0 0 5px #2A2C36; }
.plate--lg .plate__uk { border-radius: 7px; padding: 0 11px; font-size: 13px; flex-direction: column; }
.plate--lg .plate__reg { font-size: clamp(30px,5vw,46px); padding: 6px 18px; letter-spacing: 0.04em; }

.plate--md { border-radius: 8px; padding: 4px; box-shadow: 0 0 0 3px var(--bg-app), 0 0 0 4px var(--line-3); }
.plate--md .plate__uk { border-radius: 5px; padding: 0 9px; font-size: 12px; }
.plate--md .plate__reg { font-size: clamp(24px,4vw,34px); padding: 5px 16px; letter-spacing: 0.04em; }

.plate--sm .plate__reg { font-size: clamp(16px,3vw,20px); padding: 7px 14px; }
.plate--xs .plate__uk { font-size: 10px; }
.plate--xs .plate__reg { font-size: 19px; padding: 6px 13px; }

/* plate-shaped input (hero / register) */
.plate-input {
  display: flex; align-items: stretch; background: var(--plate-yellow);
  border-radius: 11px; padding: 5px; box-shadow: 0 0 0 3px var(--bg-app), 0 0 0 5px #2A2C36;
}
.plate-input__uk { background: var(--plate-blue); color: #fff; border-radius: 7px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 10px; font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: 0.04em; }
.plate-input__field {
  flex: 1; min-width: 0; background: transparent; border: none; outline: none;
  font-family: var(--font-plate); font-size: clamp(24px,4.5vw,34px); color: var(--plate-ink);
  text-align: center; letter-spacing: 0.03em; text-transform: uppercase;
}
.plate-input__field::placeholder { color: rgba(21,22,28,0.45); }
.plate-input__btn {
  background: var(--plate-ink); color: #fff; border: none; border-radius: 7px; padding: 0 20px;
  font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.06em;
  text-transform: uppercase; cursor: pointer;
}
.plate-input__btn:hover { background: var(--red); }
.plate-input--form { border-radius: 10px; box-shadow: none; }
.plate-input--form .plate-input__uk { border-radius: 6px; padding: 0 11px; font-size: 13px; }
.plate-input--form .plate-input__field { font-size: 26px; letter-spacing: 0.04em; }

/* ---- pills / badges ------------------------------------------------------ */
.pill {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.16em; color: var(--red);
  border: 1px solid #2A1416; background: rgba(232,50,42,0.06); padding: 6px 13px; border-radius: 99px;
}
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: blink 1.6s infinite; }

/* ---- mention card (message wall) ---------------------------------------- */
.mention {
  background: var(--card); border: 1px solid var(--line-3);
  border-left: 3px solid var(--m-color, var(--muted)); border-radius: 14px; padding: 16px 18px;
}
.mention__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 9px; }
.mention__who { display: flex; align-items: center; gap: 9px; }
.mention__glyph { width: 30px; height: 30px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-family: var(--font-plate); font-weight: 800; font-size: 13px; background: var(--m-color); color: var(--m-ink); flex: none; }
.mention__user { display: block; font-size: 14px; color: var(--text-1); font-weight: 600; }
.mention__platform { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted-2); letter-spacing: 0.04em; }
.mention__when { font-family: var(--font-mono); font-size: 11px; color: var(--muted-3); white-space: nowrap; }
.mention__text { margin: 0 0 11px; font-size: 15px; line-height: 1.5; color: var(--text-1); }
.mention__foot { display: flex; align-items: center; justify-content: space-between; }
.mention__stats { font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); }
.mention__link { font-size: 12.5px; color: var(--m-color); font-weight: 600; text-decoration: none; }
.mention__link:hover { text-decoration: underline; }
.mention--compact .mention__glyph { width: 24px; height: 24px; border-radius: 6px; font-size: 12px; }
.wall { display: flex; flex-direction: column; gap: 13px; }

/* ---- segmented toggles --------------------------------------------------- */
.seg { display: flex; background: var(--card); border: 1px solid var(--line-3); border-radius: 8px; overflow: hidden; }
.seg__btn { background: transparent; color: var(--muted); border: none; padding: 8px 14px; cursor: pointer; font-weight: 600; font-family: var(--font-body); font-size: 13.5px; text-decoration: none; }
.seg__btn--on { background: var(--red); color: #fff; font-weight: 700; }
.seg--mono .seg__btn { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; padding: 6px 12px; font-weight: 500; }
.seg--mono .seg__btn--on { font-weight: 700; }

/* ---- stat chips ---------------------------------------------------------- */
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { background: var(--panel); border: 1px solid var(--line-3); border-radius: 11px; padding: 13px 18px; min-width: 120px; }
.chip__value { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: #fff; line-height: 1; }
.chip__label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; color: var(--muted-2); margin-top: 5px; }

/* ---- ad slots ------------------------------------------------------------ */
.ad-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--muted-4); margin-bottom: 8px; }
.ad-banner { display: flex; align-items: center; gap: 20px; background: var(--panel); border: 1px dashed var(--line-4); border-radius: 14px; padding: 22px 24px; flex-wrap: wrap; }
.ad-banner--sm { gap: 14px; padding: 14px 18px; border-radius: 12px; }
.ad-logo { width: 64px; height: 64px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: var(--font-plate); font-size: 22px; flex: none; }
.ad-logo--sm { width: 38px; height: 38px; border-radius: 9px; font-size: 15px; color: #fff; }
.ad-body { flex: 1; min-width: 200px; }
.ad-title { font-weight: 700; font-size: 16px; color: var(--text-1); margin-bottom: 3px; }
.ad-sub { font-size: 13.5px; color: var(--muted); }
.ad-banner--sm .ad-title { font-size: 14.5px; }
.ad-banner--sm .ad-sub { font-size: 12.5px; }
.ad-rect { background: var(--panel); border: 1px dashed var(--line-4); border-radius: 14px; padding: 18px; text-align: center; }
.ad-rect__fill { width: 100%; height: 170px; border-radius: 10px; background: linear-gradient(135deg,#13151C,#1C1F28); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; margin-top: 12px; }

/* ---- forms / panels ------------------------------------------------------ */
.panel { background: var(--panel); border: 1px solid var(--line-2); border-radius: 18px; padding: clamp(22px,4vw,32px); }
.field-label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--muted-2); margin-bottom: 8px; }
.input {
  width: 100%; background: var(--card); border: 1px solid var(--line-3); border-radius: 10px;
  padding: 14px 16px; font-size: 16px; color: #fff; outline: none; font-family: var(--font-body);
}
.input:focus { border-color: var(--line-5); }
.input::placeholder { color: var(--muted-3); }

/* ---- toast --------------------------------------------------------------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 80;
  background: var(--card); border: 1px solid var(--line-4); border-left: 3px solid var(--green);
  border-radius: 11px; padding: 14px 20px; box-shadow: 0 18px 50px rgba(0,0,0,0.5);
  display: flex; align-items: center; gap: 11px; max-width: 90vw;
}
.toast__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
.toast__msg { font-size: 14px; color: var(--text-1); font-weight: 500; }

/* ---- footer -------------------------------------------------------------- */
.footer { border-top: 1px solid var(--line); margin-top: 40px; padding: 44px 26px 36px; }
.footer__grid { display: flex; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.footer__tag { font-size: 13.5px; line-height: 1.55; color: var(--muted-2); margin: 0 0 14px; max-width: 280px; }
.footer__domains { font-family: var(--font-mono); font-size: 12px; color: var(--muted-4); }
.footer__cols { display: flex; gap: 52px; flex-wrap: wrap; }
.footer__head { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--muted-4); margin-bottom: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link { background: none; border: none; color: var(--muted-2); font-size: 13.5px; cursor: pointer; padding: 0; text-align: left; font-family: var(--font-body); text-decoration: none; }
.footer__link:hover { color: var(--text-1); }
.footer__legal { padding-top: 22px; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted-4); line-height: 1.5; margin-top: 30px; }

/* ---- cookie banner ------------------------------------------------------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; max-width: 760px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--line-4); border-radius: 14px;
  padding: 16px 20px; box-shadow: 0 18px 50px rgba(0,0,0,0.5);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.cookie__text { flex: 1; min-width: 240px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.cookie__actions { display: flex; gap: 8px; }

/* ---- hero ---------------------------------------------------------------- */
.hero { position: relative; padding: clamp(40px,5vw,68px) 24px clamp(48px,6vw,72px); overflow: hidden; }
.hero__inner { max-width: 1180px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: clamp(32px,5vw,72px); align-items: center; }
.hero__col { flex: 1; min-width: 300px; }
.hero__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(46px,7vw,86px); line-height: 0.92; letter-spacing: -0.01em; margin: 0 0 18px; color: #fff; text-transform: uppercase; }
.hero__sub { font-size: clamp(15px,1.8vw,19px); line-height: 1.55; color: var(--muted); max-width: 480px; margin: 0 0 30px; }
.hero__note { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted-3); margin: 16px 0 0; }
.hero__feed { flex: 1; min-width: 280px; display: flex; flex-direction: column; gap: 12px; position: relative; }
.hero__feedhead { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--muted-3); display: flex; justify-content: space-between; }

/* ---- how it works -------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 18px; }
.step { background: var(--panel); border: 1px solid var(--line-2); border-radius: 16px; padding: 28px 24px; }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: 46px; color: var(--line-3); line-height: 1; margin-bottom: 14px; }
.step__title { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: #fff; margin: 0 0 10px; text-transform: uppercase; letter-spacing: 0.02em; }
.step__body { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--muted); }

/* ---- leaderboard rows ---------------------------------------------------- */
.lb { display: flex; flex-direction: column; gap: 9px; }
.lb-row {
  display: flex; align-items: center; gap: 16px; background: var(--panel);
  border: 1px solid var(--line-2); border-radius: 13px; padding: 15px 18px;
  cursor: pointer; text-align: left; width: 100%; text-decoration: none;
}
.lb-row:hover { border-color: var(--line-5); }
.lb-row--alt { background: var(--bg-app); }
.lb-row__rank { font-family: var(--font-display); font-weight: 800; font-size: 30px; width: 42px; flex: none; text-align: center; }
.lb-row__spacer { flex: 1; }
.lb-row__count { text-align: right; }
.lb-row__count-n { display: block; font-family: var(--font-display); font-weight: 700; font-size: 24px; color: #fff; line-height: 1; }
.lb-row__count-l { font-family: var(--font-mono); font-size: 10px; color: var(--muted-2); letter-spacing: 0.06em; }
.lb-row__trend { font-size: 16px; width: 22px; text-align: center; flex: none; }
.lb-row__view { background: var(--card); border: 1px solid var(--line-3); color: var(--text-1); border-radius: 7px; padding: 8px 14px; font-size: 13px; font-weight: 600; flex: none; }
.lb-teaser .lb-row__rank { font-size: 26px; width: 34px; color: var(--muted-5); }

/* ---- register CTA band --------------------------------------------------- */
.cta-band { margin: clamp(40px,6vw,80px) 0 0; background: var(--red); background-image: linear-gradient(135deg,var(--red),var(--red-dark)); padding: clamp(48px,7vw,84px) 24px; text-align: center; }
.cta-band__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px,5vw,58px); color: #fff; margin: 0 0 14px; text-transform: uppercase; line-height: 0.96; }
.cta-band__sub { font-size: clamp(15px,1.8vw,18px); color: rgba(255,255,255,0.82); margin: 0 auto 30px; max-width: 520px; }
.cta-band__form { max-width: 440px; margin: 0 auto; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.cta-band__input { flex: 1; min-width: 200px; background: rgba(0,0,0,0.22); border: 1px solid rgba(255,255,255,0.3); border-radius: 10px; padding: 15px 17px; font-size: 16px; color: #fff; outline: none; font-family: var(--font-body); }
.cta-band__input::placeholder { color: rgba(255,255,255,0.6); }

/* ---- search results layout ---------------------------------------------- */
.results { display: flex; gap: 28px; align-items: flex-start; flex-wrap: wrap; }
.results__main { flex: 1; min-width: 280px; }
.results__aside { width: 300px; flex: none; display: flex; flex-direction: column; gap: 18px; position: sticky; top: 90px; }
.results__toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.results__count { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted-2); letter-spacing: 0.06em; }
.track-card { background: linear-gradient(160deg,#1A0B0A,#0E0F15); border: 1px solid #2A1416; border-radius: 16px; padding: 22px; }
.track-card__title { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #fff; margin: 0 0 6px; text-transform: uppercase; }
.track-card__body { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin: 0 0 16px; }
.track-card__link { width: 100%; background: none; border: none; color: var(--muted); margin-top: 10px; font-size: 13px; cursor: pointer; text-decoration: underline; }

/* ---- scanning loader ----------------------------------------------------- */
.scanning { text-align: center; padding: 80px 20px; position: relative; overflow: hidden; border: 1px solid var(--line-2); border-radius: 18px; background: var(--panel); }
.scanning__line { position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg,transparent,var(--red),transparent); animation: scanline 1.6s linear infinite; }
.scanning__platforms { font-family: var(--font-mono); font-size: 13px; color: var(--muted-2); margin: 0; }
.scanning__platforms span:nth-child(1){ animation: dotFlash 1.4s infinite; }
.scanning__platforms span:nth-child(2){ animation: dotFlash 1.4s infinite .2s; }
.scanning__platforms span:nth-child(3){ animation: dotFlash 1.4s infinite .4s; }
.scanning__platforms span:nth-child(4){ animation: dotFlash 1.4s infinite .6s; }
.scanning__platforms span:nth-child(5){ animation: dotFlash 1.4s infinite .8s; }

/* ---- empty state --------------------------------------------------------- */
.empty { text-align: center; padding: 70px 20px; border: 1px solid var(--line-2); border-radius: 18px; background: var(--panel); max-width: 560px; margin: 0 auto; }
.empty__icon { font-size: 46px; margin-bottom: 10px; opacity: 0.6; }

/* ---- profile header ------------------------------------------------------ */
.profile-head { background: linear-gradient(150deg,#13151C,#0B0C11); border: 1px solid var(--line-2); border-radius: 20px; padding: clamp(24px,4vw,38px); margin-bottom: 24px; }
.profile-head__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.profile-head__watch { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); display: flex; align-items: center; gap: 7px; margin-top: 18px; }
.profile-head__watch .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.profile-head__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---- dashboard ----------------------------------------------------------- */
.dash-cards { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 14px; }
.dash-card { background: var(--panel); border: 1px solid var(--line-2); border-radius: 16px; padding: 20px; }
.dash-card__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 16px; }
.dash-card__new { background: var(--red); color: #fff; font-family: var(--font-mono); font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: 6px; letter-spacing: 0.04em; }
.dash-card__stats { display: flex; gap: 18px; margin-bottom: 16px; }
.dash-card__stat-n { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: #fff; line-height: 1; }
.dash-card__stat-l { font-family: var(--font-mono); font-size: 9.5px; color: var(--muted-2); letter-spacing: 0.06em; margin-top: 4px; }
.dash-card__updated { font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); margin-bottom: 16px; }
.dash-card__btn { width: 100%; background: var(--card); border: 1px solid var(--line-3); color: var(--text-1); border-radius: 8px; padding: 11px; font-size: 14px; font-weight: 600; cursor: pointer; }
.dash-card__btn:hover { border-color: var(--red); color: #fff; }
.alert-prefs { background: var(--panel); border: 1px solid var(--line-2); border-radius: 14px; padding: 18px 22px; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---- prose (about / legal) ----------------------------------------------- */
.prose { max-width: 760px; margin: 0 auto; padding: clamp(36px,5vw,68px) 24px 60px; }
.prose h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(36px,6vw,64px); color: #fff; margin: 0 0 20px; text-transform: uppercase; line-height: 0.95; }
.prose h2 { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: #fff; margin: 36px 0 18px; text-transform: uppercase; }
.prose h3 { font-size: 17px; color: var(--text-1); margin: 22px 0 6px; }
.prose p, .prose li { font-size: 16px; line-height: 1.6; color: var(--muted); }
.prose p.lead { font-size: 18px; color: var(--text-2); }
.prose a { color: var(--red); }
.about-stats { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 14px; margin-bottom: 44px; }
.about-stat { background: var(--panel); border: 1px solid var(--line-2); border-radius: 14px; padding: 22px; }
.about-stat__n { font-family: var(--font-display); font-weight: 800; font-size: 34px; color: var(--red); line-height: 1; }
.about-stat__l { font-size: 14px; color: var(--muted); margin-top: 8px; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--panel); border: 1px solid var(--line-2); border-radius: 13px; padding: 18px 20px; }
.faq__q { font-weight: 700; font-size: 16px; color: var(--text-1); margin-bottom: 7px; }
.faq__a { font-size: 14.5px; line-height: 1.55; color: var(--muted); }

/* auth pages center the brand */
.auth-brand { display: flex; justify-content: center; margin: 0 auto 34px; }
.auth-head { text-align: center; margin-bottom: 30px; }
.auth-head h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px,5vw,48px); color: #fff; margin: 0 0 8px; text-transform: uppercase; line-height: 0.96; }
.auth-head p { color: var(--muted); font-size: 15px; margin: 0; }
.muted-link { background: none; border: none; color: var(--red); font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: underline; padding: 0; }
.form-error { background: rgba(232,50,42,0.08); border: 1px solid #2A1416; color: #ffb3ae; border-radius: 10px; padding: 12px 14px; font-size: 13.5px; margin-bottom: 16px; }
.form-ok { background: rgba(74,222,128,0.08); border: 1px solid #14361f; color: #9be9b6; border-radius: 10px; padding: 12px 14px; font-size: 13.5px; margin-bottom: 16px; }
.fine { text-align: center; font-size: 11.5px; color: var(--muted-4); margin: 18px 0 0; line-height: 1.5; }

/* ---- responsive ---------------------------------------------------------- */
@media (max-width: 760px) {
  .results__aside { width: 100%; position: static; }
  .footer__cols { gap: 32px; }
}
