/* public/assets/landing-static.css
   Design system condiviso per le pagine statiche di contesto.
   Replica i token usati in src/index.css / tailwind.config.ts — se cambi
   un colore/font qui, verifica se va allineato anche lì (due fonti di
   verità per lo stesso design system, accettato come rischio noto nella
   spec del 2026-07-16). */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --s-bg: #0d0d0d;
  --s-bg-alt: #141414;
  --s-card: #1a1a1a;
  --s-border: #2a2a2a;
  --s-red: #FD3333;
  --s-red-dark: #e02020;
  --s-red-bg: #150404;
  --s-text: #ffffff;
  --s-text-muted: #999999;
  --s-text-dim: #666666;
  --s-radius: 0.75rem;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--s-bg);
  color: var(--s-text);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .s-heading-font {
  font-family: 'Archivo', system-ui, sans-serif;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* Nav */
.s-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--s-border);
}
.s-nav__inner {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 16px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.s-nav__brand { display: flex; align-items: center; gap: 8px; }
.s-nav__logo { height: 34px; width: 34px; border-radius: 8px; }
.s-nav__name { font-weight: 900; font-size: 18px; color: var(--s-text); }
.s-nav__name-accent { color: var(--s-red); }
.s-nav__links { display: none; align-items: center; gap: 20px; }
.s-nav__links a { font-size: 12px; color: var(--s-text-muted); transition: color .15s; }
.s-nav__links a:hover { color: var(--s-text); }
.s-nav__cta { display: none; align-items: center; gap: 8px; }
@media (min-width: 1024px) { .s-nav__links { display: flex; } }
@media (min-width: 768px) { .s-nav__cta { display: flex; } }

.s-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity .15s, background-color .15s;
}
.s-btn--primary { background: var(--s-red); color: #fff; }
.s-btn--primary:hover { background: var(--s-red-dark); }
.s-btn--outline { background: transparent; border-color: #333; color: #fff; }
.s-btn--outline:hover { background: var(--s-card); }
.s-btn--ghost { background: transparent; color: var(--s-text-muted); font-size: 13px; padding: 6px 10px; }
.s-btn--ghost:hover { color: var(--s-text); }
.s-btn--sm { padding: 8px 14px; font-size: 13px; }
.s-btn--block { width: 100%; }

/* Hero */
.s-hero { padding: 120px 16px 64px; text-align: center; }
.s-hero__inner { max-width: 720px; margin: 0 auto; }
.s-hero__eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--s-red);
  background: rgba(253,51,51,0.1); border: 1px solid rgba(253,51,51,0.2);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;
}
.s-hero__title {
  font-weight: 900; font-size: 40px; line-height: 1.15;
  margin: 0 0 20px; letter-spacing: -0.02em;
}
@media (min-width: 768px) { .s-hero__title { font-size: 56px; } }
.s-hero__subtitle { font-size: 17px; color: var(--s-text-muted); max-width: 560px; margin: 0 auto 36px; line-height: 1.6; }
.s-hero__cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
@media (min-width: 640px) { .s-hero__cta { flex-direction: row; justify-content: center; } }

/* Sections */
.s-section { padding: 72px 16px; border-top: 0.5px solid var(--s-border); }
.s-section--alt { background: var(--s-bg-alt); }
.s-section__inner { max-width: 940px; margin: 0 auto; }
.s-section__eyebrow {
  display: block; text-align: center; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--s-red); margin-bottom: 12px;
}
.s-section__title {
  font-weight: 800; font-size: 30px; text-align: center; letter-spacing: -0.02em;
  margin: 0 0 12px;
}
@media (min-width: 768px) { .s-section__title { font-size: 38px; } }
.s-section__subtitle { text-align: center; font-size: 14px; color: var(--s-text-muted); max-width: 560px; margin: 0 auto 48px; line-height: 1.6; }

/* Steps */
.s-steps { display: grid; gap: 16px; max-width: 780px; margin: 0 auto; }
@media (min-width: 768px) { .s-steps { grid-template-columns: repeat(3, 1fr); } }
.s-step { background: var(--s-card); border: 0.5px solid var(--s-border); border-radius: var(--s-radius); padding: 24px; }
.s-step__number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--s-red-bg); border: 1px solid var(--s-red); color: var(--s-red);
  font-weight: 800; font-size: 14px; margin-bottom: 16px;
}
.s-step h3 { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.s-step p { font-size: 13px; color: var(--s-text-muted); line-height: 1.6; margin: 0; }

/* Cards grid (cosa ottieni) */
.s-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 768px) { .s-cards { grid-template-columns: repeat(3, 1fr); } }
.s-card { background: var(--s-card); border: 0.5px solid var(--s-border); border-radius: var(--s-radius); padding: 18px; }
.s-card__emoji { font-size: 28px; display: block; margin-bottom: 10px; }
.s-card h3 { font-size: 14px; font-weight: 700; margin: 0 0 6px; }
.s-card p { font-size: 12px; color: var(--s-text-muted); line-height: 1.6; margin: 0; }

/* Pricing */
.s-pricing { display: grid; gap: 16px; max-width: 860px; margin: 0 auto; }
@media (min-width: 768px) { .s-pricing { grid-template-columns: repeat(var(--s-pricing-cols, 2), 1fr); } }
.s-price-card { background: var(--s-card); border: 0.5px solid var(--s-border); border-radius: var(--s-radius); padding: 28px; }
.s-price-card--highlight { border-color: var(--s-red); background: var(--s-red-bg); }
.s-price-card__name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--s-text-muted); margin: 0 0 8px; }
.s-price-card__price { font-size: 32px; font-weight: 900; margin: 0 0 4px; }
.s-price-card__interval { font-size: 13px; color: var(--s-text-dim); margin: 0 0 20px; }
.s-price-card__features { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.s-price-card__features li { font-size: 13px; color: var(--s-text-muted); padding-left: 22px; position: relative; }
.s-price-card__features li::before { content: "✓"; position: absolute; left: 0; color: var(--s-red); font-weight: 700; }

/* FAQ */
.s-faq { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.s-faq__item { background: var(--s-card); border: 0.5px solid var(--s-border); border-radius: var(--s-radius); padding: 4px 20px; }
.s-faq__item summary { padding: 16px 0; font-weight: 700; font-size: 14px; cursor: pointer; list-style: none; }
.s-faq__item summary::-webkit-details-marker { display: none; }
.s-faq__item summary::after { content: "+"; float: right; color: var(--s-red); font-weight: 900; }
.s-faq__item[open] summary::after { content: "−"; }
.s-faq__item p { font-size: 13px; color: var(--s-text-muted); line-height: 1.7; padding-bottom: 18px; margin: 0; }

/* CTA finale */
.s-cta-final { padding: 72px 16px; text-align: center; border-top: 2px solid var(--s-red); }
.s-cta-final__inner { max-width: 560px; margin: 0 auto; }
.s-cta-final h2 { font-weight: 900; font-size: 32px; margin: 0 0 16px; }
@media (min-width: 768px) { .s-cta-final h2 { font-size: 44px; } }
.s-cta-final p { color: var(--s-text-muted); margin: 0 0 28px; line-height: 1.6; }
.s-cross-links { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 24px; }
@media (min-width: 640px) { .s-cross-links { flex-direction: row; justify-content: center; } }

/* Footer */
.s-footer { border-top: 0.5px solid var(--s-border); padding: 20px 16px; }
.s-footer__inner { max-width: 940px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 12px; }
@media (min-width: 768px) { .s-footer__inner { flex-direction: row; } }
.s-footer__brand { display: flex; align-items: center; gap: 8px; }
.s-footer__brand img { height: 24px; width: 24px; border-radius: 6px; }
.s-footer__brand span { font-weight: 900; font-size: 14px; }
.s-footer__links { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; font-size: 11px; color: var(--s-text-dim); }
.s-footer__links a:hover { color: #fff; }
.s-footer__copy { font-size: 11px; color: #555; margin: 0; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(2rem); transition: opacity .7s ease-out, transform .7s ease-out; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Cookie consent banner (replica di CookieConsentBanner.tsx) */
.s-cookie-banner {
  position: fixed; inset: auto 0 0 0; z-index: 60;
  border-top: 0.5px solid var(--s-border);
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(8px);
  padding: 16px;
}
.s-cookie-banner__inner {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 16px;
}
@media (min-width: 640px) { .s-cookie-banner__inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.s-cookie-banner p { font-size: 13px; color: var(--s-text-muted); margin: 0; }
.s-cookie-banner a { color: var(--s-red); text-decoration: underline; }
.s-cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }
.s-cookie-reopen {
  position: fixed; bottom: 16px; left: 16px; z-index: 60;
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--s-bg); border: 0.5px solid var(--s-border);
  color: var(--s-text-muted); display: none;
  align-items: center; justify-content: center; cursor: pointer; font-size: 16px;
}
.s-cookie-reopen.is-visible { display: flex; }

/* ============================================================
   v2 — Redesign visivo (2026-07-16)
   Un solo elemento audace per pagina: la "scheda giocatore" in
   hero. Tutto il resto riceve solo rifiniture (tipografia,
   spaziatura, hover, motion) — vedi spec
   docs/superpowers/specs/2026-07-16-landing-redesign-v2-design.md
   ============================================================ */

/* Hero asimmetrico */
.s-hero--split { padding: 140px 16px 80px; text-align: left; }
.s-hero--split .s-hero__grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; gap: 48px; align-items: center;
}
@media (min-width: 900px) {
  .s-hero--split .s-hero__grid { grid-template-columns: 1.15fr 1fr; }
}
.s-hero--split .s-hero__inner { max-width: 560px; margin: 0; }
.s-hero--split .s-hero__title,
.s-hero--split .s-hero__subtitle { text-align: left; margin-left: 0; margin-right: 0; }
.s-hero--split .s-hero__cta { justify-content: flex-start; }
@media (max-width: 899px) {
  .s-hero--split .s-hero__grid { grid-template-columns: 1fr; }
  .s-hero--split .s-hero__inner { text-align: center; max-width: 560px; margin: 0 auto; }
  .s-hero--split .s-hero__title, .s-hero--split .s-hero__subtitle { text-align: center; }
  .s-hero--split .s-hero__cta { justify-content: center; }
}

/* Firma: scheda giocatore */
.s-playercard {
  position: relative;
  background: linear-gradient(165deg, #1a1a1a, #131313);
  border: 1px solid var(--s-border);
  border-radius: 16px;
  padding: 28px;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.s-playercard::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(253,51,51,.5), transparent 45%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.s-playercard__eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--s-text-dim); margin-bottom: 14px; display: block;
}
.s-playercard__rating {
  font-family: 'Archivo', sans-serif; font-weight: 900;
  font-size: 72px; line-height: 1; letter-spacing: -0.03em;
  color: var(--s-text); margin: 0 0 4px;
}
.s-playercard__rating span { color: var(--s-red); font-size: 28px; }
.s-playercard__label { font-size: 13px; color: var(--s-text-muted); margin: 0 0 20px; }
.s-playercard__divider { height: 1px; background: var(--s-border); margin: 20px 0; }
.s-playercard__stats { display: flex; flex-direction: column; gap: 12px; }
.s-playercard__stat { display: flex; align-items: center; justify-content: space-between; font-size: 12px; }
.s-playercard__stat-label { color: var(--s-text-muted); }
.s-playercard__dots { letter-spacing: 2px; color: var(--s-red); font-size: 11px; }
.s-playercard__dots .s-dot--off { color: var(--s-border); }

/* Distinta di formazione — sostituisce le griglie di card per staff/feature */
.s-formation { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; }
.s-formation__row {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 22px 4px; border-bottom: 0.5px solid var(--s-border);
  transition: background-color .2s;
}
.s-formation__row:first-child { border-top: 0.5px solid var(--s-border); }
.s-formation__row:hover { background: rgba(255,255,255,.02); }
.s-formation__number {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 999px;
  border: 1.5px solid var(--s-red);
  background: var(--s-red-bg);
  color: var(--s-red);
  font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.s-formation__body h3 { font-size: 15px; font-weight: 700; margin: 0 0 4px; }
.s-formation__body p { font-size: 13px; color: var(--s-text-muted); line-height: 1.6; margin: 0; }

/* Texture campo — sottilissima, dietro hero */
.s-pitch-texture { position: relative; }
.s-pitch-texture::before {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    100deg,
    transparent, transparent 78px,
    rgba(255,255,255,0.04) 78px, rgba(255,255,255,0.04) 79px
  );
}
.s-pitch-texture > * { position: relative; z-index: 1; }

/* Ingresso hero orchestrato — puro CSS, nessun JS necessario */
@keyframes s-hero-in {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.s-hero-anim { opacity: 0; animation: s-hero-in .8s cubic-bezier(.16,1,.3,1) forwards; }
.s-hero-anim--d1 { animation-delay: .05s; }
.s-hero-anim--d2 { animation-delay: .17s; }
.s-hero-anim--d3 { animation-delay: .29s; }
.s-hero-anim--d4 { animation-delay: .41s; }
.s-hero-anim--d5 { animation-delay: .53s; }

/* Hover raffinato per le card esistenti (rifinitura, non nuovo elemento) */
.s-card, .s-step, .s-price-card, .s-faq__item {
  transition: transform .25s cubic-bezier(.16,1,.3,1), border-color .25s, box-shadow .25s;
}
.s-card:hover, .s-step:hover { transform: translateY(-3px); border-color: #3a3a3a; box-shadow: 0 12px 30px rgba(0,0,0,.35); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .s-hero-anim { animation: none !important; transition: opacity .2s linear !important; transform: none !important; opacity: 1 !important; }
}

/* Form demo snello */
.s-demo {
  max-width: 560px; margin: 0 auto;
  background: var(--s-card); border: 0.5px solid var(--s-border); border-radius: var(--s-radius);
  padding: 32px;
}
.s-demo__row { display: grid; gap: 12px; margin-bottom: 12px; }
@media (min-width: 560px) { .s-demo__row--2 { grid-template-columns: 1fr 1fr; } }
.s-demo label { display: block; font-size: 12px; color: var(--s-text-muted); margin-bottom: 6px; }
.s-demo input, .s-demo textarea {
  width: 100%; background: #111; border: 0.5px solid var(--s-border); border-radius: 8px;
  padding: 10px 12px; font-size: 14px; color: var(--s-text); font-family: inherit;
  outline: none; transition: border-color .15s; box-sizing: border-box;
}
.s-demo input:focus, .s-demo textarea:focus { border-color: var(--s-red); }
.s-demo textarea { resize: vertical; min-height: 72px; }
.s-demo__submit { margin-top: 8px; }
.s-demo__note { font-size: 11px; color: var(--s-text-dim); margin-top: 14px; text-align: center; }
.s-demo__success { text-align: center; padding: 12px 0; }
.s-demo__success-icon { font-size: 32px; margin-bottom: 12px; }
.s-demo__error { color: var(--s-red); font-size: 12px; margin-top: 8px; }

/* Founders/Community — badge iniziali agenzia (nessun logo disponibile per scout_profiles) */
.s-agency-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--s-card); border: 0.5px solid var(--s-border); border-radius: 999px;
  padding: 8px 16px 8px 8px;
}
.s-agency-badge__initials {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--s-red-bg); border: 1px solid var(--s-red); color: var(--s-red);
  font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.s-agency-badge__name { font-size: 13px; color: var(--s-text); font-weight: 600; }

/* Promo Founder — barra scarsità + riprova sociale su founders.html */
.s-founder-promo { max-width: 560px; margin: 0 auto 8px; }
.s-founder-promo__bar {
  height: 10px; border-radius: 999px; background: var(--s-card);
  border: 0.5px solid var(--s-border); overflow: hidden; margin-bottom: 10px;
}
.s-founder-promo__fill { height: 100%; background: var(--s-red); transition: width .4s ease-out; }
.s-founder-promo__text { text-align: center; font-size: 13px; color: var(--s-text-muted); margin: 0 0 20px; }

/* Timeline "Come funziona" — sostituisce .s-steps nelle pagine di contesto */
.s-timeline { display: flex; flex-direction: column; max-width: 780px; margin: 0 auto; }
@media (min-width: 768px) { .s-timeline { flex-direction: row; align-items: flex-start; } }
.s-timeline__step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px 32px; position: relative; }
@media (min-width: 768px) { .s-timeline__step { padding: 0 12px; } }
.s-timeline__step:not(:last-child)::after { content: ""; position: absolute; background: var(--s-border); }
@media (min-width: 768px) {
  .s-timeline__step:not(:last-child)::after { top: 20px; left: 60%; right: -40%; height: 1px; }
}
@media (max-width: 767px) {
  .s-timeline__step:not(:last-child)::after { left: 20px; top: 40px; bottom: 0; width: 1px; }
}
.s-timeline__icon {
  width: 40px; height: 40px; border-radius: 999px;
  background-color: var(--s-bg); border: 1.5px solid var(--s-red); color: var(--s-red);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 15px;
  margin-bottom: 16px; position: relative; z-index: 1;
}
.s-timeline__step h3 { font-size: 15px; font-weight: 700; margin: 0 0 8px; }
.s-timeline__step p { font-size: 13px; color: var(--s-text-muted); line-height: 1.6; margin: 0; max-width: 220px; }

/* Grid "Cosa ottieni" — sostituisce .s-formation nelle pagine di contesto */
.s-benefit-grid { display: grid; gap: 16px; max-width: 780px; margin: 0 auto; }
@media (min-width: 768px) { .s-benefit-grid { grid-template-columns: repeat(2, 1fr); } }
.s-benefit-card {
  background: var(--s-card); border: 0.5px solid var(--s-border); border-radius: var(--s-radius);
  padding: 22px; display: flex; gap: 16px; align-items: flex-start;
  transition: transform .25s cubic-bezier(.16,1,.3,1), border-color .25s, box-shadow .25s;
}
.s-benefit-card:hover { transform: translateY(-3px); border-color: #3a3a3a; box-shadow: 0 12px 30px rgba(0,0,0,.35); }
.s-benefit-card__number {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 999px;
  border: 1.5px solid var(--s-red); background: var(--s-red-bg); color: var(--s-red);
  font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.s-benefit-card__body h3 { font-size: 15px; font-weight: 700; margin: 0 0 6px; }
.s-benefit-card__body p { font-size: 13px; color: var(--s-text-muted); line-height: 1.6; margin: 0; }

/* Pagina "Reparto Scouting" — callout numero database */
.s-stat-callout { text-align: center; }
.s-stat-callout__number {
  font-family: 'Archivo', sans-serif; font-weight: 900;
  font-size: 64px; line-height: 1; color: var(--s-red); letter-spacing: -0.02em;
}
@media (min-width: 768px) { .s-stat-callout__number { font-size: 88px; } }
.s-stat-callout__label { font-size: 14px; color: var(--s-text-muted); margin-top: 12px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* Scheda giocatore demo — shell tab */
.s-democard {
  max-width: 920px; margin: 0 auto;
  background: var(--s-card); border: 0.5px solid var(--s-border); border-radius: 16px;
  overflow: hidden;
}
.s-democard__header {
  padding: 24px; border-bottom: 0.5px solid var(--s-border);
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
}
.s-democard__identity { display: flex; align-items: center; gap: 14px; }
.s-democard__avatar {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 999px;
  background: var(--s-red-bg); border: 1.5px solid var(--s-red); color: var(--s-red);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 18px;
}
.s-democard__name { font-size: 18px; font-weight: 800; margin: 0; }
.s-democard__role { font-size: 12px; color: var(--s-text-muted); margin: 2px 0 0; }
.s-democard__rating { text-align: right; }
.s-democard__rating-value { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 36px; color: var(--s-red); line-height: 1; }
.s-democard__rating-label { font-size: 10px; color: var(--s-text-dim); text-transform: uppercase; letter-spacing: .08em; }

.s-democard__tabs {
  display: flex; overflow-x: auto; border-bottom: 0.5px solid var(--s-border);
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.s-democard__tabs::-webkit-scrollbar { display: none; }
.s-democard__tab {
  flex-shrink: 0; padding: 14px 18px; font-size: 13px; font-weight: 700; color: var(--s-text-muted);
  background: transparent; border: none; border-bottom: 2px solid transparent; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: color .15s, border-color .15s;
}
.s-democard__tab:hover { color: var(--s-text); }
.s-democard__tab.is-active { color: var(--s-red); border-bottom-color: var(--s-red); }

.s-democard__body { padding: 24px; }
.s-democard__panel { display: none; }
.s-democard__panel.is-active { display: block; }

.s-democard__grid { display: grid; gap: 16px; }
@media (min-width: 768px) { .s-democard__grid { grid-template-columns: repeat(3, 1fr); } }
.s-democard__box { background: var(--s-bg); border: 0.5px solid var(--s-border); border-radius: var(--s-radius); padding: 16px; }
.s-democard__box h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--s-text-dim); margin: 0 0 14px; }
.s-democard__info-row { display: flex; justify-content: space-between; font-size: 13px; padding: 7px 0; border-bottom: 0.5px solid var(--s-border); }
.s-democard__info-row:last-child { border-bottom: none; }
.s-democard__info-row span:first-child { color: var(--s-text-muted); }
.s-democard__stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.s-democard__stat { text-align: center; }
.s-democard__stat-value { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 22px; }
.s-democard__stat-label { font-size: 11px; color: var(--s-text-muted); }

/* Barre competenze/skill — riusate in Panoramica, Prestazioni, Comparazione */
.s-skillbar { margin-bottom: 12px; }
.s-skillbar:last-child { margin-bottom: 0; }
.s-skillbar__top { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 6px; }
.s-skillbar__top span:last-child { color: var(--s-red); font-weight: 700; }
.s-skillbar__track { height: 6px; border-radius: 999px; background: var(--s-border); overflow: hidden; }
.s-skillbar__fill { height: 100%; background: var(--s-red); border-radius: 999px; }

/* Carriera — timeline verticale */
.s-career { max-width: 600px; margin: 0 auto; }
.s-career__item { display: flex; gap: 16px; padding-bottom: 24px; position: relative; }
.s-career__item:not(:last-child)::before {
  content: ""; position: absolute; left: 5px; top: 22px; bottom: 0; width: 1px; background: var(--s-border);
}
.s-career__item:last-child { padding-bottom: 0; }
.s-career__dot { flex-shrink: 0; width: 11px; height: 11px; border-radius: 999px; background: var(--s-red); margin-top: 4px; }
.s-career__body h4 { font-size: 14px; font-weight: 700; margin: 0 0 2px; }
.s-career__body p { font-size: 12px; color: var(--s-text-muted); margin: 0; }

/* Hub Video */
.s-video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 768px) { .s-video-grid { grid-template-columns: repeat(3, 1fr); } }
.s-video-card {
  position: relative; border-radius: var(--s-radius); overflow: hidden;
  background: var(--s-bg); border: 0.5px solid var(--s-border);
  aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center;
}
.s-video-card__play {
  width: 36px; height: 36px; border-radius: 999px; background: rgba(253,51,51,.9);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px;
}
.s-video-card__tag {
  position: absolute; top: 8px; left: 8px; font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 999px; background: rgba(0,0,0,.6); color: #fff;
}
.s-video-card__duration {
  position: absolute; bottom: 8px; right: 8px; font-size: 10px;
  padding: 2px 6px; border-radius: 4px; background: rgba(0,0,0,.6); color: #fff;
}

/* Scouting Report AI */
.s-report { max-width: 640px; margin: 0 auto; }
.s-report__block { margin-bottom: 20px; }
.s-report__block:last-child { margin-bottom: 0; }
.s-report__block h4 { font-size: 13px; color: var(--s-red); text-transform: uppercase; letter-spacing: .05em; margin: 0 0 8px; }
.s-report__block p { font-size: 14px; color: var(--s-text-muted); line-height: 1.7; margin: 0; }
.s-report__block ul { margin: 0; padding-left: 18px; }
.s-report__block li { font-size: 14px; color: var(--s-text-muted); line-height: 1.7; }

/* Comparazione */
.s-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 640px; margin: 0 auto; }
.s-compare__col h5 { text-align: center; font-size: 13px; margin: 0 0 16px; font-weight: 700; }
.s-compare__col--player h5 { color: var(--s-red); }
.s-compare__col--avg h5 { color: var(--s-text-muted); }
