﻿/* === jogos.css === */
/* jogos.css — inner brand pages (distinct editorial layout) */

.jp-hero {
  padding: 1.35rem var(--nav-pad-x) 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, #2a2318 0%, var(--surface-top) 55%);
  text-align: center;
}

.jp-hero h1 {
  margin: 0 0 0.75rem;
  font-size: 1.0625rem;
  line-height: 1.35;
  font-weight: 800;
  color: var(--text-heading);
}

.jp-hero p {
  margin: 0 0 0.65rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.jp-hero__media {
  margin-top: 1rem;
  padding: 0;
}

.jp-hero__media img {
  width: min(512px, 100%);
  margin-inline: auto;
  border-radius: 14px;
  border: 2px solid var(--shell-border);
  box-shadow: var(--shadow-glow), var(--shadow-soft);
}

.jp-hero__cta {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--accent-amber-bright);
  color: #1a1208;
  font-weight: 800;
  font-size: var(--prose-size);
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(245, 197, 24, 0.4);
}

.jp-body {
  padding: 0 var(--nav-pad-x) 1.5rem;
}

.jp-scorebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  background: var(--surface-card);
  border-bottom: 1px solid var(--border-subtle);
}

.jp-scorebar__rank {
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--accent-amber-soft);
  color: var(--accent-amber-bright);
  font-size: 0.75rem;
  font-weight: 800;
}

.jp-scorebar__title {
  flex: 1;
  min-width: 0;
}

.jp-scorebar__title h2 {
  margin: 0;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.jp-scorebar__title p {
  margin: 2px 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.jp-scorebar__num {
  flex-shrink: 0;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--accent-amber-bright);
  line-height: 1;
}

.jp-scorebar__num small {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.jp-pillrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.jp-pillrow span {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-body);
}

.jp-pillrow span em {
  font-style: normal;
  color: var(--accent-amber-bright);
  margin-right: 4px;
}

.jp-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.jp-timeline li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.jp-timeline__dot {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-amber-soft);
  color: var(--accent-amber-bright);
  font-size: 0.75rem;
  font-weight: 800;
}

.jp-timeline__body h3 {
  margin: 0 0 0.35rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.jp-timeline__body p {
  margin: 0;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.jp-verdict {
  margin: 1rem 0 0;
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-amber-soft) 0%, var(--surface-card) 100%);
  border: 1px solid var(--accent-amber);
}

.jp-verdict h3 {
  margin: 0 0 0.5rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--accent-amber-bright);
}

.jp-verdict p {
  margin: 0;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.jp-verdict .jp-hero__cta {
  margin-top: 0.75rem;
  width: 100%;
  justify-content: center;
}

/* ── Qwin layout (jq-*): card grid + tier stack — distinct from jp-timeline ── */

.jq-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.25rem var(--nav-pad-x);
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(245, 197, 24, 0.12), transparent 60%), var(--surface-top);
}

.jq-hero__text h1 {
  margin: 0 0 0.65rem;
  font-size: 1.0625rem;
  line-height: 1.35;
  font-weight: 800;
  color: var(--text-heading);
}

.jq-hero__text p {
  margin: 0 0 0.55rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
  text-align: left;
}

.jq-hero__cta {
  display: inline-flex;
  margin-top: 0.5rem;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--accent-amber-bright);
  color: #1a1208;
  font-weight: 800;
  font-size: var(--prose-size);
  text-decoration: none;
}

.jq-hero__logo {
  width: 100%;
}

.jq-hero__logo img {
  width: min(512px, 100%);
  max-width: 100%;
  margin-inline: auto;
  border-radius: 12px;
  border: 2px solid var(--shell-border);
  box-shadow: var(--shadow-glow);
}

.jq-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 12px var(--nav-pad-x);
  background: var(--surface-card);
  border-bottom: 1px solid var(--border-subtle);
}

.jq-strip__badge {
  padding: 5px 10px;
  border-radius: 6px;
  background: #3d3428;
  color: var(--accent-amber-bright);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.jq-strip__title {
  flex: 1;
  min-width: 140px;
}

.jq-strip__title h2 {
  margin: 0;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.jq-strip__title p {
  margin: 2px 0 0;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.jq-strip__score {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-amber-bright);
  line-height: 1;
}

.jq-strip__score i {
  font-style: normal;
  font-size: 0.625rem;
  color: var(--text-muted);
}

.jq-metricgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 12px var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.jq-metricgrid div {
  padding: 10px 8px;
  text-align: center;
  border-radius: 8px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.jq-metricgrid strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--accent-amber-bright);
  line-height: 1.2;
}

.jq-metricgrid span {
  display: block;
  margin-top: 2px;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.25;
}

.jq-cardgrid {
  display: grid;
  gap: 10px;
  padding: 14px var(--nav-pad-x);
}

@media (min-width: 520px) {
  .jq-cardgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.jq-card {
  padding: 12px;
  border-radius: 10px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.jq-card h3 {
  margin: 0 0 0.4rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--accent-amber-bright);
}

.jq-card p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-body);
}

.jq-tierstack {
  margin: 0;
  padding: 0 var(--nav-pad-x) 1rem;
  list-style: none;
}

.jq-tierstack li {
  position: relative;
  margin-bottom: 8px;
  padding: 12px 12px 12px 44px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--accent-amber-soft) 0%, var(--surface-card) 35%);
  border: 1px solid var(--border-subtle);
}

.jq-tierstack__lvl {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-amber-bright);
  color: #1a1208;
  font-size: 0.6875rem;
  font-weight: 800;
}

.jq-tierstack h4 {
  margin: 0 0 0.3rem;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--text-heading);
}

.jq-tierstack p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-body);
}

.jq-callout {
  margin: 0 var(--nav-pad-x) 1.25rem;
  padding: 14px;
  border-left: 4px solid var(--accent-amber-bright);
  border-radius: 0 10px 10px 0;
  background: var(--surface-card);
}

.jq-callout h3 {
  margin: 0 0 0.45rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.jq-callout p {
  margin: 0 0 0.65rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.jq-callout .jq-hero__cta {
  width: 100%;
  justify-content: center;
}

/* ── Brand page layout C (jr-*): masthead ring + spec table + feature bands + FAQ ── */

.jr-head {
  padding: 1.1rem var(--nav-pad-x) 0.85rem;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, #241e14 0%, var(--surface-top) 100%);
}

.jr-head h1 {
  margin: 0 0 0.6rem;
  font-size: 1.0625rem;
  line-height: 1.35;
  font-weight: 800;
  color: var(--text-heading);
}

.jr-head p {
  margin: 0 0 0.5rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
  text-align: left;
}

.jr-head__cta {
  display: inline-flex;
  margin: 0.65rem 0 0.85rem;
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--accent-amber-bright);
  color: #1a1208;
  font-weight: 800;
  font-size: var(--prose-size);
  text-decoration: none;
}

.jr-ring {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px var(--nav-pad-x);
  background: var(--surface-card);
  border-bottom: 1px solid var(--border-subtle);
}

.jr-ring__logo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  padding: 6px;
  border-radius: 14px;
  border: 2px solid var(--accent-amber);
  background: var(--surface-elevated);
  object-fit: contain;
}

.jr-ring__score {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid var(--accent-amber-bright);
  background: var(--accent-amber-soft);
  color: var(--accent-amber-bright);
  font-weight: 800;
  line-height: 1;
}

.jr-ring__score b {
  font-size: 1.125rem;
}

.jr-ring__score i {
  font-style: normal;
  font-size: 0.5625rem;
  color: var(--text-muted);
}

.jr-ring__meta {
  flex: 1;
  min-width: 0;
}

.jr-ring__meta h2 {
  margin: 0;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.jr-ring__meta p {
  margin: 3px 0 0;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.jr-ring__badge {
  display: inline-block;
  margin-top: 4px;
  padding: 3px 8px;
  border-radius: 4px;
  background: #3d3428;
  color: var(--accent-amber-bright);
  font-size: 0.625rem;
  font-weight: 800;
}

.jr-speclist {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--border-subtle);
}

.jr-speclist div {
  display: grid;
  grid-template-columns: 38% minmax(0, 1fr);
  gap: 8px;
  padding: 10px var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.8125rem;
}

.jr-speclist div:nth-child(even) {
  background: rgba(212, 160, 23, 0.04);
}

.jr-speclist dt {
  margin: 0;
  font-weight: 700;
  color: var(--text-muted);
}

.jr-speclist dd {
  margin: 0;
  font-weight: 600;
  color: var(--text-heading);
  text-align: right;
}

.jr-bands {
  padding: 12px var(--nav-pad-x);
}

.jr-band {
  margin-bottom: 10px;
  padding: 12px 12px 12px 16px;
  border-left: 4px solid var(--accent-amber);
  border-radius: 0 10px 10px 0;
  background: var(--surface-card);
}

.jr-band h3 {
  margin: 0 0 0.35rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--accent-amber-bright);
}

.jr-band p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-body);
}

.jr-faq {
  padding: 0 var(--nav-pad-x) 1rem;
}

.jr-faq > h3 {
  margin: 0 0 8px;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.jr-faq details {
  margin-bottom: 6px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: var(--surface-card);
  overflow: hidden;
}

.jr-faq summary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-heading);
  cursor: pointer;
  list-style: none;
}

.jr-faq summary::-webkit-details-marker { display: none; }

.jr-faq summary::before {
  content: "+";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--accent-amber-soft);
  color: var(--accent-amber-bright);
  font-size: 0.875rem;
  font-weight: 800;
}

.jr-faq details[open] summary::before { content: "−"; }

.jr-faq__body {
  padding: 0 12px 10px 40px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-body);
}

.jr-verdict {
  margin: 0 var(--nav-pad-x) 1.25rem;
  padding: 16px;
  text-align: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-amber-soft) 0%, var(--surface-card) 55%);
  border: 1px solid var(--accent-amber);
}

.jr-verdict h3 {
  margin: 0 0 0.45rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--accent-amber-bright);
}

.jr-verdict p {
  margin: 0 0 0.75rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.jr-verdict .jr-head__cta {
  margin: 0;
  width: 100%;
  justify-content: center;
}

.jr-hero-img {
  padding: 0 var(--nav-pad-x) 1rem;
  text-align: center;
}

.jr-hero-img img {
  width: min(512px, 100%);
  margin-inline: auto;
  border-radius: 14px;
  border: 2px solid var(--shell-border);
  box-shadow: var(--shadow-glow);
}

/* ── Brand page layout D (js-*): mosaic crash grid + RTP bars + numbered points ── */

.js-mast {
  display: grid;
  gap: 12px;
  padding: 1rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--surface-top);
}

@media (min-width: 560px) {
  .js-mast {
    grid-template-columns: min(140px, 32%) minmax(0, 1fr);
    align-items: start;
  }
}

.js-mast__logo img {
  width: 100%;
  max-width: 140px;
  margin-inline: auto;
  border-radius: 12px;
  border: 2px solid var(--shell-border);
  box-shadow: var(--shadow-glow);
}

.js-mast__body h1 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  line-height: 1.35;
  font-weight: 800;
  color: var(--text-heading);
}

.js-mast__body p {
  margin: 0 0 0.45rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.js-mast__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.5rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-amber-soft);
  color: var(--accent-amber-bright);
  font-size: 0.6875rem;
  font-weight: 800;
}

.js-mast__chip em {
  font-style: normal;
  color: var(--text-heading);
}

.js-mast__cta {
  display: inline-flex;
  margin-top: 0.5rem;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--accent-amber-bright);
  color: #1a1208;
  font-weight: 800;
  font-size: var(--prose-size);
  text-decoration: none;
}

.js-hero-wide {
  padding: 0 var(--nav-pad-x) 12px;
}

.js-hero-wide img {
  width: min(512px, 100%);
  margin-inline: auto;
  border-radius: 14px;
  border: 2px solid var(--shell-border);
}

.js-tagrow {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.js-tagrow span {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: var(--surface-card);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-body);
}

.js-tagrow span:first-child {
  border-color: var(--accent-amber);
  color: var(--accent-amber-bright);
}

.js-scoreline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px var(--nav-pad-x);
  background: var(--surface-card);
  border-bottom: 1px solid var(--border-subtle);
}

.js-scoreline h2 {
  margin: 0;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.js-scoreline p {
  margin: 2px 0 0;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.js-scoreline strong {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--accent-amber-bright);
}

.js-mosaic {
  display: grid;
  gap: 8px;
  padding: 12px var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

@media (min-width: 480px) {
  .js-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
  }

  .js-mosaic article:first-child {
    grid-row: span 2;
  }
}

.js-mosaic article {
  padding: 12px;
  border-radius: 10px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.js-mosaic article:first-child {
  background: linear-gradient(160deg, rgba(245, 197, 24, 0.1) 0%, var(--surface-card) 100%);
  border-color: rgba(212, 160, 23, 0.3);
}

.js-mosaic h3 {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--accent-amber-bright);
}

.js-mosaic p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-body);
}

.js-rtpstrip {
  padding: 12px var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.js-rtpstrip h3 {
  margin: 0 0 10px;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.js-rtpstrip ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.js-rtpstrip ul li {
  margin-bottom: 10px;
}

.js-rtpstrip ul li span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-body);
}

.js-rtpstrip ul li em {
  font-style: normal;
  color: var(--accent-amber-bright);
  font-weight: 800;
}

.js-rtpstrip__bar {
  height: 6px;
  border-radius: 99px;
  background: #3d3428;
  overflow: hidden;
}

.js-rtpstrip__bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-amber-deep), var(--accent-amber-bright));
}

.js-points {
  margin: 0;
  padding: 12px var(--nav-pad-x) 1rem;
  list-style: none;
  counter-reset: jspt;
}

.js-points li {
  counter-increment: jspt;
  position: relative;
  margin-bottom: 10px;
  padding: 10px 10px 10px 36px;
  border-radius: 8px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.js-points li::before {
  content: counter(jspt);
  position: absolute;
  left: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-amber-bright);
  color: #1a1208;
  font-size: 0.625rem;
  font-weight: 800;
}

.js-points h4 {
  margin: 0 0 0.25rem;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--text-heading);
}

.js-points p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-body);
}

.js-endcap {
  margin: 0 var(--nav-pad-x) 1.25rem;
  padding: 14px;
  border-radius: 10px;
  background: #1a160e;
  border: 1px solid var(--shell-border);
  box-shadow: inset 0 1px 0 var(--border-subtle);
}

.js-endcap h3 {
  margin: 0 0 0.4rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--accent-amber-bright);
}

.js-endcap p {
  margin: 0 0 0.65rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.js-endcap .js-mast__cta {
  width: 100%;
  justify-content: center;
}

/* ── Brand page layout E (jw-*): sports hub — topbar + triple hub + live rows ── */

.jw-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px var(--nav-pad-x);
  background: var(--accent-amber-bright);
  color: #1a1208;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.jw-topbar span:last-child {
  font-size: 0.8125rem;
  letter-spacing: 0;
}

.jw-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 1rem var(--nav-pad-x);
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

.jw-split h1 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  line-height: 1.35;
  font-weight: 800;
  color: var(--text-heading);
}

.jw-split p {
  margin: 0 0 0.45rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
  text-align: left;
}

.jw-split__cta {
  display: inline-flex;
  margin-top: 0.5rem;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--accent-amber-bright);
  color: #1a1208;
  font-weight: 800;
  font-size: var(--prose-size);
  text-decoration: none;
}

.jw-split__logo {
  width: 100%;
}

.jw-split__logo img {
  width: min(200px, 48vw);
  max-width: 100%;
  margin-inline: auto;
  border-radius: 12px;
  border: 2px solid var(--shell-border);
  box-shadow: var(--shadow-glow);
}

.jw-split .jw-hero-wide {
  padding: 0;
  border-bottom: none;
}

.jw-hero-wide {
  padding: 0 var(--nav-pad-x) 12px;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

.jw-hero-wide img {
  width: min(512px, 100%);
  margin-inline: auto;
  border-radius: 14px;
  border: 2px solid var(--shell-border);
}

.jw-triple {
  display: grid;
  gap: 8px;
  padding: 12px var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

@media (min-width: 520px) {
  .jw-triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.jw-triple article {
  padding: 12px 10px;
  text-align: center;
  border-radius: 10px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.jw-triple article:first-child {
  border-color: var(--accent-amber);
  background: linear-gradient(180deg, var(--accent-amber-soft) 0%, var(--surface-card) 100%);
}

.jw-triple__ico {
  display: block;
  margin-bottom: 6px;
  font-size: 1.25rem;
  line-height: 1;
}

.jw-triple h3 {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--accent-amber-bright);
}

.jw-triple p {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.4;
  color: var(--text-body);
}

.jw-livefeed {
  padding: 12px var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.jw-livefeed h3 {
  margin: 0 0 8px;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.jw-livefeed ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.jw-livefeed li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  margin-bottom: 6px;
  border-radius: 8px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  font-size: 0.75rem;
}

.jw-livefeed__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 6px rgba(40, 167, 69, 0.6);
}

.jw-livefeed__match {
  font-weight: 700;
  color: var(--text-heading);
}

.jw-livefeed__meta {
  font-size: 0.625rem;
  color: var(--text-muted);
}

.jw-livefeed__odd {
  font-weight: 800;
  color: var(--accent-amber-bright);
  white-space: nowrap;
}

.jw-compare {
  display: grid;
  gap: 0;
  margin: 0 var(--nav-pad-x);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

@media (min-width: 480px) {
  .jw-compare {
    grid-template-columns: 1fr 1fr;
  }
}

.jw-compare div {
  padding: 12px;
  background: var(--surface-card);
}

.jw-compare div:first-child {
  border-bottom: 1px solid var(--border-subtle);
}

@media (min-width: 480px) {
  .jw-compare div:first-child {
    border-bottom: none;
    border-right: 1px solid var(--border-subtle);
  }
}

.jw-compare h4 {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--accent-amber-bright);
}

.jw-compare p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-body);
}

.jw-pullquote {
  margin: 12px var(--nav-pad-x);
  padding: 14px 14px 14px 18px;
  border-left: 4px solid var(--accent-amber);
  border-radius: 0 8px 8px 0;
  background: var(--accent-amber-soft);
  font-size: var(--prose-size);
  line-height: 1.55;
  font-style: italic;
  color: var(--text-heading);
}

.jw-pullquote cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-muted);
}

.jw-verdict {
  display: grid;
  gap: 12px;
  margin: 12px var(--nav-pad-x) 1.25rem;
  padding: 14px;
  border-radius: 12px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

@media (min-width: 480px) {
  .jw-verdict {
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
  }
}

.jw-verdict img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  object-fit: contain;
  background: var(--surface-elevated);
}

.jw-verdict h3 {
  margin: 0 0 0.35rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.jw-verdict p {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-body);
}

.jw-verdict .jw-split__cta {
  margin-top: 0;
  width: 100%;
  justify-content: center;
}

@media (min-width: 480px) {
  .jw-verdict .jw-split__cta {
    grid-column: 1 / -1;
  }
}

/* ── Brand page layout F (jv-*): cashback onboarding — steps + checklist ── */

.jv-banner {
  position: relative;
  padding: 1.25rem var(--nav-pad-x) 1rem;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #2a2318 0%, #1a160e 50%, #241e14 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.jv-banner::before {
  content: "5";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(245, 197, 24, 0.06);
  pointer-events: none;
}

.jv-banner img {
  width: min(120px, 28vw);
  margin: 0 auto 10px;
  border-radius: 12px;
  border: 2px solid var(--accent-amber);
  box-shadow: var(--shadow-glow);
}

.jv-banner h1 {
  position: relative;
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  line-height: 1.35;
  font-weight: 800;
  color: var(--text-heading);
}

.jv-banner p {
  position: relative;
  margin: 0 0 0.45rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
  text-align: left;
}

.jv-banner__meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0.65rem 0;
}

.jv-banner__meta span {
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--accent-amber-soft);
  color: var(--accent-amber-bright);
  font-size: 0.6875rem;
  font-weight: 800;
}

.jv-banner__cta {
  position: relative;
  display: inline-flex;
  margin-top: 0.35rem;
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--accent-amber-bright);
  color: #1a1208;
  font-weight: 800;
  font-size: var(--prose-size);
  text-decoration: none;
}

.jv-hero-wide {
  padding: 0 var(--nav-pad-x) 12px;
  text-align: center;
}

.jv-hero-wide img {
  width: min(512px, 100%);
  margin-inline: auto;
  border-radius: 14px;
  border: 2px solid var(--shell-border);
}

.jv-steps {
  display: flex;
  gap: 0;
  padding: 14px var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.jv-steps article {
  flex: 1;
  min-width: 90px;
  position: relative;
  padding: 0 6px;
  text-align: center;
}

.jv-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  right: -2px;
  width: calc(100% - 28px);
  height: 2px;
  margin-left: 28px;
  background: var(--border-subtle);
  z-index: 0;
}

.jv-steps__num {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  margin: 0 auto 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-amber-bright);
  color: #1a1208;
  font-size: 0.75rem;
  font-weight: 800;
}

.jv-steps h3 {
  margin: 0 0 0.25rem;
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--text-heading);
}

.jv-steps p {
  margin: 0;
  font-size: 0.625rem;
  line-height: 1.35;
  color: var(--text-muted);
}

.jv-cashrow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 12px var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.jv-cashrow div {
  padding: 12px 8px;
  text-align: center;
  border-radius: 10px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.jv-cashrow div:first-child {
  border-color: var(--accent-green);
  background: var(--accent-green-soft);
}

.jv-cashrow strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--accent-amber-bright);
  line-height: 1.2;
}

.jv-cashrow div:first-child strong {
  color: var(--accent-green);
}

.jv-cashrow span {
  display: block;
  margin-top: 3px;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-muted);
}

.jv-pgsoft {
  padding: 12px var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.jv-pgsoft h3 {
  margin: 0 0 8px;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.jv-pgsoft ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

.jv-pgsoft li {
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-body);
}

.jv-pgsoft p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-body);
}

.jv-checklist {
  margin: 0;
  padding: 12px var(--nav-pad-x) 1rem;
  list-style: none;
}

.jv-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 8px;
  padding: 10px;
  border-radius: 8px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-body);
}

.jv-checklist li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-green-soft);
  color: var(--accent-green);
  font-size: 0.6875rem;
  font-weight: 800;
}

.jv-checklist strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text-heading);
  font-weight: 800;
}

.jv-closing {
  margin: 0 var(--nav-pad-x) 1.25rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--shell-border);
}

.jv-closing__top {
  padding: 14px;
  background: var(--accent-amber-soft);
  border-bottom: 1px solid var(--border-subtle);
}

.jv-closing__top h3 {
  margin: 0 0 0.4rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--accent-amber-bright);
}

.jv-closing__top p {
  margin: 0;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.jv-closing__bottom {
  padding: 12px 14px;
  background: var(--surface-card);
  text-align: center;
}

.jv-closing__bottom .jv-banner__cta {
  width: 100%;
  justify-content: center;
}

/* Amber brand CTAs inside .prose — override .prose a link color */
.prose a.jp-hero__cta,
.prose a.jq-hero__cta,
.prose a.jr-head__cta,
.prose a.js-mast__cta,
.prose a.jw-split__cta,
.prose a.jv-banner__cta {
  color: #1a1208;
}

.prose a.jp-hero__cta:hover,
.prose a.jq-hero__cta:hover,
.prose a.jr-head__cta:hover,
.prose a.js-mast__cta:hover,
.prose a.jw-split__cta:hover,
.prose a.jv-banner__cta:hover,
.prose a.jp-hero__cta:focus,
.prose a.jq-hero__cta:focus,
.prose a.jr-head__cta:focus,
.prose a.js-mast__cta:focus,
.prose a.jw-split__cta:focus,
.prose a.jv-banner__cta:focus,
.prose a.jp-hero__cta:visited,
.prose a.jq-hero__cta:visited,
.prose a.jr-head__cta:visited,
.prose a.js-mast__cta:visited,
.prose a.jw-split__cta:visited,
.prose a.jv-banner__cta:visited {
  color: #1a1208;
}
