/* Home — page-specific styles only.
   Shared design system: ../_shared/ronin-shell.css
   Every selector is scoped under .ronin-home. Reuses shared .hero-navy,
   .kpi-band/.kpi-card/.ring/.spark, .section, .service-grid/.service-card,
   .cta-banner, .btn/.badge/.chip/.check-list from ronin-shell.css.
   Page-specific additions below: hero rule, eyebrow label, KPI card
   DB-value tag + info dot + dot-map variant, featured player cards,
   "view all players" side panel, opportunities/news feed card, global
   network panel, how-it-works step row, and the home CTA banner variant. */

/* ---------- hero background (fix: shared .hero-navy ships no
   background of its own — every page that uses it must supply one, or
   the navy hero + purpose box + kpi-band overlap wash out to
   unreadable light text on the page's white background). ---------- */
.ronin-home .hero-navy{
  background:linear-gradient(160deg,var(--navy-900),var(--navy-950));
}

/* ---------- hero rule + eyebrow (shared pattern reused across pages) ---------- */
.ronin-home .hero__rule{
  display:block;
  width:64px;
  height:3px;
  border-radius:2px;
  background:var(--gold);
  margin-top:4px;
}
.ronin-home .eyebrow{
  display:block;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--gold-dark);
  margin-bottom:8px;
}

/* ---------- KPI card additions (DB tag, info icon, dot-map variant) ---------- */
.ronin-home .kpi-card__info{color:var(--gray-500);margin-left:auto;}
.ronin-home .kpi-card__head{position:relative;}
.ronin-home .kpi-card__head h3{flex:1;}
.ronin-home .kpi-card__dbtag{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  color:var(--gray-500);
  margin-bottom:14px;
}

/* ---------- accessible metric explainer (info icon -> tooltip) ---------- */
.ronin-home .sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0;
}
.ronin-home .kpi-card__info-btn{
  display:inline-flex;align-items:center;justify-content:center;
  margin-left:auto;background:none;border:none;padding:2px;cursor:pointer;
  border-radius:50%;
}
.ronin-home .kpi-card__info-btn:focus-visible{outline:2px solid var(--gold);outline-offset:2px;}
.ronin-home .kpi-card__info-tip{
  position:absolute;
  right:0;
  top:calc(100% + 8px);
  z-index:6;
  width:220px;
  background:var(--navy-950);
  color:var(--white);
  font-size:12px;
  line-height:1.5;
  font-weight:500;
  padding:10px 12px;
  border-radius:var(--radius-sm);
  box-shadow:0 8px 24px rgba(10,20,40,.25);
  opacity:0;
  visibility:hidden;
  transform:translateY(-4px);
  transition:opacity .15s ease, transform .15s ease, visibility .15s;
  pointer-events:none;
}
.ronin-home .kpi-card__info-btn:hover + .kpi-card__info-tip,
.ronin-home .kpi-card__info-btn:focus-visible + .kpi-card__info-tip,
.ronin-home .kpi-card__info-tip.is-open{
  opacity:1;visibility:visible;transform:translateY(0);
}
.ronin-home .kpi-card__delta{
  margin-left:auto;
  white-space:nowrap;
}
.ronin-home .kpi-card__metric{flex-wrap:wrap;}
.ronin-home .kpi-card--map .kpi-card__dotmap{
  width:100%;
  height:96px;
  border-radius:var(--radius-sm);
  background:var(--bg-tint);
  margin-bottom:14px;
  overflow:hidden;
}
.ronin-home .kpi-card--map .kpi-card__dotmap svg{width:100%;height:100%;}

/* ---------- keyboard focus + interactivity for rings/sparks ---------- */
.ronin-home .ring:focus-visible,
.ronin-home .spark:focus-visible,
.ronin-home .kpi-card__dotmap:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
  border-radius:6px;
}
.ronin-home .ring,
.ronin-home .kpi-card__dotmap{position:relative;}

/* scroll-triggered draw-in for sparklines (mirrors the ring reveal
   already provided by the shared engine's IntersectionObserver — see
   wp-script.js initSparkReveal()). */
.ronin-home .spark{
  opacity:0;
  transform:translateY(6px);
  transition:opacity .5s ease, transform .5s ease;
}
.ronin-home .spark.is-in-view{opacity:1;transform:translateY(0);}

/* hover/focus tooltip for dots + bars sparklines (the shared engine
   only wires this up for the "area" spark type — wp-script.js adds the
   same .spark-tooltip element for dots/bars so every chart on this
   page is equally interactive). */
.ronin-home .spark{cursor:crosshair;}

/* ---------- featured players grid ---------- */
.ronin-home .home-players-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr 0.9fr;
  gap:20px;
  margin-top:24px;
  align-items:start;
}
.ronin-home .player-card{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card);
  padding:18px 18px 20px;
  position:relative;
  transition:box-shadow .16s ease, transform .16s ease;
}
.ronin-home .player-card:hover{box-shadow:0 8px 24px rgba(15,23,42,.12);transform:translateY(-2px);}
.ronin-home .player-card__stretched-link{position:absolute;inset:0;z-index:1;border-radius:inherit;}
.ronin-home .player-card__top{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:14px;
  position:relative;
}
.ronin-home .player-card__label{font-size:15px;font-weight:700;color:var(--ink);}
.ronin-home .player-card__save{color:var(--gray-500);pointer-events:none;}
.ronin-home .player-card__body{display:flex;gap:14px;margin-bottom:16px;}
.ronin-home .player-card__photo{
  width:104px;height:148px;flex-shrink:0;
  border-radius:var(--radius-md);
  background:var(--gray-100);
  color:var(--gray-500);
  display:flex;align-items:center;justify-content:center;
}
.ronin-home .player-card__photo svg{width:52px;height:52px;}
.ronin-home .player-card__facts{display:flex;flex-direction:column;gap:5px;flex:1;}
.ronin-home .player-card__facts div{display:flex;align-items:baseline;gap:6px;}
.ronin-home .player-card__facts dt{font-size:12px;color:var(--gray-500);width:32px;}
.ronin-home .player-card__facts dd{font-size:12px;font-weight:600;color:var(--ink);margin:0;}
.ronin-home .player-card__facts .badge{margin-top:4px;margin-bottom:0;width:fit-content;}
.ronin-home .player-card__club{display:flex;flex-direction:column;align-items:flex-start;gap:4px;}
.ronin-home .player-card__club-name{font-size:12px;font-weight:600;color:var(--ink);}
.ronin-home .player-card__club-logo{width:28px;height:28px;object-fit:contain;border-radius:3px;flex-shrink:0;}
.ronin-home .player-card__club-logo--placeholder{background:var(--gray-200);border-radius:50%;}
.ronin-home .badge--gold-solid{background:var(--gold);color:var(--navy-950);}
.ronin-home .player-card__attrs{padding-top:14px;border-top:1px solid var(--gray-200);}
.ronin-home .player-card__attrs-label{
  display:block;
  font-size:10px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;
  color:var(--gray-500);margin-bottom:10px;
}
.ronin-home .attr-bar-list{display:flex;flex-direction:column;gap:8px;margin-bottom:16px;}
.ronin-home .attr-bar-list div{display:grid;grid-template-columns:64px 1fr 30px;align-items:center;gap:8px;}
.ronin-home .attr-bar-list dt{font-size:12px;color:var(--ink-soft);}
.ronin-home .attr-bar-list dd{font-size:12px;color:var(--gray-500);text-align:right;margin:0;}
.ronin-home .attr-bar{
  display:block;
  height:5px;
  border-radius:3px;
  background:var(--gray-200);
  overflow:hidden;
}
.ronin-home .attr-bar__fill{
  display:block;
  height:100%;
  border-radius:3px;
  background:var(--gold);
}
.ronin-home .attr-bar__fill[data-attr="pace"]{background:#3F7EE8;}
.ronin-home .attr-bar__fill[data-attr="technique"]{background:#7C5CD6;}
.ronin-home .attr-bar__fill[data-attr="vision"]{background:#159895;}
.ronin-home .attr-bar__fill[data-attr="strength"]{background:#B0432F;}
.ronin-home .attr-bar__fill[data-attr="work-rate"]{background:#1E6B45;}
.ronin-home .player-card__meta{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
  padding-top:14px;
  border-top:1px solid var(--gray-200);
  margin-bottom:14px;
}
.ronin-home .player-card__meta dt{font-size:10px;color:var(--gray-500);margin-bottom:3px;}
.ronin-home .player-card__meta dd{font-size:12px;font-weight:700;color:var(--ink);margin:0;}
.ronin-home .form-dots{display:flex;gap:3px;}
.ronin-home .form-dots__dot{width:7px;height:7px;border-radius:50%;background:var(--gray-200);}
.ronin-home .form-dots__dot--on{background:var(--green);}
.ronin-home .player-card__cta{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  width:100%;
  margin-top:14px;
  padding:10px 14px;
  border-radius:var(--radius-md);
  border:1.5px solid var(--gray-200);
  color:var(--navy-950);
  font-size:12px;
  font-weight:800;
  text-decoration:none;
  transition:border-color .16s ease, color .16s ease, background .16s ease;
}
.ronin-home .player-card__cta:hover,
.ronin-home .player-card__cta:focus-visible{
  border-color:var(--gold);
  background:var(--gold-tint,#fdf3dd);
  color:var(--gold-dark,#8a6416);
}
.ronin-home .player-card__cta svg{width:14px;height:14px;flex-shrink:0;}
.ronin-home .player-card__source{
  font-size:10px;
  line-height:1.5;
  color:var(--gray-500);
  background:var(--bg-tint);
  border-radius:var(--radius-sm);
  padding:8px 10px;
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
}

/* ---------- "view all players" side panel ---------- */
.ronin-home .players-cta-card{
  background:linear-gradient(160deg,var(--navy-900),var(--navy-950));
  border-radius:var(--radius-lg);
  padding:22px 20px;
  color:var(--white);
}
.ronin-home .players-cta-card h3{font-size:16px;font-weight:700;margin-bottom:8px;}
.ronin-home .players-cta-card p{font-size:12px;color:#b7c1d6;line-height:1.55;margin-bottom:18px;}
.ronin-home .players-cta-card__link{color:var(--gold);font-weight:600;}
.ronin-home .players-cta-card__stats{display:flex;flex-direction:column;gap:14px;margin-bottom:18px;}
.ronin-home .players-cta-card__stats > div{
  display:grid;
  grid-template-columns:22px 1fr auto;
  align-items:center;
  gap:8px;
  row-gap:6px;
}
.ronin-home .players-cta-card__stat-icon{
  width:22px;height:22px;
  border-radius:6px;
  background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);
}
.ronin-home .players-cta-card__stats dt{font-size:12px;color:#c9d2e2;}
.ronin-home .players-cta-card__stats dd{font-size:12px;font-weight:700;color:var(--white);margin:0;}
.ronin-home .players-cta-card__pct{grid-column:3;font-size:10px;font-weight:700;color:#b7c1d6;justify-self:end;}
.ronin-home .players-cta-card__bar{
  grid-column:1 / -1;
  display:block;
  height:4px;
  border-radius:3px;
  background:rgba(255,255,255,.12);
  overflow:hidden;
}
.ronin-home .players-cta-card__bar span{display:block;height:100%;border-radius:3px;}
.ronin-home .players-cta-card__btn{width:100%;justify-content:center;}

/* ---------- service card additions ---------- */
.ronin-home .service-card__source{
  font-size:10px;
  line-height:1.5;
  color:var(--gray-500);
  background:var(--bg-tint);
  border-radius:var(--radius-sm);
  padding:8px 10px;
  margin-top:10px;
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
}
.ronin-home .service-card__verified{
  display:inline-flex;align-items:center;gap:5px;
  margin-top:12px;
}
.ronin-home .service-card__verified svg{width:12px;height:12px;}

/* ---------- opportunities/news feed + global network panel ---------- */
.ronin-home .home-feed-grid{
  display:grid;
  grid-template-columns:minmax(0,1.3fr) minmax(0,1fr);
  gap:20px;
  align-items:stretch;
}
.ronin-home .feed-card{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card);
  padding:22px 22px 20px;
}
.ronin-home .feed-card h3{font-size:16px;font-weight:700;margin-bottom:16px;}
.ronin-home .feed-filter{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:16px;}
.ronin-home .feed-filter__tab{
  font-size:12px;font-weight:700;letter-spacing:.02em;text-transform:uppercase;
  padding:6px 13px;border-radius:999px;border:1px solid var(--gray-200,#e6e9ef);
  background:#fff;color:var(--ink-soft,#4a5568);cursor:pointer;
  transition:background .15s ease,color .15s ease,border-color .15s ease;
}
.ronin-home .feed-filter__tab:hover{border-color:var(--gold,#eab040);color:var(--ink,#0b1f3a);}
.ronin-home .feed-filter__tab.is-active{background:var(--ink,#0b1f3a);border-color:var(--ink,#0b1f3a);color:#fff;}
.ronin-home .feed-list{display:flex;flex-direction:column;gap:16px;margin-bottom:16px;}
.ronin-home .feed-list li{display:flex;align-items:stretch;gap:12px;}
.ronin-home .feed-list li[hidden]{display:none;}
.ronin-home .feed-list__bar{width:3px;border-radius:2px;flex-shrink:0;align-self:stretch;}
.ronin-home .feed-list__bar--green{background:var(--green);}
.ronin-home .feed-list__bar--blue{background:var(--blue-ring);}
.ronin-home .feed-list__bar--gold{background:var(--gold);}
.ronin-home .feed-list__bar--purple{background:var(--purple);}
.ronin-home .feed-list__bar--gray{background:var(--gray-500);}
.ronin-home .feed-list__body{flex:1;min-width:0;}
.ronin-home .feed-list__row{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:4px;}
.ronin-home .feed-list__title{font-size:12px;font-weight:700;color:var(--ink);}
.ronin-home .feed-list__desc{font-size:12px;color:var(--ink-soft);margin-bottom:6px;}
.ronin-home .feed-list__source{
  font-size:10px;
  color:var(--gray-500);
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
}
.ronin-home .feed-list__time{font-size:12px;color:var(--gray-500);white-space:nowrap;flex-shrink:0;}
.ronin-home .feed-card__link{
  display:inline-flex;align-items:center;gap:6px;
  font-size:12px;font-weight:600;color:var(--blue-ring);
}
.ronin-home .feed-list__empty-note{
  font-size:12px;color:var(--gray-500);background:var(--bg-tint);
  border-radius:var(--radius-sm);padding:14px 16px;margin-bottom:16px;
}

.ronin-home .network-card{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-lg);
  background:linear-gradient(160deg,var(--navy-900),var(--navy-950));
  padding:22px 22px 24px;
  isolation:isolate;
}
.ronin-home .network-card .bg-network{opacity:.55;}
.ronin-home .network-card__content{position:relative;z-index:1;}
.ronin-home .network-card h3{color:var(--white);font-size:16px;font-weight:700;margin-bottom:4px;}
.ronin-home .network-card > .network-card__content > p{color:#b7c1d6;font-size:12px;margin-bottom:16px;}
.ronin-home .network-card__facts{display:flex;gap:24px;margin-bottom:16px;}
.ronin-home .network-card__facts dt{font-size:12px;color:#8996ad;line-height:1.4;margin-bottom:4px;}
.ronin-home .network-card__facts dd{font-size:12px;font-weight:700;color:var(--gold);margin:0;}
.ronin-home .network-card .check-list{margin:0 0 18px;}

/* ---------- how it works steps ---------- */
.ronin-home .steps-row{
  display:grid;
  grid-template-columns:1fr 32px 1fr 32px 1fr 32px 1fr;
  gap:0;
  align-items:start;
  margin-top:24px;
}
.ronin-home .steps-row__connector{
  display:block;
  height:2px;
  margin-top:37px;
  background-image:linear-gradient(to right, var(--gray-200) 50%, transparent 0%);
  background-size:8px 2px;
  background-repeat:repeat-x;
  position:relative;
}
.ronin-home .steps-row__connector::after{
  content:"";
  position:absolute;
  right:-2px;top:-3px;
  width:8px;height:8px;
  border-radius:50%;
  background:var(--gold);
}
.ronin-home .step-card{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card);
  padding:20px 18px;
}
.ronin-home .step-card__num{
  display:inline-flex;align-items:center;justify-content:center;
  width:34px;height:34px;
  border-radius:50%;
  border:1.5px solid var(--gold);
  color:var(--gold-dark);
  font-size:12px;font-weight:800;
  margin-bottom:14px;
}
.ronin-home .step-card__num--done{
  border-color:var(--green);
  background:var(--green);
  color:var(--white);
}
.ronin-home .step-card__icon{margin-bottom:12px;color:var(--ink-soft);}
.ronin-home .step-card h3{font-size:15px;font-weight:700;margin-bottom:6px;}
.ronin-home .step-card p{font-size:12px;color:var(--ink-soft);line-height:1.5;margin-bottom:10px;min-height:38px;}
.ronin-home .step-card__source{
  display:block;
  font-size:10px;
  color:var(--gray-500);
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
  margin-bottom:12px;
}

/* ---------- home closing CTA banner variant ---------- */
.ronin-home .cta-banner--home{
  position:relative;
  overflow:hidden;
}
.ronin-home .cta-banner__badge{
  display:inline-block;
  font-size:10px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  color:var(--gold);
  background:rgba(234,176,64,.12);
  border:1px solid rgba(234,176,64,.35);
  border-radius:999px;
  padding:4px 12px;
  align-self:flex-start;
}
.ronin-home .cta-banner__crest{
  margin-left:auto;
  width:56px;height:56px;
  color:var(--gold);
  opacity:.5;
}
.ronin-home .cta-banner__crest svg{width:100%;height:100%;}

/* ---------- network entry CTA (rear-view player + pathway cards) ---------- */
.ronin-home .network-entry-cta{
  position:relative;
  overflow:hidden;
  background:var(--navy-950);
  min-height:340px;
}
.ronin-home .network-entry-cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(55% 80% at 80% 25%,rgba(63,126,232,.16),transparent 70%);
  pointer-events:none;
}
.ronin-home .network-entry-cta__player{
  display:block;
  position:absolute;
  left:0;bottom:0;
  width:230px;
  height:372px;
  background-repeat:no-repeat;
  background-position:bottom center;
  background-size:contain;
}
.ronin-home .network-entry-cta__row{
  position:relative;
  display:flex;
  align-items:stretch;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  padding:76px 0;
}
.ronin-home .network-entry-cta__content{
  flex:0 0 600px;
  min-width:0;
  padding-left:65px;
  box-sizing:border-box;
}
.ronin-home .network-entry-cta__content .eyebrow{color:var(--gold);margin-bottom:10px;}
.ronin-home .network-entry-cta__title{
  color:var(--white);
  font-size:27px;
  font-weight:800;
  line-height:1.25;
  margin:0 0 12px;
  white-space:normal;
}
.ronin-home .network-entry-cta__desc{
  color:#b7c1d6;
  font-size:12px;
  line-height:1.6;
  max-width:62ch;
  margin:0 0 18px;
}
.ronin-home .network-entry-cta__chip{
  display:inline-flex;align-items:center;gap:6px;
  background:transparent;
  color:var(--gold);
  border:1px solid var(--gold);
  border-radius:999px;
  padding:6px 14px;
  font-size:12px;font-weight:700;
  margin-bottom:20px;
}
.ronin-home .network-entry-cta__chip svg{width:13px;height:13px;}
.ronin-home .network-entry-cta__actions{
  display:flex;align-items:center;gap:20px;flex-wrap:wrap;
}
.ronin-home .network-entry-cta__cta{padding-left:34px;padding-right:34px;}
.ronin-home .network-entry-cta__verify{
  display:inline-flex;align-items:center;gap:7px;
  color:#8fa0ba;font-size:12px;font-weight:600;
}
.ronin-home .network-entry-cta__verify svg{width:16px;height:16px;color:var(--gold);}
.ronin-home .network-entry-cta__paths{
  position:relative;
  display:flex;gap:16px;flex-wrap:wrap;
  align-items:stretch;
  flex:0 1 380px;
}
.ronin-home .network-entry-cta__path-card{
  display:flex;
  flex-direction:column;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(234,176,64,.35);
  border-radius:var(--radius-lg);
  padding:20px 22px 24px;
  min-width:170px;
  flex:1 1 0;
}
.ronin-home .network-entry-cta__path-card h3{color:var(--white);font-size:15px;font-weight:700;margin:0 0 6px;}
.ronin-home .network-entry-cta__path-card p{color:#8fa0ba;font-size:12px;line-height:1.5;margin:0;}
.ronin-home .network-entry-cta__path-card .btn{font-size:12px;padding:9px 16px;width:100%;justify-content:center;margin-top:auto;}

@media (max-width:900px){
  .ronin-home .network-entry-cta__player{position:static;width:100%;height:220px;-webkit-mask-image:linear-gradient(to bottom,#000 70%,transparent 100%);mask-image:linear-gradient(to bottom,#000 70%,transparent 100%);}
  .ronin-home .network-entry-cta__row{flex-direction:column;align-items:stretch;padding-top:0;}
  .ronin-home .network-entry-cta__content{padding-left:0;padding-top:24px;}
  .ronin-home .network-entry-cta__paths{width:100%;}
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1024px){
  .ronin-home .home-players-grid{grid-template-columns:1fr 1fr;}
  .ronin-home .players-cta-card{grid-column:1 / -1;}
  .ronin-home .home-feed-grid{grid-template-columns:minmax(0,1fr);}
  .ronin-home .steps-row{grid-template-columns:1fr 1fr;gap:16px;}
  .ronin-home .steps-row__connector{display:none;}
}

@media (max-width:720px){
  .ronin-home .home-players-grid{grid-template-columns:1fr;}
  .ronin-home .player-card__meta{grid-template-columns:repeat(2,1fr);}
  .ronin-home .steps-row{grid-template-columns:1fr;}
  .ronin-home .steps-row__connector{display:none;}
  .ronin-home .cta-banner__crest{display:none;}
  /* Longer translated strings (RU/DE) don't fit a single nowrap line at
     this width - let the delta chip wrap onto its own full-width row
     instead of forcing the card wider than the viewport. */
  .ronin-home .kpi-card__delta{white-space:normal;margin-left:0;max-width:100%;}
}

/* Exact Ronin Countries reached world-network chart. */
.ronin-home .home-world-network{position:relative;height:96px;padding:0;background:#f7f9fc;border:1px solid #e4e9f1;overflow:hidden;}
.ronin-home .home-world-network svg{width:100%;height:100%;display:block;}
.ronin-home .home-world-grid{fill:none;stroke:#e5eaf2;stroke-width:.55;opacity:.72;}
.ronin-home .home-world-land{fill:#dfe6ef;stroke:#cbd5e1;stroke-width:.8;}
.ronin-home .home-world-routes{fill:none;stroke:#e0a329;stroke-width:1.15;stroke-linecap:round;stroke-dasharray:3 4;opacity:.68;animation:homeWorldRoute 4s linear infinite;}
.ronin-home .home-world-point{cursor:pointer;outline:none;}
.ronin-home .home-world-point circle:not(.home-world-pulse){fill:#159b67;stroke:#fff;stroke-width:1.7;filter:drop-shadow(0 2px 4px rgba(8,29,54,.2));transition:r .16s ease,fill .16s ease;}
.ronin-home .home-world-point:hover circle:not(.home-world-pulse),.ronin-home .home-world-point:focus circle:not(.home-world-pulse){fill:#e3a52a;r:4.6px;}
.ronin-home .home-world-pulse{fill:url(#homeReachPulse);transform-box:fill-box;transform-origin:center;animation:homeWorldPulse 2.4s ease-in-out infinite;}
.ronin-home .home-world-tooltip{position:absolute;z-index:3;left:50%;bottom:5px;transform:translateX(-50%);padding:4px 7px;border-radius:4px;background:#071b33;color:#fff;font-size:10px;font-weight:700;line-height:1;white-space:nowrap;box-shadow:0 4px 10px rgba(7,27,51,.2);}
@keyframes homeWorldRoute{to{stroke-dashoffset:-28;}}
@keyframes homeWorldPulse{0%,100%{opacity:.45;transform:scale(.78)}50%{opacity:1;transform:scale(1.12)}}
@media (prefers-reduced-motion:reduce){.ronin-home .home-world-routes,.ronin-home .home-world-pulse{animation:none;}}

/* WordPress-safe light content canvas: the Ronin Home hero remains navy. */
.ronin-home{background:var(--white);color:var(--ink);font-family:var(--font);display:flow-root;}
.ronin-home > main{display:block;background:var(--white);color:var(--ink);}
.ronin-home > main > .section{background:var(--white);}
.ronin-home > main > .section.section--tint{background:var(--bg-tint);}
.ronin-home > main .section__title{color:var(--ink);}
.ronin-home > main .section__subtitle{color:var(--gray-500);}

/* Exact Home reference detail pass: preserve component geometry and icon treatment. */
.ronin-home .player-card__save{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:6px;color:#6f7c90;transition:color .16s ease,background .16s ease;}
.ronin-home .player-card__save:hover,.ronin-home .player-card__save:focus-visible{color:var(--gold-dark);background:var(--gold-tint);outline:none;}
.ronin-home .player-card__photo{overflow:hidden;}
.ronin-home .player-card__photo img{width:100%;height:100%;object-fit:cover;object-position:50% 12%;display:block;}
.ronin-home .form-dots--gold .form-dots__dot--on{background:var(--gold);}
.ronin-home .attr-bar:focus-visible,.ronin-home .players-cta-card__stats>div:focus-visible,.ronin-home .service-card__metric-grid>div:focus-visible{outline:2px solid var(--gold);outline-offset:3px;border-radius:4px;}

.ronin-home .service-card{padding:20px 20px 18px;}
.ronin-home .service-card__heading{display:flex;align-items:flex-start;gap:13px;min-height:64px;}
.ronin-home .service-card__heading h3{margin:2px 0 5px;}
.ronin-home .service-card__heading p{min-height:0;margin:0;}
.ronin-home .service-card__icon{width:42px;height:42px;min-width:42px;border-radius:50%;margin:0;color:#fff;box-shadow:0 8px 18px rgba(10,29,56,.12);}
.ronin-home .service-card__icon--orange{background:#d99a16;color:#fff;}
.ronin-home .service-card__icon--blue{background:var(--navy-900);color:#fff;}
.ronin-home .service-card__icon--green{background:var(--green);color:#fff;}
.ronin-home .service-card--simple{
  display:flex;
  align-items:flex-start;
  gap:14px;
  text-decoration:none;
  transition:border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.ronin-home .service-card--simple:hover{
  border-color:var(--gold);
  box-shadow:0 8px 20px rgba(15,23,42,.1);
  transform:translateY(-2px);
}
.ronin-home .service-card--simple h3{margin:2px 0 4px;font-size:15px;color:var(--ink);}
.ronin-home .service-card--simple p{margin:0;font-size:12px;color:var(--gray-500);line-height:1.5;}
.ronin-home .service-card__source{position:relative;min-height:52px;padding-right:34px;border:1px solid #eadfc7;background:#fffaf0;}
.ronin-home .service-card__db-icon{position:absolute;right:10px;top:50%;transform:translateY(-50%);font-size:18px;color:#9a8d78;}
.ronin-home .service-card__verified{margin-bottom:12px;}
.ronin-home .service-card__metric-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:2px;padding-top:12px;border-top:1px solid var(--gray-200);}
.ronin-home .service-card__metric-grid>div{display:grid;grid-template-columns:1fr auto;gap:5px 8px;min-width:0;}
.ronin-home .service-card__metric-grid dt{font-size:10px;color:var(--gray-500);white-space:normal;}
.ronin-home .service-card__metric-grid dd{font-size:12px;font-weight:800;color:var(--ink);text-align:right;margin:0;}
.ronin-home .service-card__bar{grid-column:1/-1;height:4px;border-radius:999px;background:var(--gray-200);overflow:hidden;}
.ronin-home .service-card__bar span{display:block;height:100%;border-radius:inherit;background:var(--green);transition:width .6s ease;}
.ronin-home .service-card:nth-child(2) .service-card__bar span{background:var(--blue-ring);}
.ronin-home .service-card:nth-child(3) .service-card__bar span{background:var(--green);}

.ronin-home .feed-list li{align-items:center;gap:10px;}
.ronin-home .feed-list__icon{width:34px;height:34px;min-width:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--gray-100);color:var(--ink-soft);}
.ronin-home .feed-list__icon svg{width:17px;height:17px;}
.ronin-home .feed-list__icon--green{color:var(--green);}.ronin-home .feed-list__icon--blue{color:var(--blue-ring);}.ronin-home .feed-list__icon--gold{color:var(--gold-dark);}
.ronin-home .feed-list__time{display:flex;align-items:center;gap:6px;}
.ronin-home .feed-list__time i{width:7px;height:7px;border-radius:50%;background:var(--green);}
.ronin-home .feed-list li:nth-child(2) .feed-list__time i{background:var(--blue-ring);}
.ronin-home .feed-list li:nth-child(3) .feed-list__time i{background:var(--gold);}

.ronin-home .network-card{padding:18px 20px 16px;display:flex;flex-direction:column;min-height:100%;}
.ronin-home .network-card__content{position:relative;z-index:2;}
.ronin-home .network-card__visual{position:relative;z-index:1;height:132px;margin:0 -4px 8px;border:0;background:transparent;overflow:visible;}
.ronin-home .network-card__visual svg{width:100%;height:100%;display:block;}
.ronin-home .network-card__land{fill:url(#networkDots);opacity:.9;}
.ronin-home .network-card__routes{fill:none;stroke:var(--gold);stroke-width:1.4;stroke-linecap:round;opacity:.8;filter:url(#networkGlow);stroke-dasharray:5 4;animation:homeWorldRoute 4s linear infinite;}
.ronin-home .network-card__nodes circle{fill:var(--gold);stroke:#fff4cf;stroke-width:1.5;filter:url(#networkGlow);}
.ronin-home .network-card__node{cursor:pointer;outline:none;}
.ronin-home .network-card__node .network-card__halo{fill:rgba(234,176,64,.24);stroke:none;animation:homeNetworkPulse 2.4s ease-in-out infinite;transform-origin:center;}
.ronin-home .network-card__node .network-card__node-core{fill:var(--gold);stroke:#fff4cf;stroke-width:1.5;filter:url(#networkGlow);transition:r .15s ease,stroke-width .15s ease;}
.ronin-home .network-card__node:hover .network-card__node-core,
.ronin-home .network-card__node:focus .network-card__node-core{r:5.6;stroke-width:2.2;}
.ronin-home .network-card__tooltip{bottom:2px;background:#fff;color:#071b33;}
@keyframes homeNetworkPulse{0%,100%{opacity:.35}50%{opacity:.85}}

.ronin-home .network-card__fact-grid{position:relative;z-index:2;display:grid;grid-template-columns:repeat(4,1fr);border:1px solid rgba(255,255,255,.1);border-radius:6px;margin-bottom:12px;}
.ronin-home .network-card__fact-grid>div{min-width:0;padding:10px 8px;border-right:1px solid rgba(255,255,255,.09);}
.ronin-home .network-card__fact-grid>div:last-child{border-right:0;}
.ronin-home .network-card__fact-grid span{display:block;width:22px;height:22px;color:var(--gold);margin-bottom:5px;}
.ronin-home .network-card__fact-grid span svg{width:100%;height:100%;}
.ronin-home .network-card__fact-grid small{display:block;color:#9daabd;font-size:10px;line-height:1.35;min-height:27px;}
.ronin-home .network-card__fact-grid strong{display:block;color:var(--gold);font-size:12px;line-height:1.25;margin-top:3px;overflow-wrap:anywhere;}
.ronin-home .network-card__button{align-self:flex-start;min-width:150px;justify-content:center;}

.ronin-home .steps-row{grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;align-items:stretch;}
.ronin-home .steps-row__connector{display:none;}
.ronin-home .step-card{position:relative;padding:68px 17px 18px;min-height:226px;overflow:visible;}
.ronin-home .step-card__num{position:absolute;top:16px;left:16px;margin:0;width:34px;height:34px;background:#fff;z-index:2;}
.ronin-home .step-card__icon{position:absolute;top:15px;left:66px;width:36px;height:36px;padding:8px;margin:0;border:1.5px solid var(--navy-800);border-radius:50%;background:#fff;color:var(--navy-800);z-index:2;}
.ronin-home .step-card__icon--done{background:var(--navy-900);border-color:var(--navy-900);color:#fff;}
.ronin-home .step-card::before{content:"";position:absolute;top:32px;left:102px;right:-14px;height:2px;background-image:linear-gradient(to right,var(--gray-300) 50%,transparent 0);background-size:8px 2px;background-repeat:repeat-x;z-index:1;}
.ronin-home .step-card::after{content:"";position:absolute;top:29px;right:9px;width:8px;height:8px;border-radius:50%;background:var(--gold);z-index:2;}
.ronin-home .step-card:last-of-type::before,.ronin-home .step-card:last-of-type::after{display:none;}
.ronin-home .step-card h3{margin-top:0;}

.ronin-home .kpi-card--map .home-world-network{height:108px;background:#fff;border:0;}
.ronin-home .home-world-land--dots{stroke:none;}
.ronin-home .home-world-land--dots path{stroke:none;}

@media(max-width:1024px){.ronin-home .network-card__fact-grid{grid-template-columns:repeat(2,1fr)}.ronin-home .network-card__fact-grid>div:nth-child(2){border-right:0}.ronin-home .steps-row{grid-template-columns:repeat(2,1fr)}.ronin-home .step-card:nth-of-type(2)::before,.ronin-home .step-card:nth-of-type(2)::after{display:none}}
@media(max-width:720px){.ronin-home .service-card__metric-grid{grid-template-columns:1fr}.ronin-home .network-card__fact-grid{grid-template-columns:1fr}.ronin-home .network-card__fact-grid>div{border-right:0;border-bottom:1px solid rgba(255,255,255,.09)}.ronin-home .steps-row{grid-template-columns:1fr}.ronin-home .step-card::before,.ronin-home .step-card::after{display:none}}

.ronin-home .feed-list__media{width:52px;height:52px;min-width:52px;border-radius:6px;overflow:hidden;display:block;background:var(--gray-100);border:1px solid var(--gray-200);}
.ronin-home .feed-list__media img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .2s ease;}
.ronin-home .feed-list__media:hover img,.ronin-home .feed-list__media:focus-visible img{transform:scale(1.06);}
.ronin-home .feed-list__media:focus-visible{outline:2px solid var(--gold);outline-offset:2px;}
.ronin-home .feed-list__media--icon{display:flex;align-items:center;justify-content:center;}
.ronin-home .feed-list__media--icon svg{width:24px;height:24px;}
.ronin-home .feed-list__media--icon-blue{color:var(--blue-ring);background:var(--blue-tint);}
.ronin-home .feed-list__media--icon-green{color:var(--green);background:var(--green-tint);}
.ronin-home .feed-list__media--icon-gold{color:var(--gold-dark);background:var(--gold-tint);}
.ronin-home .feed-list__media--icon-purple{color:var(--purple);background:var(--purple-tint);}
.ronin-home .feed-list__media--icon-gray{color:var(--ink-soft);background:var(--gray-100);}
.ronin-home .feed-list__media--empty{background:linear-gradient(135deg,var(--gray-100),var(--gray-200));}

/* UI 01/63: exact How It Works icon and connector treatment. */
.ronin-home .step-card__icon{
  top:20px;
  left:70px;
  width:25px;
  height:25px;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  color:var(--navy-800);
}
.ronin-home .step-card__icon--done{
  top:19px;
  width:27px;
  height:27px;
  padding:3px;
  border-radius:50%;
  background:var(--navy-900);
  color:#fff;
}
.ronin-home .step-card:not(:last-child)::before{
  display:block;
  top:31px;
  left:104px;
  right:-31px;
  height:2px;
  background:repeating-linear-gradient(90deg,#b7c1cf 0 7px,transparent 7px 13px);
  z-index:3;
}
.ronin-home .step-card:not(:last-child)::after{
  display:block;
  top:27px;
  right:-31px;
  width:9px;
  height:9px;
  background:var(--gold);
  z-index:4;
}

/* ---------- scroll reveal (fade + slide-up on first entry into view) ---------- */
.ronin-home .reveal-up{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .55s ease, transform .55s ease;
}
.ronin-home .reveal-up.is-revealed{
  opacity:1;
  transform:translateY(0);
}
@media (prefers-reduced-motion:reduce){
  .ronin-home .reveal-up{opacity:1;transform:none;transition:none;}
}

/* ==========================================================================
   Hero (light) — replaces the old dark .hero-navy for this page only, per
   the Homepage mockup (2026-07-21). White surface, real player-card network
   visual, real featured-trio data (see PMA_Ronin_Runtime::home_hero_trio_tokens()).
   ========================================================================== */
.ronin-home .hero-light{
  background:linear-gradient(180deg,#fbfdff 0%,#ffffff 55%);
  padding:28px 0 4px;
}
.ronin-home .hero-light .container{position:relative;max-width:1600px;padding-inline:40px;}
/* Optional editor-chosen background photo (Gutenberg "Choose image" control
   on the ronin-hero block) - defaults to none, so the plain gradient above
   is untouched unless the user actually picks an image. */
.ronin-home .hero-light--has-bg{
  background-size:cover;
  background-position:center;
  position:relative;
}
.ronin-home .hero-light--has-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(100deg,#fbfdffee 0%,#fbfdffcc 42%,#fbfdff66 68%,#fbfdff22 100%);
  pointer-events:none;
}
.ronin-home .hero-light--has-bg .hero-light__grid{position:relative;z-index:1;}
.ronin-home .hero-light__grid{
  display:grid;
  grid-template-columns:minmax(0,560px) minmax(0,1fr);
  gap:40px;
  align-items:center;
}
.ronin-home .eyebrow--live{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--green);
  font-size:12px;
  font-weight:800;
  letter-spacing:.09em;
  text-transform:uppercase;
  margin-bottom:10px;
}
.ronin-home .live-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 4px var(--green-tint);
  animation:heroLiveDotPulse 2.2s ease-in-out infinite;
}
@keyframes heroLiveDotPulse{
  0%,100%{box-shadow:0 0 0 4px var(--green-tint);}
  50%{box-shadow:0 0 0 7px var(--green-tint);}
}
.ronin-home .hero-light__title{
  margin:0 0 18px;
  font-family:var(--font-display,inherit);
  font-weight:800;
  font-size:clamp(34px,4vw,52px);
  line-height:1.04;
  letter-spacing:-.01em;
  color:var(--ink,var(--navy-950));
}
.ronin-home .hero-light__subtitle{
  max-width:480px;
  margin:0 0 30px;
  color:#5b6b82;
  font-size:16px;
  line-height:1.6;
}
.ronin-home .hero-light__ctas{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:38px;
}
.ronin-home .hero-light__ctas .btn{height:48px;padding:0 24px;font-size:15px;font-weight:800;}
.ronin-home .btn--outline-navy{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#fff;
  border:1.5px solid #cfd8e6;
  color:var(--navy-950);
  border-radius:10px;
  text-decoration:none;
  transition:border-color .18s ease,color .18s ease;
}
.ronin-home .btn--outline-navy:hover{border-color:var(--navy-700);}
.ronin-home .hero-light__proof{
  display:flex;
  align-items:flex-start;
  gap:0;
  padding-top:26px;
  border-top:1px solid #e8ecf3;
  max-width:none;
}
.ronin-home .proof-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 22px;
  border-right:1px solid #e8ecf3;
  white-space:nowrap;
}
.ronin-home .proof-item:first-child{padding-left:0;}
.ronin-home .proof-item:last-child{border-right:0;padding-right:0;}
.ronin-home .proof-item__fifa{width:34px;height:auto;flex:0 0 auto;}
.ronin-home .proof-item__icon{width:22px;height:22px;flex:0 0 auto;color:var(--green);}
.ronin-home .proof-item__text{display:flex;flex-direction:column;line-height:1.35;}
.ronin-home .proof-item__text strong{color:var(--blue-ring);font-size:12px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;}
.ronin-home .proof-item__text span{color:#7b8aa0;font-size:12px;}

/* ---------- hero right column: dotted map + overlapping real player cards ---------- */
.ronin-home .hero-light__visual{
  position:relative;
  display:flex;
  align-items:center;
  min-height:420px;
}
.ronin-home .hero-map-panel{
  position:absolute;
  left:392px;
  right:0;
  top:-70px;
  bottom:-50px;
  z-index:0;
  overflow:hidden;
}
.ronin-home .hero-map-panel__img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:left center;
  display:block;
  opacity:.9;
}
.ronin-home .hero-map-tags{
  position:absolute;
  left:392px;
  right:0;
  top:-70px;
  bottom:-50px;
  z-index:3;
  pointer-events:none;
}
.ronin-home .hero-map-tags .hero-map-tag{pointer-events:auto;}
.ronin-home .hero-light__map{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:1;
}
.ronin-home .hero-light__route{
  stroke:var(--blue-ring);
  stroke-width:1.6;
  stroke-dasharray:2 5;
  opacity:.55;
}
.ronin-home .hero-map-node circle{fill:var(--blue-ring);}
.ronin-home .hero-map-node--nigeria circle:not(.hero-map-node__pulse){fill:var(--green);}
.ronin-home .hero-map-node__pulse{fill:var(--green);opacity:.18;}
.ronin-home .hero-map-tag{
  position:absolute;
  z-index:3;
  transform:translate(-50%,-100%);
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  font-size:10px;
  font-weight:800;
  letter-spacing:.05em;
  line-height:1.3;
  white-space:nowrap;
  z-index:2;
}
.ronin-home .hero-map-tag small{font-weight:600;letter-spacing:.03em;opacity:.8;font-size:10px;text-transform:uppercase;}
.ronin-home .hero-map-tag--nigeria{background:var(--green-tint);color:var(--green);}
.ronin-home .hero-map-tag--russia{background:var(--blue-tint);color:var(--blue-ring);}

.ronin-home .hero-cards{
  position:relative;
  z-index:2;
  flex:0 0 auto;
  width:410px;
  height:380px;
}
.ronin-home .hero-card{
  position:absolute;
  width:168px;
  border-radius:16px;
  overflow:hidden;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(3px);
  box-shadow:0 18px 40px rgba(15,23,42,.14);
  border:1px solid rgba(255,255,255,.6);
  transition:transform .28s ease, box-shadow .28s ease;
}
.ronin-home .hero-card__link:hover .hero-card,
.ronin-home .hero-card__link:focus-visible .hero-card{
  transform:translateY(-6px);
  box-shadow:0 26px 48px rgba(15,23,42,.22);
}
.ronin-home .hero-card__photo{
  display:block;
  width:100%;
  height:150px;
  object-fit:cover;
  transition:transform .35s ease;
  background:#dde3ec;
}
.ronin-home .hero-card__info{
  padding:10px 12px 12px;
  display:flex;
  flex-direction:column;
  gap:4px;
  background:rgba(255,255,255,.92);
}
.ronin-home .hero-card__info strong{font-size:12px;font-weight:700;color:var(--navy-950);line-height:1.25;}
.ronin-home .hero-card__info span{font-size:10px;color:#7b8aa0;}
.ronin-home .hero-card__info--dark{background:var(--navy-950);}
.ronin-home .hero-card__info--dark strong{color:#fff;}
.ronin-home .hero-card__info--dark span{color:#a9b6ca;}
.ronin-home .badge-pill{
  display:inline-flex;
  align-items:center;
  gap:4px;
  align-self:flex-start;
  margin-top:2px;
  padding:2px 7px;
  border-radius:999px;
  font-size:10px;
  font-weight:800;
  letter-spacing:.03em;
  text-transform:uppercase;
  white-space:nowrap;
}
.ronin-home .badge-pill--green{background:var(--green-tint);color:var(--green);}

.ronin-home .hero-card--rear-left{
  width:124px;
  left:0;
  top:88px;
  z-index:1;
  opacity:.96;
}
.ronin-home .hero-card--rear-left .hero-card__photo{height:150px;object-position:center 18%;}
.ronin-home .hero-card--rear-left .badge-pill,
.ronin-home .hero-card--rear-right .badge-pill{font-size:10px;padding:2px 5px;letter-spacing:.01em;}
.ronin-home .hero-card--center{
  width:180px;
  left:106px;
  top:36px;
  z-index:3;
  box-shadow:0 26px 55px rgba(15,23,42,.22);
}
.ronin-home .hero-card--center .hero-card__photo{height:240px;object-position:center 15%;}
.ronin-home .hero-card--rear-right{
  width:124px;
  left:286px;
  top:88px;
  z-index:2;
}
.ronin-home .hero-card--rear-right .hero-card__photo{height:150px;object-position:center 18%;}
.ronin-home .hero-card__link{display:block;color:inherit;text-decoration:none;}
.ronin-home .hero-card__link:hover .hero-card__info strong{color:var(--gold-dark);}
.ronin-home .hero-card__link:hover .hero-card__info--dark strong{color:var(--gold);}

@media(max-width:1024px){
  .ronin-home .hero-light__grid{grid-template-columns:1fr;gap:32px;}
  .ronin-home .hero-light__visual{min-height:380px;}
}
@media(max-width:640px){
  .ronin-home .hero-light{padding:36px 0 28px;}
  .ronin-home .hero-light__proof{flex-wrap:wrap;row-gap:16px;}
  .ronin-home .proof-item{border-right:0;padding:0 14px 0 0;}
  .ronin-home .hero-card--rear-left,.ronin-home .hero-card--rear-right{display:none;}
  .ronin-home .hero-card--center{position:static;width:100%;margin:0 auto;}
  .ronin-home .hero-cards{min-height:0;}
}

/* ==========================================================================
   Live Network Overview — single dark panel replacing the old 4-card
   kpi-band, per the Homepage mockup (2026-07-21). Reuses the shared .ring
   and .spark component CSS from ronin-shell.css (same class names), just
   recoloured for a dark surface and re-laid-out into one panel.
   ========================================================================== */
.ronin-home .network-overview{
  position:relative;
  z-index:2;
  margin:10px 0 0;
}
.ronin-home .network-overview .container{
  background:var(--navy-950);
  border-radius:20px;
  padding:16px 32px;
  box-shadow:0 24px 50px rgba(7,20,37,.18);
  max-width:1600px;
  padding-inline:40px;
}
.ronin-home .network-overview__title{
  display:block;
  color:var(--gold);
  font-size:12px;
  font-weight:800;
  letter-spacing:.09em;
  text-transform:uppercase;
  margin-bottom:10px;
}
.ronin-home .network-overview__grid{
  display:flex;
  align-items:center;
  gap:0;
}
.ronin-home .now-divider{
  width:1px;
  align-self:stretch;
  background:rgba(255,255,255,.1);
  margin:0 26px;
  flex:0 0 auto;
}
.ronin-home .now-metric{
  flex:1 1 0;
  min-width:0;
  display:flex;
  flex-direction:column;
}
.ronin-home .now-metric--ring{
  flex-direction:row;
  align-items:center;
  gap:16px;
  flex:0 0 auto;
  padding-right:26px;
}
.ronin-home .now-metric--ring .ring__track{stroke:rgba(255,255,255,.14);}
.ronin-home .now-metric--ring .ring__label{color:#fff;}
.ronin-home .now-metric__text{display:flex;flex-direction:column;gap:2px;}
.ronin-home .now-metric__text strong{color:#fff;font-size:12px;font-weight:700;}
.ronin-home .now-metric__text span{color:#8fa0ba;font-size:12px;}
.ronin-home .now-metric__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  color:#fff;
  margin-bottom:12px;
}
.ronin-home .now-metric__icon svg{width:18px;height:18px;}
.ronin-home .now-metric__value{color:#fff;font-size:26px;font-weight:800;line-height:1;margin-bottom:6px;}
.ronin-home .now-metric__label{color:#8fa0ba;font-size:12px;font-weight:700;line-height:1.4;}
.ronin-home .now-metric__label small{color:#66768e;font-size:10px;font-weight:600;}
.ronin-home .now-metric .spark--now{margin-top:10px;height:34px;}
.ronin-home .now-metric--reach{position:relative;flex:0 0 auto;min-width:330px;padding-right:230px;}
.ronin-home .now-metric__dotmap{position:absolute;right:0;top:50%;transform:translateY(-50%);margin-top:0;width:220px;max-width:220px;}
.ronin-home .now-metric__dotmap svg{width:100%;height:auto;display:block;}
/* This dotmap reuses .home-world-network (shared with the old white KPI
   card variant, which gives it a light #f7f9fc fill + border) - override
   back to fully transparent here so it adopts the dark navy panel behind
   it instead of showing as a mismatched light rectangle. */
.ronin-home .now-metric__dotmap.home-world-network{background:transparent;border:0;height:auto;}
.ronin-home .now-metric--reach .home-world-land--dots path[fill="url(#homeDotsGray)"]{opacity:.5;}

@media(max-width:1024px){
  .ronin-home .network-overview__grid{flex-wrap:wrap;row-gap:22px;}
  .ronin-home .now-metric--ring{flex:1 1 100%;padding-right:0;}
  .ronin-home .now-divider{display:none;}
  .ronin-home .now-metric{flex:1 1 40%;}
}
@media(max-width:640px){
  .ronin-home .network-overview .container{padding:22px 18px 18px;}
  .ronin-home .now-metric{flex:1 1 100%;}
}
