:root{
  --bg:#f4f8ff;
  --bg-soft:#f8fbff;
  --surface:#fffdf9;
  --surface-strong:#ffffff;
  --surface-tint:#eaf3ff;
  --surface-dark:#0b2746;
  --surface-dark-2:#06182c;
  --text:#161616;
  --muted:#526173;
  --line:rgba(15,61,110,.12);
  --line-strong:rgba(15,61,110,.18);
  --gold:#2f80ed;
  --gold-strong:#0b5cad;
  --gold-soft:#dcecff;
  --accent:#0f3d6e;
  --accent-soft:#e9f3ff;
  --success:#356f4d;
  --shadow-sm:0 12px 30px rgba(20,14,7,.06);
  --shadow:0 24px 60px rgba(20,14,7,.10);
  --shadow-lg:0 35px 85px rgba(12,10,6,.16);
  --radius-sm:18px;
  --radius:28px;
  --radius-lg:38px;
  --max:1240px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  background:
    radial-gradient(circle at top left, rgba(47,128,237,.14), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(15,61,110,.12), transparent 18%),
    linear-gradient(180deg,#ffffff 0%, #f4f8ff 42%, #eef6ff 100%);
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
button,input,textarea,select{font:inherit}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
}

.breadcrumbs{
  width:min(var(--max), calc(100% - 32px));
  margin:18px auto 0;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  color:#526173;
  font-size:.92rem;
  font-weight:800;
}

.breadcrumbs a{
  color:#0b5cad;
  text-decoration:none;
}

.breadcrumbs a:hover{text-decoration:underline}

.breadcrumbs span[aria-current="page"]{color:#071d35}

.breadcrumbs .crumb-separator{
  color:#95a3b5;
  font-weight:900;
}

.container > .breadcrumbs{
  width:100%;
  max-width:100%;
  margin:0 0 18px;
}

.wrap > .breadcrumbs,
.article-wrap > .breadcrumbs,
.wrapper > .breadcrumbs{
  width:100%;
  max-width:100%;
  margin:0 0 18px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(252,249,243,.82);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(68,48,22,.08);
}

.site-header-inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand-logo{
  height:48px;
  width:auto;
  border-radius:12px;
  box-shadow:0 10px 24px rgba(18,14,9,.12);
}

.brand-copy{
  display:flex;
  flex-direction:column;
  gap:2px;
  line-height:1.02;
}

.brand-copy strong{
  font-size:1rem;
  letter-spacing:.01em;
}

.brand-copy span{
  font-size:.75rem;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:800;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.site-nav a{
  color:#3f3a33;
  font-weight:700;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:14px 22px;
  border-radius:16px;
  border:1px solid transparent;
  font-weight:900;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.btn:hover{transform:translateY(-2px)}

.btn-primary{
  background:linear-gradient(135deg,#e9c879,#f6dfad);
  color:#24180b;
  box-shadow:0 16px 32px rgba(216,179,106,.28);
}

.btn-secondary{
  background:rgba(255,255,255,.7);
  color:#24180b;
  border-color:rgba(68,48,22,.14);
  box-shadow:var(--shadow-sm);
}

.btn-dark{
  background:linear-gradient(135deg,#24364b,#142030);
  color:#fff;
  box-shadow:0 16px 34px rgba(20,32,48,.20);
}

.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(68,48,22,.10);
  color:#3f372f;
  font-weight:800;
  box-shadow:var(--shadow-sm);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.20);
  color:#f6e1a6;
  font-size:.9rem;
  font-weight:800;
  letter-spacing:.02em;
  backdrop-filter:blur(10px);
}

.page-section{
  padding:34px 0;
}

.section-head{
  margin-bottom:22px;
}

.section-head h2,
.section-head h3{
  margin:0 0 10px;
  font-size:clamp(2rem,4vw,3.5rem);
  line-height:.98;
  letter-spacing:-.05em;
}

.section-head p{
  margin:0;
  max-width:760px;
  color:var(--muted);
  line-height:1.8;
  font-size:1.02rem;
}

.hero-shell{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-lg);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:var(--shadow-lg);
  background:
    linear-gradient(115deg, rgba(12,14,18,.82) 10%, rgba(12,14,18,.60) 44%, rgba(12,14,18,.36) 76%),
    url('/hero-cards.jpg') center/cover no-repeat,
    linear-gradient(135deg,#2d2b29,#171513);
}

.home-hero{
  background:
    linear-gradient(112deg, rgba(9,11,16,.84) 8%, rgba(9,11,16,.68) 36%, rgba(9,11,16,.36) 70%, rgba(9,11,16,.22) 100%),
    url('/homepage-hero-v2.jpg') center/cover no-repeat,
    linear-gradient(135deg,#2d2b29,#171513);
}

.home-hero .hero-inner{
  min-height:720px;
  display:flex;
  align-items:stretch;
}

.hero-shell::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.10), transparent 20%),
    radial-gradient(circle at 82% 14%, rgba(216,179,106,.14), transparent 16%),
    radial-gradient(circle at 72% 80%, rgba(39,71,101,.16), transparent 18%);
  pointer-events:none;
}

.hero-inner{
  position:relative;
  z-index:1;
  padding:48px 46px 42px;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);
  gap:22px;
  align-items:end;
}

.hero-grid.align-top{
  align-items:start;
}

.hero-copy h1,
.page-hero h1{
  margin:16px 0 0;
  color:#fff;
  font-size:clamp(3rem,7vw,6rem);
  line-height:.94;
  letter-spacing:-.065em;
}

.hero-copy p,
.page-hero p{
  margin:20px 0 0;
  color:rgba(255,255,255,.86);
  font-size:1.1rem;
  line-height:1.8;
  max-width:760px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.spotlight-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

.spotlight-chip{
  padding:12px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  box-shadow:0 12px 30px rgba(0,0,0,.16);
}

.spotlight-chip strong{
  display:block;
  margin-bottom:4px;
  color:#f7dfaa;
  font-size:.95rem;
}

.spotlight-chip span{
  color:rgba(255,255,255,.82);
  line-height:1.55;
  font-size:.92rem;
}

.glass-card{
  background:rgba(255,255,255,.10);
  color:#fff;
  border:1px solid rgba(255,255,255,.16);
  border-radius:26px;
  padding:24px;
  backdrop-filter:blur(18px);
  box-shadow:0 18px 40px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.20);
}

.glass-card.soft-light{
  background:rgba(255,255,255,.09);
  border-color:rgba(255,255,255,.14);
}

.glass-card h3,
.glass-card h4{
  margin:0 0 12px;
  color:#f6dda0;
  font-size:1.14rem;
  letter-spacing:-.02em;
}

.glass-list{
  display:grid;
  gap:12px;
}

.glass-item{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.84);
  line-height:1.65;
}

.glass-item:last-child{
  padding-bottom:0;
  border-bottom:none;
}

.surface-card{
  background:linear-gradient(180deg,#ffffff,#fcf8f0);
  border:1px solid rgba(68,48,22,.08);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.surface-card.soft{
  background:linear-gradient(180deg,#fffdfa,#f7f1e5);
}

.surface-card.dark{
  color:#fff;
  background:
    radial-gradient(circle at top right, rgba(216,179,106,.12), transparent 22%),
    linear-gradient(135deg,#1f2937,#101827);
  border-color:rgba(255,255,255,.10);
}

.simple-page-title{
  padding:24px 0 4px;
}

.simple-page-title h1{
  margin:0;
  color:#17202a;
  font-size:clamp(2.4rem,5vw,4.25rem);
  line-height:.95;
  letter-spacing:-.06em;
}

.simple-page-title p{
  max-width:860px;
  margin:14px 0 0;
  color:#554c40;
  font-size:1.08rem;
  line-height:1.7;
}

.simple-page-title + .page-section{
  padding-top:8px;
}

.simple-page-title + .page-section + .page-section{
  padding-top:8px;
}

.card-pad{padding:26px}
.card-pad-lg{padding:34px}

.stats-grid,
.feature-grid,
.games-grid,
.faq-grid,
.story-grid,
.quick-grid,
.category-grid{
  display:grid;
  gap:18px;
}

.stats-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.feature-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.games-grid{grid-template-columns:repeat(5,minmax(0,1fr))}
.faq-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.story-grid{grid-template-columns:1.1fr .9fr}
.quick-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.category-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.image-split{grid-template-columns:1.05fr .95fr}
.split-band{grid-template-columns:1.15fr .85fr}

.stat-card strong,
.game-card strong,
.feature-card h3,
.faq-card strong,
.story-card h3,
.quick-card strong,
.category-card strong{
  display:block;
}

.stat-card{
  padding:22px;
}

.metric-bar{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  padding:18px;
  border-radius:24px;
  background:linear-gradient(135deg,#fff8e9,#fffdf8);
  border:1px solid #ecd9b0;
  box-shadow:var(--shadow-sm);
}

.metric{
  padding:14px 16px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(68,48,22,.08);
}

.metric strong{
  display:block;
  font-size:1.15rem;
  letter-spacing:-.02em;
}

.metric span{
  display:block;
  margin-top:6px;
  color:var(--muted);
  line-height:1.6;
  font-size:.95rem;
}

.stat-card strong{
  font-size:1.6rem;
  letter-spacing:-.03em;
}

.stat-card span,
.feature-card p,
.game-card p,
.faq-card p,
.story-card p,
.quick-card p,
.category-card p,
.muted{
  color:var(--muted);
  line-height:1.75;
}

.feature-card,
.game-card,
.faq-card,
.story-card,
.quick-card,
.category-card{
  padding:24px;
}

.feature-card h3,
.story-card h3{
  margin:0 0 10px;
  font-size:1.24rem;
  letter-spacing:-.02em;
}

.pokemon-landing .page-section{
  padding:26px 0;
}

.pokemon-landing .category-grid,
.pokemon-landing .story-grid,
.pokemon-landing .faq-grid{
  gap:16px;
  align-items:stretch;
}

.pokemon-landing .story-grid,
.pokemon-landing .faq-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.pokemon-landing .category-card,
.pokemon-landing .story-card,
.pokemon-landing .faq-card{
  height:100%;
}

.pokemon-landing .story-card,
.pokemon-landing .faq-card{
  padding:28px;
}

.trust-panel{
  padding:24px;
}

.trust-panel h3{
  margin:0 0 12px;
  font-size:1.2rem;
  letter-spacing:-.02em;
}

.trust-stack{
  display:grid;
  gap:12px;
  margin-top:14px;
}

.trust-item{
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
}

.trust-item strong{
  display:block;
  margin-bottom:6px;
  color:#f7dfaa;
}

.trust-item span{
  color:rgba(255,255,255,.82);
  line-height:1.6;
}

.game-card{
  min-height:180px;
}

.image-frame{
  position:relative;
  overflow:hidden;
  min-height:100%;
}

.image-frame img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
}

.image-frame::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:38%;
  background:linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,.10) 38%, rgba(10,10,10,.44) 100%);
  pointer-events:none;
}

.image-callout{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  z-index:1;
  padding:18px 20px;
  border-radius:22px;
  background:rgba(14,18,24,.72);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  backdrop-filter:blur(14px);
  box-shadow:0 14px 30px rgba(0,0,0,.18);
}

.image-callout strong{
  display:block;
  margin-bottom:8px;
  color:#f7dfaa;
  font-size:1.02rem;
}

.image-callout p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.65;
}

.art-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:stretch;
}

.mini-art-card{
  padding:14px;
}

.mini-art-card img{
  width:100%;
  border-radius:20px;
  box-shadow:var(--shadow-sm);
}

.mini-art-card strong{
  display:block;
  margin:14px 0 8px;
  font-size:1rem;
}

.mini-art-card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.mockup-band{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
  align-items:stretch;
}

.badge-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.badge-card{
  padding:18px;
  border-radius:22px;
  background:linear-gradient(180deg,#ffffff,#fbf7ee);
  border:1px solid rgba(68,48,22,.08);
  box-shadow:var(--shadow-sm);
}

.badge-card strong{
  display:block;
  margin-bottom:8px;
  font-size:1rem;
}

.badge-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.game-card a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:16px;
  color:var(--gold-strong);
  font-weight:900;
}

.steps{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.step-card{
  position:relative;
  padding:28px 24px 24px;
}

.step-num{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:linear-gradient(135deg,#f4dfb0,#efd08c);
  color:#3b2810;
  font-weight:900;
  box-shadow:0 12px 24px rgba(216,179,106,.20);
}

.step-card h3{
  margin:18px 0 10px;
  font-size:1.2rem;
  letter-spacing:-.02em;
}

.check-list,
.icon-list,
.detail-list{
  display:grid;
  gap:12px;
}

.check-list div,
.icon-list div,
.detail-list li{
  line-height:1.7;
}

.check-list div::before,
.icon-list div::before{
  content:"";
  display:inline-block;
  width:10px;
  height:10px;
  margin-right:10px;
  border-radius:999px;
  background:linear-gradient(135deg,#e8c678,#c4933f);
  vertical-align:middle;
  box-shadow:0 0 0 4px rgba(216,179,106,.16);
}

.detail-list{
  margin:14px 0 0;
  padding-left:18px;
  color:var(--muted);
}

.band{
  padding:18px 22px;
  border-radius:24px;
  background:linear-gradient(135deg,#fff8e9,#fffdf8);
  border:1px solid #ecd9b0;
  color:#6f531f;
  font-weight:800;
  box-shadow:var(--shadow-sm);
}

.cta-band{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:20px;
  align-items:center;
  padding:28px;
}

.cta-band h3{
  margin:0 0 10px;
  font-size:clamp(1.8rem,3vw,2.7rem);
  letter-spacing:-.04em;
}

.cta-band p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.8;
}

.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:flex-end;
}

.page-hero{
  padding:34px 0 14px;
}

.page-hero .hero-shell{
  background:
    linear-gradient(120deg, rgba(12,14,18,.84) 12%, rgba(12,14,18,.62) 46%, rgba(12,14,18,.38) 74%),
    url('/hero-cards.jpg') center/cover no-repeat,
    linear-gradient(135deg,#2d2b29,#171513);
}

.page-hero.compact .hero-inner{
  padding-bottom:34px;
}

.hero-kicker{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.hero-kicker .surface-card{
  padding:18px;
  background:#ffffff;
  color:#0b2746;
  border:1px solid rgba(15,61,110,.16);
  box-shadow:0 18px 40px rgba(6,24,44,.18);
  backdrop-filter:none;
}

.hero-kicker strong{
  display:block;
  margin-bottom:8px;
  color:#071d35;
  font-size:1rem;
}

.hero-kicker span{
  color:#526173;
  line-height:1.65;
}

.rates-layout{
  display:grid;
  grid-template-columns:minmax(210px,250px) minmax(0,1fr);
  gap:24px;
  align-items:start;
}

.filter-panel{
  position:sticky;
  top:96px;
  padding:22px;
}

.filter-list{
  display:grid;
  gap:10px;
  margin-top:14px;
}

.filter-btn{
  width:100%;
  text-align:left;
  padding:14px 15px;
  border-radius:16px;
  border:1px solid rgba(68,48,22,.12);
  background:#fff;
  color:#2e2820;
  font-weight:800;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.filter-btn:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow-sm);
  border-color:rgba(216,179,106,.38);
}

.filter-btn.active{
  background:linear-gradient(135deg,#e9c879,#f6dfad);
  color:#24180b;
  border-color:transparent;
  box-shadow:0 16px 30px rgba(216,179,106,.25);
}

.rates-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:18px;
}

.rate-card{
  padding:24px;
}

.rate-card h2{
  margin:0 0 8px;
  font-size:1.5rem;
  letter-spacing:-.03em;
}

.rate-card .card-sub{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.7;
}

.item{
  display:grid;
  grid-template-columns:minmax(190px,1fr) minmax(82px,auto) minmax(96px,112px);
  gap:10px;
  align-items:center;
  padding:13px 0;
  border-bottom:1px solid rgba(68,48,22,.08);
}

.item:last-child{border-bottom:none}

.label{
  font-weight:800;
  line-height:1.55;
}

.rate{
  color:var(--gold-strong);
  font-weight:900;
  white-space:nowrap;
}

.singles-listings{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(190px,1fr));
  gap:16px;
  margin-top:18px;
}

.singles-section{
  grid-column:1 / -1;
  margin-top:22px;
  padding-top:20px;
  border-top:1px solid rgba(15,61,110,.12);
}

.singles-section h3{
  margin:0;
  color:#071d35;
  font-size:1.15rem;
  letter-spacing:-.02em;
}

.singles-listing.item{
  display:flex;
  flex-direction:column;
  gap:0;
  align-items:stretch;
  overflow:hidden;
  padding:0;
  border:1px solid rgba(15,61,110,.12);
  border-radius:22px;
  background:#ffffff;
  box-shadow:0 16px 36px rgba(11,39,70,.08);
}

.singles-listing img,
.singles-image-placeholder{
  width:100%;
  aspect-ratio:3 / 4;
  object-fit:cover;
  background:#eef5ff;
}

.singles-image-placeholder{
  display:grid;
  place-items:center;
  color:#0b5cad;
  font-size:3rem;
  font-weight:900;
}

.singles-listing-body{
  display:grid;
  gap:10px;
  padding:14px;
}

.singles-listing .label{
  font-size:1rem;
  line-height:1.3;
}

.singles-listing .rate{
  color:#0b5cad;
  font-size:1.35rem;
}

.singles-listing label{
  display:grid;
  gap:6px;
  color:#526173;
  font-size:.82rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.singles-listing input{
  min-height:46px;
}

.singles-empty{
  margin-top:18px;
  padding:20px;
  border-radius:18px;
  background:#eef5ff;
  border:1px dashed rgba(15,61,110,.22);
  color:#526173;
  line-height:1.6;
  font-weight:800;
}

.landing-singles-listings{
  margin-top:24px;
}

.landing-singles-listings .singles-listing-body{
  min-height:160px;
}

.landing-singles-listings .singles-note{
  color:#526173;
  font-size:.92rem;
  line-height:1.5;
}

.landing-singles-listings .singles-listing .btn{
  justify-content:center;
  min-height:44px;
  padding:10px 14px;
  font-size:.9rem;
}

.rate-card[hidden]{display:none !important}

input[type="number"],
input[type="text"],
input[type="email"],
textarea{
  width:100%;
  min-height:52px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(68,48,22,.12);
  background:#fff;
  color:#1f1a14;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.6);
}

textarea{
  min-height:120px;
  resize:vertical;
}

input:focus,
textarea:focus{
  outline:none;
  border-color:rgba(184,137,52,.55);
  box-shadow:0 0 0 4px rgba(216,179,106,.14);
}

.summary-grid{
  display:grid;
  grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);
  gap:18px;
  margin-top:22px;
}

.total-box{
  padding:26px;
}

.total-label{
  color:var(--muted);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.78rem;
}

.total{
  margin:8px 0 10px;
  font-size:clamp(2.4rem,5vw,4rem);
  letter-spacing:-.06em;
  line-height:.95;
}

.count-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:6px;
  padding:12px 16px;
  border-radius:999px;
  background:var(--surface-tint);
  border:1px solid rgba(68,48,22,.10);
  font-weight:900;
}

.note{
  margin-top:14px;
  color:var(--muted);
  line-height:1.7;
}

.form-card{
  padding:26px;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.form-grid .full{
  grid-column:1 / -1;
}

label{
  display:block;
  margin-bottom:8px;
  font-weight:800;
}

.checkbox-row{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:18px;
  border-radius:18px;
  background:var(--surface-tint);
  border:1px solid rgba(68,48,22,.10);
}

.checkbox-row input[type="checkbox"]{
  width:18px;
  height:18px;
  margin-top:4px;
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

.success{
  display:none;
  margin-top:16px;
  padding:16px 18px;
  border-radius:18px;
  background:#edf8f0;
  border:1px solid rgba(53,111,77,.18);
  color:var(--success);
  font-weight:800;
}

.address-box{
  padding:22px;
  border-radius:24px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  max-width:460px;
  line-height:1.85;
  color:#ffffff;
}

.address-box strong{
  color:#ffffff;
}

.shipping-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}


.shipping-next-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
  align-items:stretch;
}

.shipping-next-grid > .story-card{
  height:100%;
}

.timeline{
  display:grid;
  gap:14px;
}

.timeline-item{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:12px;
  align-items:start;
}

.timeline-mark{
  width:32px;
  height:32px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#f4dfb0,#efd08c);
  color:#38260f;
  font-weight:900;
}

.faq-card strong{
  margin-bottom:10px;
  font-size:1.05rem;
}

.footer{
  padding:28px 0 42px;
  color:#5d574d;
}

.footer-inner{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:12px 20px;
  padding-top:10px;
  border-top:1px solid rgba(68,48,22,.10);
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.sbh-x-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#2d3948;
  font-weight:800;
  line-height:1;
}

.sbh-x-link img.sbh-x-icon{
  width:16px !important;
  height:16px !important;
  max-width:16px !important;
  background:#ffffff;
  border-radius:4px;
  max-height:16px !important;
  min-width:16px !important;
  min-height:16px !important;
  display:inline-block !important;
  flex:0 0 16px !important;
  object-fit:contain;
  vertical-align:middle;
}

.sbh-social-note a,
.check-list a{
  color:#9a6a18;
  font-weight:900;
}

.mono{
  font-variant-numeric:tabular-nums;
}

@media (max-width: 1120px){
  .stats-grid,
  .feature-grid,
  .games-grid,
  .quick-grid,
  .category-grid,
  .art-grid,
  .badge-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .hero-grid,
  .story-grid,
  .cta-band,
  .summary-grid,
  .image-split,
  .mockup-band,
  .split-band{
    grid-template-columns:1fr;
  }

  .cta-actions{
    justify-content:flex-start;
  }

  .rates-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 880px){
  .faq-grid,
  .steps,
  .shipping-grid,
  .shipping-next-grid,
  .hero-kicker,
  .art-grid,
  .metric-bar{
    grid-template-columns:1fr;
  }

  .rates-layout{
    grid-template-columns:1fr;
  }

  .filter-panel{
    position:static;
  }
}

@media (max-width: 720px){
  .container{
    width:min(var(--max), calc(100% - 24px));
  }

  .site-header-inner{
    min-height:68px;
    align-items:flex-start;
    padding:12px 0;
    flex-direction:column;
  }

  .site-nav{
    width:100%;
    justify-content:space-between;
    gap:10px 14px;
  }

  .site-nav a:not(.btn){
    font-size:.92rem;
  }

  .brand-copy strong{
    font-size:.92rem;
  }

  .brand-copy span{
    font-size:.62rem;
  }

  .hero-inner,
  .card-pad-lg{
    padding:24px 20px;
  }

  .card-pad,
  .feature-card,
  .game-card,
  .faq-card,
  .story-card,
  .quick-card,
  .category-card,
  .step-card,
  .rate-card,
  .filter-panel,
  .total-box,
  .form-card{
    padding:20px;
  }

  .hero-copy h1,
  .page-hero h1{
    font-size:2.9rem;
    line-height:.95;
  }

  .hero-copy p,
  .page-hero p{
    font-size:1rem;
  }

  .hero-actions,
  .actions{
    flex-direction:column;
  }

  .hero-actions .btn,
  .actions .btn{
    width:100%;
  }

  .stats-grid,
  .feature-grid,
  .games-grid,
  .quick-grid,
  .category-grid,
  .form-grid,
  .badge-grid{
    grid-template-columns:1fr;
  }

  .image-frame img{
    min-height:320px;
  }

  .item{
    grid-template-columns:1fr;
    gap:8px;
  }

  .rate{
    justify-self:start;
  }

  .site-nav .btn{
    min-height:44px;
    padding:11px 16px;
  }

  .footer-inner{
    flex-direction:column;
  }
}

.sbh-shell{
  background:
    radial-gradient(circle at 20% 10%, rgba(226,191,113,.12), transparent 20%),
    linear-gradient(180deg,#faf6ef 0%, #f5efe4 100%);
}

.sbh-topbar{
  position:sticky;
  top:0;
  z-index:70;
  background:rgba(250,246,239,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(130,101,45,.12);
}

.sbh-topbar-inner{
  min-height:88px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:24px;
  align-items:center;
}

.sbh-brand{
  display:flex;
  align-items:center;
  gap:16px;
}

.sbh-brand-logo{
  width:58px;
  height:58px;
  object-fit:contain;
}

.sbh-brand-copy strong{
  display:block;
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.1rem;
  font-size:clamp(1.4rem,2vw,2rem);
  line-height:.95;
  color:#1d2530;
  letter-spacing:-.03em;
}

.sbh-brand-copy span{
  display:block;
  margin-top:4px;
  color:#6c5730;
  font-size:1rem;
}

.sbh-nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:26px;
  flex-wrap:wrap;
}

.sbh-nav a,
.sbh-nav-more summary{
  color:#1f2732;
  font-weight:700;
  text-decoration:none;
}

.sbh-nav-more{
  position:relative;
}

.sbh-nav-more summary{
  display:flex;
  align-items:center;
  gap:7px;
  list-style:none;
  cursor:pointer;
}

.sbh-nav-more summary::-webkit-details-marker{
  display:none;
}

.sbh-nav-more summary::after{
  content:"";
  width:6px;
  height:6px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg) translateY(-2px);
  opacity:.72;
}

.sbh-nav-menu{
  position:absolute;
  top:calc(100% + 12px);
  right:0;
  z-index:20;
  min-width:170px;
  display:none;
  padding:10px;
  border:1px solid rgba(68,48,22,.12);
  border-radius:18px;
  background:rgba(255,253,249,.98);
  box-shadow:0 18px 40px rgba(31,39,50,.16);
}

.sbh-nav-more[open] .sbh-nav-menu,
.sbh-nav-more:hover .sbh-nav-menu,
.sbh-nav-more:focus-within .sbh-nav-menu{
  display:grid;
  gap:4px;
}

.sbh-nav-menu a{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  white-space:nowrap;
}

.sbh-nav-menu a:hover,
.sbh-nav-menu a:focus{
  background:rgba(244,225,184,.55);
}

.sbh-top-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
  align-items:center;
}

.sbh-social-icons{
  display:flex;
  align-items:center;
  gap:8px;
}

.sbh-social-icon{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#ffffff;
  border:1px solid rgba(15,61,110,.14);
  box-shadow:0 10px 22px rgba(11,39,70,.10);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.sbh-social-icon:hover,
.sbh-social-icon:focus{
  transform:translateY(-1px);
  border-color:rgba(47,128,237,.36);
  box-shadow:0 14px 28px rgba(11,39,70,.14);
}

.sbh-social-icon img{
  width:18px;
  height:18px;
  object-fit:contain;
}

.footer-social .sbh-social-icon{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.18);
  box-shadow:none;
}

.footer-social .sbh-social-icon:hover,
.footer-social .sbh-social-icon:focus{
  background:rgba(255,255,255,.18);
  border-color:rgba(255,255,255,.34);
}

.sbh-hero-wrap{
  padding:18px 0 0;
}

.sbh-hero{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(130,101,45,.14);
  border-radius:0 0 28px 28px;
  background:
    linear-gradient(90deg, rgba(248,242,233,.96) 0%, rgba(251,247,240,.92) 42%, rgba(246,237,221,.78) 68%, rgba(237,223,198,.54) 100%),
    url('/homepage-hero-v2.jpg') right center/cover no-repeat;
  box-shadow:0 18px 44px rgba(18,15,9,.08);
  padding:34px 34px 22px;
}

.sbh-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 24% 42%, rgba(221,189,112,.10), transparent 26%),
    radial-gradient(circle at 79% 34%, rgba(221,189,112,.14), transparent 24%),
    linear-gradient(90deg, rgba(250,246,239,.40) 0%, rgba(250,246,239,.08) 52%, rgba(16,13,10,.08) 100%);
  pointer-events:none;
}

.sbh-hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(420px,.9fr);
  gap:26px;
  align-items:start;
}

.sbh-hero-copy{
  padding:12px 0 0 8px;
}

.sbh-hero-copy h1{
  margin:0;
  max-width:700px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2.9rem,6.5vw,5.3rem);
  line-height:.97;
  letter-spacing:-.07em;
  color:#17202a;
}

.sbh-hero-copy h1 span{
  color:#c99731;
}

.sbh-hero-copy p{
  margin:18px 0 0;
  color:#20262f;
  font-size:1.35rem;
  line-height:1.4;
}

.sbh-hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:26px;
}

.sbh-worth-card{
  position:relative;
  z-index:2;
  background:rgba(255,251,245,.96);
  border:1px solid rgba(130,101,45,.18);
  border-radius:22px;
  box-shadow:0 20px 44px rgba(20,16,8,.12);
  padding:14px;
  max-width:520px;
  justify-self:end;
}

.sbh-worth-header{
  padding:14px 18px 16px;
  text-align:center;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:900;
  color:#1d2530;
  border-bottom:1px solid rgba(130,101,45,.16);
}

.sbh-worth-grid{
  display:grid;
  grid-template-columns:1.15fr .75fr;
  gap:0;
}

.sbh-payouts,
.sbh-accepts{
  padding:16px 14px 12px;
}

.sbh-payouts{
  border-right:1px solid rgba(130,101,45,.14);
}

.sbh-payouts h3,
.sbh-accepts h3{
  margin:0 0 12px;
  font-size:.95rem;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:#2c3440;
  text-align:center;
}

.sbh-payout-item{
  display:grid;
  grid-template-columns:54px 1fr auto;
  gap:12px;
  align-items:center;
  padding:10px 0;
  border-bottom:1px solid rgba(130,101,45,.12);
}

.sbh-payouts{
  text-align:center;
}

.sbh-payout-item{
  text-align:left;
}

.sbh-payout-item strong{
  display:block;
  color:#1b2430;
}

.sbh-payout-item span{
  display:block;
  margin-top:3px;
  color:#6a6458;
  font-size:.92rem;
}

.sbh-payout-price{
  color:#4d8b33;
  font-weight:900;
  font-size:1.15rem;
}

.sbh-payout-art{
  width:54px;
  height:54px;
  border-radius:8px;
  border:1px solid rgba(70,48,16,.28);
  box-shadow:0 8px 18px rgba(18,14,8,.12);
  object-fit:cover;
  background:#faf7f0;
}

.sbh-art-fire{
  background:
    radial-gradient(circle at 45% 35%, rgba(255,208,99,.9), transparent 28%),
    linear-gradient(135deg,#153c57,#071a27 55%, #d99d34);
}

.sbh-art-lightning{
  background:
    linear-gradient(135deg,#2a1a10,#110803),
    linear-gradient(45deg,transparent 46%, #ffb33c 47%, #ffb33c 55%, transparent 56%);
  background-blend-mode:screen;
}

.sbh-art-dragon{
  background:
    radial-gradient(circle at 55% 40%, rgba(209,229,255,.7), transparent 24%),
    linear-gradient(135deg,#1f375e,#0b1321 62%, #94743d);
}

.sbh-inline-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:14px;
  color:#9b6a1c;
  font-weight:900;
}

.sbh-inline-link::after{
  content:"→";
}

.sbh-logo-list{
  display:grid;
  gap:14px;
  justify-items:center;
  padding-top:2px;
  text-align:center;
}

.sbh-more-games{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:2px;
  padding:8px 12px;
  border-radius:999px;
  background:#fff8e9;
  border:1px solid rgba(196,151,49,.22);
  color:#7a5718;
  font-weight:900;
  font-size:.9rem;
}

.sbh-logo-image{
  display:block;
  width:auto;
  max-width:150px;
  max-height:42px;
  object-fit:contain;
}

.sbh-logo-image.pokemon{
  max-width:146px;
  max-height:54px;
}

.sbh-logo-image.magic{
  max-width:136px;
  max-height:36px;
}

.sbh-logo-image.yugioh{
  max-width:148px;
  max-height:48px;
}

.sbh-logo-image.onepiece{
  max-width:140px;
  max-height:40px;
}

.sbh-logo-image.lorcana{
  max-width:146px;
  max-height:52px;
}

.sbh-game-mark{
  text-align:center;
  letter-spacing:-.03em;
  line-height:1;
}

.sbh-game-mark.pokemon{
  font-size:2rem;
  font-weight:900;
  color:#1e5cbc;
  text-shadow:0 2px 0 #f4ca3b, 0 0 1px #f4ca3b;
}

.sbh-game-mark.mtg{
  font-size:1.65rem;
  font-weight:900;
  color:#8c4022;
  text-transform:uppercase;
}

.sbh-game-mark.yugioh{
  font-size:1.6rem;
  font-weight:900;
  color:#af2c26;
}

.sbh-game-mark.onepiece{
  font-size:1.45rem;
  font-weight:900;
  color:#111827;
  text-transform:uppercase;
}

.sbh-game-mark.lorcana{
  font-size:1.6rem;
  font-family:Georgia,"Times New Roman",serif;
  color:#7b6635;
}

.sbh-worth-footer{
  margin-top:10px;
  padding:16px 18px;
  border-radius:0 0 16px 16px;
  background:#1f2937;
  color:#fff;
  text-align:center;
  font-size:1.05rem;
  font-weight:800;
}

.sbh-trust-strip{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  margin-top:22px;
}

.sbh-trust-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:14px 12px;
}

.sbh-icon{
  width:48px;
  height:48px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#fffaf0;
  border:1px solid rgba(196,151,49,.22);
  color:#bd8b27;
  font-size:1.4rem;
  box-shadow:var(--shadow-sm);
}

.sbh-trust-item strong{
  display:block;
  color:#1b2430;
}

.sbh-trust-item span{
  display:block;
  margin-top:4px;
  color:#625c51;
  line-height:1.5;
  font-size:.95rem;
}

.sbh-lower{
  padding:26px 0 34px;
}

.sbh-two-up{
  display:grid;
  grid-template-columns:1.15fr .95fr;
  gap:18px;
  margin-top:18px;
}

.sbh-panel{
  background:#fbf7f0;
  border:1px solid rgba(130,101,45,.14);
  border-radius:18px;
  padding:18px;
  box-shadow:0 14px 36px rgba(20,16,8,.05);
}

.sbh-panel-title{
  margin-bottom:18px;
  text-align:center;
  text-transform:uppercase;
  letter-spacing:.03em;
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.2rem;
  font-weight:800;
  color:#2c251a;
}

.sbh-section-kicker{
  width:max-content;
  max-width:100%;
  margin:0 auto 8px;
  padding:7px 13px;
  border-radius:999px;
  background:#fff4dc;
  border:1px solid rgba(202,155,50,.22);
  color:#9a6a18;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.sbh-process-panel{
  position:relative;
  overflow:hidden;
  padding:20px 22px 22px;
  background:
    radial-gradient(circle at 10% 0%, rgba(216,179,106,.20), transparent 26%),
    radial-gradient(circle at 92% 14%, rgba(39,71,101,.09), transparent 22%),
    linear-gradient(180deg,#fffaf0,#f5ecdc);
}

.sbh-process-panel::before{
  content:"";
  position:absolute;
  inset:78px 54px auto;
  height:2px;
  background:linear-gradient(90deg, transparent, rgba(202,155,50,.22), transparent);
  pointer-events:none;
}

.sbh-process-intro{
  max-width:760px;
  margin:-8px auto 20px;
  color:#655f55;
  line-height:1.7;
  text-align:center;
}

.sbh-steps{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.sbh-step{
  position:relative;
  overflow:hidden;
  text-align:center;
  padding:10px 10px 20px;
  border:1px solid rgba(130,101,45,.10);
  border-radius:18px;
  background:rgba(255,253,248,.72);
  box-shadow:0 14px 28px rgba(39,31,16,.045);
}

.sbh-step:last-child{
  border-right:1px solid rgba(130,101,45,.10);
}

.sbh-step-num{
  width:38px;
  height:38px;
  margin:-20px auto 12px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#17233a,#274765);
  color:#f7dfaa;
  font-size:.9rem;
  font-weight:900;
  border:3px solid #fffdf8;
  box-shadow:0 10px 18px rgba(23,35,58,.16);
}

.sbh-step-art{
  min-height:118px;
  display:grid;
  place-items:end center;
  padding:6px 8px 0;
  border-radius:14px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255,255,255,.74), transparent 32%),
    linear-gradient(145deg,#f7e7c5,#eef4fb);
}

.sbh-step-art img{
  width:min(174px,100%);
  height:116px;
  object-fit:contain;
  filter:drop-shadow(0 14px 18px rgba(36,26,10,.10));
}

.sbh-step-copy{
  position:relative;
  padding:0 6px;
}

.sbh-step strong{
  display:block;
  color:#1c2430;
  font-size:1.02rem;
  letter-spacing:-.01em;
}

.sbh-step p{
  max-width:190px;
  margin:10px auto 0;
  color:#655f55;
  line-height:1.55;
  font-size:.96rem;
}

.sbh-reviews{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.sbh-review{
  background:#fffdf9;
  border:1px solid rgba(130,101,45,.12);
  border-radius:14px;
  padding:16px;
}

.sbh-stars{
  color:#c99731;
  letter-spacing:.15em;
  font-size:1.15rem;
}

.sbh-review p{
  margin:12px 0;
  color:#2b3137;
  font-style:italic;
  line-height:1.55;
}

.sbh-review strong{
  display:block;
  color:#1c2430;
}

.sbh-review span{
  display:block;
  margin-top:8px;
  color:#8b836f;
}

.sbh-bottom-grid{
  grid-template-columns:1.25fr .75fr;
}

.sbh-accept-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
}

.sbh-accept-card{
  min-height:88px;
  display:grid;
  place-items:center;
  background:#fffdf9;
  border:1px solid rgba(130,101,45,.12);
  border-radius:14px;
  padding:14px 12px;
  text-align:center;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.sbh-accept-card:hover{
  transform:translateY(-2px);
  border-color:rgba(202,155,50,.28);
  box-shadow:0 14px 30px rgba(20,16,8,.08);
}

.sbh-logo-link{
  width:100%;
  min-height:60px;
  display:grid;
  place-items:center;
}

.sbh-logo-tile{
  display:block;
  width:auto;
  margin:0 auto;
  object-fit:contain;
  max-width:100%;
  height:44px;
}

.sbh-logo-tile.pokemon{
  height:50px;
}

.sbh-logo-tile.magic{
  height:34px;
}

.sbh-logo-tile.yugioh{
  height:46px;
}

.sbh-logo-tile.onepiece{
  height:34px;
}

.sbh-logo-tile.lorcana{
  height:44px;
}

.sbh-logo-tile.dbs,
.sbh-logo-tile.union,
.sbh-logo-tile.fftcg,
.sbh-logo-tile.digimon,
.sbh-logo-tile.weiss,
.sbh-logo-tile.riftbound,
.sbh-logo-tile.wow,
.sbh-logo-tile.dbz{
  height:52px;
}

.sbh-logo-tile.fftcg,
.sbh-logo-tile.weiss{
  height:58px;
}

.sbh-logo-tile.riftbound,
.sbh-logo-tile.wow,
.sbh-logo-tile.dbz{
  height:60px;
}

.sbh-logo-tile.middleearth{
  height:72px;
  border-radius:8px;
  box-shadow:0 8px 18px rgba(20,16,8,.16);
}

.sbh-accept-card a::after{
  content:"→";
}

.sbh-accept-card .sbh-logo-link::after{
  content:none;
}

.sbh-faq-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}

.sbh-faq-head a{
  color:#29466d;
  font-weight:800;
}

.sbh-faq-list{
  display:grid;
}

.sbh-faq-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:16px 0;
  border-top:1px solid rgba(130,101,45,.14);
  color:#212730;
}

.sbh-faq-item strong{
  color:#202a38;
  font-size:1.45rem;
  font-weight:400;
}

.sbh-about-strip{
  display:grid;
  grid-template-columns:1fr auto;
  gap:20px;
  align-items:center;
  margin-top:18px;
  padding:24px 22px;
  border-radius:20px;
  background:linear-gradient(135deg,#fff7e8,#fffdf9);
  border:1px solid rgba(130,101,45,.14);
  box-shadow:0 14px 30px rgba(20,16,8,.05);
}

.sbh-about-strip strong{
  display:block;
  color:#1c2430;
  font-size:1.15rem;
}

.sbh-about-strip p{
  margin:8px 0 0;
  color:#655f55;
  line-height:1.65;
}

.sbh-about-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

@media (max-width: 1200px){
  .sbh-hero-grid,
  .sbh-two-up,
  .sbh-bottom-grid,
  .sbh-about-strip{
    grid-template-columns:1fr;
  }

  .sbh-worth-grid{
    grid-template-columns:1fr;
  }

  .sbh-payouts{
    border-right:none;
    border-bottom:1px solid rgba(130,101,45,.14);
  }

  .sbh-trust-strip,
  .sbh-accept-grid,
  .sbh-reviews{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 900px){
  .sbh-topbar-inner{
    grid-template-columns:1fr;
    justify-items:start;
    padding:16px 0;
  }

  .sbh-nav{
    justify-content:flex-start;
  }

  .sbh-nav-more{
    position:static;
  }

  .sbh-nav-menu{
    right:auto;
    left:0;
  }

  .sbh-top-actions{
    justify-content:flex-start;
  }

  .sbh-hero{
    padding:22px 18px 18px;
  }

  .sbh-hero-copy{
    padding-left:0;
  }

  .sbh-hero-copy p{
    font-size:1.2rem;
  }

  .sbh-trust-strip,
  .sbh-steps,
  .sbh-reviews,
  .sbh-accept-grid{
    grid-template-columns:1fr;
  }

  .sbh-step{
    border-right:1px solid rgba(130,101,45,.13);
    border-bottom:1px solid rgba(130,101,45,.13);
    padding-bottom:18px;
  }

  .sbh-step:last-child{
    border-bottom:1px solid rgba(130,101,45,.13);
  }

  .sbh-decor{
    display:none;
  }
}

@media (max-width: 640px){
  .sbh-hero-copy h1{
    font-size:3rem;
  }

  .sbh-hero-actions,
  .sbh-top-actions,
  .sbh-about-actions{
    flex-direction:column;
  }

  .sbh-hero-actions .btn,
  .sbh-top-actions .btn,
  .sbh-about-actions .btn{
    width:100%;
  }
}

/* Homepage cleanup overrides */
.sbh-art-pokemon-deck{
  background:
    radial-gradient(circle at 45% 35%, rgba(255,221,138,.95), transparent 24%),
    linear-gradient(135deg,#19345f,#0a1627 62%, #e1b34e);
}

.sbh-art-union-kit{
  background:
    radial-gradient(circle at 38% 28%, rgba(255,255,255,.26), transparent 22%),
    linear-gradient(135deg,#4d1d37,#130816 58%, #e6be67);
}

.sbh-art-ygo-foil{
  background:
    radial-gradient(circle at 55% 40%, rgba(209,229,255,.7), transparent 24%),
    linear-gradient(135deg,#1d2747,#0b1120 62%, #b18a40);
}

.sbh-inline-link::after,
.sbh-accept-card a::after{
  content:"->";
}

.sbh-accept-card .sbh-logo-link::after{
  content:none;
}

.sbh-icon{
  font-size:.82rem;
  font-weight:900;
  letter-spacing:.02em;
}

.sbh-step-icon{
  font-size:1.2rem;
  font-weight:900;
  min-height:28px;
}

.sbh-faq-item{
  display:block;
  padding:0;
}

.sbh-faq-item summary{
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:16px 0;
  cursor:pointer;
}

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

.sbh-faq-answer{
  padding:0 0 16px;
  color:#655f55;
  line-height:1.6;
}

@media (max-width: 1200px){
  .sbh-worth-card{
    max-width:none;
    justify-self:stretch;
  }
}

/* Shared estimate cart / marketplace phase one */
.sbh-estimate-badge{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:132px;
  min-height:52px;
  padding:9px 14px 9px 12px;
  border-radius:999px;
  border:1px solid rgba(175,124,35,.22);
  background:linear-gradient(135deg,#fff8e8,#f5e2ba);
  color:#17202a;
  text-decoration:none;
  font-weight:900;
  box-shadow:0 10px 26px rgba(77,49,10,.10);
  flex:0 0 auto;
  white-space:nowrap;
  overflow:visible;
}

.sbh-estimate-badge:hover{
  transform:translateY(-1px);
}

.sbh-stack-icon{
  position:relative;
  display:block;
  width:30px;
  height:26px;
  flex:0 0 30px;
}

.sbh-stack-icon span{
  position:absolute;
  width:22px;
  height:15px;
  border-radius:4px;
  border:2px solid #17202a;
  background:#fffdf7;
  box-shadow:0 2px 0 rgba(23,32,42,.12);
}

.sbh-stack-icon span:nth-child(1){
  left:0;
  top:2px;
  transform:rotate(-9deg);
}

.sbh-stack-icon span:nth-child(2){
  left:4px;
  top:5px;
  transform:rotate(-2deg);
}

.sbh-stack-icon span:nth-child(3){
  left:7px;
  top:8px;
  background:#e9c46a;
}

.sbh-estimate-text{
  display:grid;
  gap:1px;
  line-height:1.05;
  min-width:54px;
}

.sbh-estimate-text strong{
  font-size:.88rem;
}

.sbh-estimate-text small{
  color:#715625;
  font-size:.72rem;
  font-weight:800;
}

.sbh-estimate-count{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:24px;
  height:24px;
  padding:0 6px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#17202a;
  color:#fff;
  border:2px solid #fff8e8;
  font-size:.72rem;
  line-height:1;
  z-index:2;
}

.sbh-estimate-badge:not(.has-items) .sbh-estimate-count{
  background:#927b54;
}

.estimate-cart-preview{
  margin-top:18px;
  padding:14px;
  border-radius:18px;
  background:#fffaf0;
  border:1px solid rgba(130,101,45,.12);
}

.estimate-cart-head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  margin-bottom:10px;
}

.estimate-cart-head strong{
  color:#17202a;
}

.estimate-cart-head span,
.estimate-cart-empty,
.estimate-cart-more{
  color:#756b5d;
  font-size:.92rem;
  line-height:1.45;
}

.estimate-cart-lines{
  display:grid;
  gap:8px;
}

.estimate-cart-line{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-top:1px solid rgba(130,101,45,.10);
}

.estimate-cart-line span{
  display:grid;
  gap:3px;
}

.estimate-cart-line strong{
  color:#17202a;
  font-size:.95rem;
}

.estimate-cart-line em{
  color:#756b5d;
  font-style:normal;
  font-size:.82rem;
}

.estimate-cart-line b{
  color:#8a641f;
  white-space:nowrap;
}

.estimate-cart-more{
  margin-top:10px;
}

.estimate-cart-clear{
  margin-top:12px;
  padding:0;
  border:0;
  background:transparent;
  color:#8a641f;
  font-weight:900;
  cursor:pointer;
}


.estimate-page-section{
  padding-top:34px;
}

.estimate-review-layout{
  display:grid;
  grid-template-columns:minmax(0,1.18fr) minmax(360px,.82fr);
  gap:22px;
  align-items:start;
}

.estimate-review-card,
.estimate-submit-card{
  position:relative;
  padding:28px;
}

.estimate-review-head{
  margin-bottom:20px;
  padding-bottom:14px;
  border-bottom:1px solid rgba(130,101,45,.12);
}

.estimate-review-head h2{
  margin:0;
  color:#17202a;
  font-size:clamp(2rem,4vw,3rem);
  letter-spacing:-.05em;
  line-height:1;
}

.estimate-review-head p{
  margin:8px 0 0;
  color:#756b5d;
  line-height:1.55;
}

.estimate-review-empty{
  padding:22px;
  border-radius:20px;
  background:#fff8e8;
  border:1px dashed rgba(130,101,45,.24);
}

.estimate-review-empty p{
  margin:8px 0 0;
  color:#756b5d;
  line-height:1.6;
}

.estimate-review-groups{
  display:grid;
  gap:16px;
}

.estimate-review-group{
  border:1px solid rgba(130,101,45,.14);
  border-radius:20px;
  overflow:hidden;
  background:#fffdf8;
}

.estimate-review-group-head{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  padding:16px 20px;
  background:linear-gradient(135deg,#f8ead1,#fff8e8);
  border-bottom:1px solid rgba(130,101,45,.10);
}

.estimate-review-group-head strong{
  display:block;
  color:#17202a;
  font-size:1.08rem;
}

.estimate-review-group-head span{
  display:block;
  margin-top:2px;
  color:#756b5d;
  font-size:.84rem;
  font-weight:800;
}

.estimate-review-group-head b{
  color:#8a641f;
  white-space:nowrap;
}

.estimate-review-lines{
  display:grid;
}

.estimate-review-line{
  display:grid;
  grid-template-columns:minmax(0,1fr) 118px 118px auto;
  gap:16px;
  align-items:center;
  padding:16px 20px;
  border-top:1px solid rgba(130,101,45,.08);
}

.estimate-review-line:first-child{
  border-top:0;
}

.estimate-review-line strong{
  display:block;
  color:#17202a;
  line-height:1.35;
}

.estimate-review-line span{
  color:#756b5d;
  font-size:.84rem;
  font-weight:800;
}

.estimate-review-line label{
  display:grid;
  gap:5px;
}

.estimate-review-line input{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(68,48,22,.16);
  background:#fff;
  font:inherit;
  text-align:right;
}

.estimate-review-line b{
  color:#8a641f;
  text-align:right;
  white-space:nowrap;
}

.estimate-remove-line{
  border:0;
  background:transparent;
  color:#9d3b2f;
  font-weight:900;
  cursor:pointer;
  justify-self:end;
}

.estimate-review-totals{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:20px;
}

.estimate-review-totals div{
  padding:18px 20px;
  border-radius:20px;
  background:#17202a;
  color:#fff;
}

.estimate-review-totals div:first-child{
  background:#fff8e8;
  color:#17202a;
  border:1px solid rgba(130,101,45,.12);
}

.estimate-review-totals span{
  display:block;
  color:inherit;
  opacity:.78;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.estimate-review-totals strong{
  display:block;
  margin-top:6px;
  font-size:2.1rem;
  letter-spacing:-.04em;
  line-height:1;
}

.estimate-review-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.estimate-submit-card .btn[disabled]{
  opacity:.55;
  cursor:not-allowed;
  transform:none;
}

@media (max-width: 720px){
  .sbh-estimate-badge{
    width:100%;
    justify-content:center;
  }

  .estimate-cart-head,
  .estimate-cart-line{
    align-items:flex-start;
    flex-direction:column;
  }

  .estimate-review-layout,
  .estimate-review-line{
    grid-template-columns:1fr;
  }

  .estimate-review-totals{
    grid-template-columns:1fr;
  }

  .estimate-review-line input,
  .estimate-review-line b{
    text-align:left;
  }
}

/* Marketplace homepage refresh */
.sbh-topbar{background:rgba(255,255,255,.94);border-bottom:1px solid rgba(15,61,110,.12)}
.sbh-brand-copy strong,.sbh-nav a,.sbh-nav-more summary{color:#0b1f35}
.btn-primary{background:linear-gradient(135deg,#0b6fd8,#0a4f9e);color:#fff;border-color:transparent;box-shadow:0 14px 30px rgba(11,111,216,.22)}
.btn-secondary{background:#fff;color:#0b2746;border:1px solid rgba(15,61,110,.22)}
.market-home{background:linear-gradient(180deg,#fff 0%,#f3f8ff 48%,#edf6ff 100%)}
.market-hero-section{padding:34px 0 16px}
.market-hero-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr);gap:34px;align-items:center}
.market-kicker{display:inline-flex;padding:7px 10px;border-radius:9px;background:#e8f2ff;color:#0b5cad;font-size:.78rem;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.market-hero-copy h1{margin:16px 0 0;color:#071d35;font-family:Georgia,"Times New Roman",serif;font-size:clamp(3rem,5.8vw,5.8rem);line-height:.96;letter-spacing:-.06em;max-width:820px}
.market-hero-copy p{max-width:720px;margin:18px 0 0;color:#435467;font-size:1.2rem;line-height:1.65}
.market-search{margin-top:22px;max-width:680px;display:flex;align-items:center;gap:10px;padding:12px 16px;border:1px solid rgba(15,61,110,.18);border-radius:16px;background:#fff;box-shadow:0 16px 38px rgba(11,39,70,.08)}
.market-search span{color:#0b5cad;font-size:1.3rem;font-weight:900}.market-search input{width:100%;border:0;outline:0;background:transparent;color:#0b1f35}.market-search input::placeholder{color:#7b8794}
.market-actions{margin-top:22px}.market-proof-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:20px;color:#526173;font-weight:800}.market-proof-row span{display:inline-flex;align-items:center;gap:6px}.market-proof-row span::before{content:"";width:8px;height:8px;border-radius:50%;background:#0b6fd8}
.market-activity-card{background:#fff;border:1px solid rgba(15,61,110,.14);border-radius:22px;box-shadow:0 26px 70px rgba(11,39,70,.12);overflow:hidden}.market-card-head{display:flex;justify-content:space-between;align-items:center;padding:18px 22px;border-bottom:1px solid rgba(15,61,110,.10)}.market-card-head strong{color:#071d35;font-size:1.12rem}.market-card-head span{display:flex;align-items:center;gap:7px;color:#526173}.market-card-head i{width:9px;height:9px;border-radius:50%;background:#37b679;display:inline-block}.market-stat-grid{display:grid;grid-template-columns:repeat(3,1fr);padding:20px;border-bottom:1px solid rgba(15,61,110,.10)}.market-stat-grid div{text-align:center;border-left:1px solid rgba(15,61,110,.10)}.market-stat-grid div:first-child{border-left:0}.market-stat-grid strong{display:block;color:#071d35;font-size:1.35rem}.market-stat-grid span{display:block;margin-top:3px;color:#526173;font-size:.86rem}.market-activity-list{display:grid}.market-activity-list div{display:grid;grid-template-columns:auto 1fr auto;gap:10px;align-items:center;padding:10px 22px;border-bottom:1px solid rgba(15,61,110,.08)}.avatar-dot{width:28px;height:28px;border-radius:50%;background:linear-gradient(135deg,#d9e7f7,#8398ad)}.market-activity-list p{margin:0;color:#17283b}.market-activity-list em{font-style:normal;color:#0b5cad;background:#e8f2ff;padding:4px 8px;border-radius:8px;font-size:.78rem}.market-placeholder-note{margin:0;padding:12px 22px;color:#6b7280;font-size:.84rem;line-height:1.45;background:#f8fbff}
.market-category-section,.market-rates-section{padding:16px 0}.market-section-head{display:flex;justify-content:space-between;gap:18px;align-items:end;margin-bottom:14px}.market-section-head h2{margin:0;color:#071d35;font-size:1.45rem;letter-spacing:-.03em}.market-section-head p{margin:5px 0 0;color:#526173}.market-section-head.compact{margin-bottom:12px}.market-section-head a{color:#0b5cad;font-weight:900}
.market-logo-carousel{display:grid;grid-template-columns:repeat(auto-fit,minmax(165px,1fr));gap:14px;padding:3px 0 6px}.market-logo-card{min-height:142px;border:1px solid rgba(15,61,110,.14);border-radius:18px;background:#fff;box-shadow:0 16px 38px rgba(11,39,70,.08);display:grid;grid-template-rows:78px auto;align-items:center;justify-items:center;gap:12px;padding:18px;overflow:hidden;text-align:center;transition:transform .18s ease,box-shadow .18s ease}.market-logo-card img{width:100%;height:78px;max-width:150px;object-fit:contain}.market-logo-card span{color:#071d35;font-weight:900;line-height:1.2}.market-logo-card:hover{transform:translateY(-2px);box-shadow:0 20px 44px rgba(11,39,70,.12)}
.market-logo-card.dragon-ball-logo-card img{max-width:150px;max-height:none;width:100%;height:78px;object-fit:contain;}
.market-rates-grid{display:grid;grid-template-columns:240px minmax(0,1fr);gap:18px;align-items:start}.market-filter-card{background:#fff;border:1px solid rgba(15,61,110,.14);border-radius:18px;box-shadow:0 16px 38px rgba(11,39,70,.08);padding:16px}.market-filter-card>strong{display:block;color:#071d35;margin-bottom:10px}.market-filter-card details{border-top:1px solid rgba(15,61,110,.10);padding:10px 0}.market-filter-card summary{cursor:pointer;color:#0b2746;font-weight:900}.market-filter-card label{display:block;margin-top:8px;color:#526173;font-size:.9rem}.market-filter-card input{margin-right:7px}.market-rate-cards{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.market-rate-card{display:grid;grid-template-columns:105px 1fr;gap:14px;align-items:center;background:#fff;border:1px solid rgba(15,61,110,.14);border-radius:18px;padding:14px;box-shadow:0 16px 38px rgba(11,39,70,.08)}.market-rate-card img{width:105px;height:130px;object-fit:cover;border-radius:12px;background:#eef5ff}.market-rate-card strong{display:block;color:#071d35;line-height:1.25}.market-rate-card span{display:block;margin-top:5px;color:#526173;font-size:.86rem}.market-rate-card b{display:block;margin-top:16px;color:#0b5cad;font-size:1.6rem}.market-rate-card em{display:block;color:#526173;font-style:normal;font-size:.82rem}.market-trust-strip{padding:14px 0 36px}.market-trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;background:#fff;border:1px solid rgba(15,61,110,.14);border-radius:18px;box-shadow:0 16px 38px rgba(11,39,70,.08);overflow:hidden}.market-trust-grid div{padding:18px 22px;border-left:1px solid rgba(15,61,110,.10)}.market-trust-grid div:first-child{border-left:0}.market-trust-grid strong{display:block;color:#071d35}.market-trust-grid span{display:block;margin-top:4px;color:#526173;font-size:.9rem;line-height:1.45}
@media (max-width:1100px){.market-hero-grid,.market-rates-grid{grid-template-columns:1fr}.market-rate-cards{grid-template-columns:repeat(2,minmax(0,1fr))}.market-trust-grid{grid-template-columns:repeat(2,1fr)}.market-activity-card{max-width:none}.market-logo-carousel{grid-template-columns:repeat(auto-fit,minmax(150px,1fr))}}
@media (max-width:680px){.market-hero-section{padding-top:22px}.market-hero-copy h1{font-size:3rem}.market-stat-grid,.market-rate-cards,.market-trust-grid{grid-template-columns:1fr}.market-rate-card{grid-template-columns:92px 1fr}.market-rate-card img{width:92px;height:112px}.market-section-head{align-items:flex-start;flex-direction:column}.market-logo-carousel{grid-template-columns:repeat(2,minmax(0,1fr))}.market-logo-card{min-height:118px;grid-template-rows:62px auto;padding:14px}.market-logo-card img,.market-logo-card.dragon-ball-logo-card img{max-width:120px;height:62px;object-fit:contain}}

/* Sitewide blue palette refresh */
:root{
  --surface:#ffffff;
  --text:#071d35;
  --success:#23784b;
  --shadow-sm:0 12px 30px rgba(11,39,70,.07);
  --shadow:0 24px 60px rgba(11,39,70,.10);
  --shadow-lg:0 35px 85px rgba(11,39,70,.16);
}

.site-header,
.sbh-topbar{
  background:rgba(255,255,255,.94);
  border-bottom:1px solid rgba(15,61,110,.12);
  box-shadow:0 10px 30px rgba(11,39,70,.05);
}

.sbh-brand-copy strong,
.simple-page-title h1,
.section-head h2,
.section-head h3,
.rate-card h2,
.surface-card strong{
  color:#071d35;
}

.sbh-brand-copy span,
.simple-page-title p,
.footer,
.footer a,
.muted{
  color:#526173;
}

.surface-card,
.surface-card.soft,
.filter-panel,
.rate-card,
.faq-card{
  background:#ffffff;
  border-color:rgba(15,61,110,.13);
  box-shadow:var(--shadow);
}

.surface-card.dark{
  background:
    radial-gradient(circle at top right, rgba(47,128,237,.16), transparent 24%),
    linear-gradient(135deg,#0b2746,#06182c);
}

.btn-primary,
.filter-btn.active{
  background:linear-gradient(135deg,#0b6fd8,#0a4f9e);
  color:#ffffff;
  border-color:transparent;
  box-shadow:0 16px 32px rgba(11,111,216,.22);
}

.btn-secondary,
.filter-btn{
  background:#ffffff;
  color:#0b2746;
  border-color:rgba(15,61,110,.16);
  box-shadow:var(--shadow-sm);
}

.filter-btn:hover{
  border-color:rgba(47,128,237,.38);
}

.band{
  background:linear-gradient(135deg,#eaf3ff,#ffffff);
  border-color:rgba(47,128,237,.22);
  color:#0b5cad;
}

.footer-inner{
  border-top-color:rgba(15,61,110,.12);
}

.sbh-nav a,
.sbh-nav-more summary{
  color:#0b2746;
}

.sbh-nav-menu{
  background:rgba(255,255,255,.98);
  border-color:rgba(15,61,110,.14);
  box-shadow:0 18px 40px rgba(11,39,70,.16);
}

.sbh-nav-menu a:hover,
.sbh-nav-menu a:focus{
  background:#eaf3ff;
}

.sbh-about-strip{
  background:linear-gradient(135deg,#eaf3ff,#ffffff);
  border-color:rgba(47,128,237,.18);
  box-shadow:var(--shadow-sm);
}

.sbh-faq-item{
  border-top-color:rgba(15,61,110,.12);
}

.faq-page-grid{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);
  gap:20px;
  align-items:start;
}

.faq-page-card{
  padding:26px;
}

.faq-page-card h2{
  margin:0 0 14px;
  color:#071d35;
  font-size:clamp(1.6rem,3vw,2.35rem);
  letter-spacing:-.04em;
}

.faq-page-card p{
  color:#526173;
  line-height:1.7;
}

.faq-page-card .sbh-faq-answer{
  color:#526173;
}

.faq-contact-list{
  display:grid;
  gap:12px;
  margin-top:18px;
}

.faq-contact-list a,
.faq-contact-list span{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border:1px solid rgba(15,61,110,.12);
  border-radius:14px;
  background:#f8fbff;
  color:#0b2746;
  font-weight:800;
}

@media (max-width:820px){
  .faq-page-grid{
    grid-template-columns:1fr;
  }
}

/* Final blue cleanup for legacy page components */
.sbh-shell{
  min-height:100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(47,128,237,.10), transparent 22%),
    radial-gradient(circle at 90% 0%, rgba(15,61,110,.08), transparent 24%),
    linear-gradient(180deg,#ffffff 0%,#f4f8ff 48%,#edf6ff 100%);
}

.market-home{
  background:linear-gradient(180deg,#ffffff 0%,#f3f8ff 48%,#edf6ff 100%);
}

.market-trust-strip{
  padding-bottom:18px;
}

.footer{
  margin-top:0;
  padding:24px 0 32px;
  color:#dcecff;
  background:linear-gradient(135deg,#0b2746,#06182c);
}

.footer-inner{
  color:#dcecff;
  border-top:0;
  padding-top:0;
  align-items:center;
}

.footer a{
  color:#ffffff;
}

.footer .sbh-x-link{
  color:#ffffff;
}

.footer-links a{
  color:#dcecff;
}

.sbh-x-link img.sbh-x-icon{
  background:#ffffff !important;
  border-radius:4px;
}

.sbh-social-note a,
.check-list a{
  color:#0b5cad;
}

.seo-footer{
  margin-top:0;
  padding:38px 0 30px;
  color:#dcecff;
  background:
    radial-gradient(circle at 12% 12%, rgba(47,128,237,.20), transparent 26%),
    linear-gradient(135deg,#0b2746,#06182c);
}

.seo-footer-inner{
  display:grid;
  gap:28px;
}

.seo-footer-brand{
  display:grid;
  grid-template-columns:minmax(240px,360px) minmax(0,1fr);
  gap:18px 28px;
  align-items:start;
  padding-bottom:24px;
  border-bottom:1px solid rgba(220,236,255,.14);
}

.seo-footer-logo{
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:#ffffff;
}

.seo-footer-logo img{
  width:54px;
  height:54px;
  object-fit:contain;
}

.seo-footer-logo strong{
  display:block;
  color:#ffffff;
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.55rem;
  line-height:1;
}

.seo-footer-logo small{
  display:block;
  margin-top:4px;
  color:#dcecff;
  font-size:.86rem;
  font-weight:800;
}

.seo-footer-brand p{
  margin:0;
  color:#dcecff;
  line-height:1.65;
}

.seo-footer-pay-note{
  font-weight:900;
}

.seo-footer-nav{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
}

.seo-footer-nav section{
  display:grid;
  align-content:start;
  gap:9px;
}

.seo-footer-nav h2{
  margin:0 0 4px;
  color:#ffffff;
  font-size:.88rem;
  text-transform:uppercase;
  letter-spacing:.09em;
}

.seo-footer-nav a{
  color:#dcecff;
  line-height:1.35;
  font-weight:800;
}

.seo-footer-nav a:hover,
.seo-footer-nav a:focus{
  color:#ffffff;
  text-decoration:underline;
  text-underline-offset:3px;
}

.seo-footer-bottom{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:10px 18px;
  padding-top:18px;
  border-top:1px solid rgba(220,236,255,.14);
  color:#dcecff;
  font-size:.92rem;
}

.seo-footer-bottom a{
  color:#ffffff;
  font-weight:900;
}

.seo-footer .footer-social{
  justify-content:flex-end;
}

@media (max-width:980px){
  .seo-footer-brand{
    grid-template-columns:1fr;
  }

  .seo-footer .footer-social{
    justify-content:flex-start;
  }

  .seo-footer-nav{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:560px){
  .seo-footer{
    padding:30px 0 26px;
  }

  .seo-footer-nav{
    grid-template-columns:1fr;
  }
}

/* Homepage hero tightening */
.market-hero-section{
  padding:18px 0 8px;
}

.market-hero-grid{
  grid-template-columns:minmax(0,1fr) minmax(390px,.95fr);
  gap:24px;
  align-items:start;
}

.market-hero-copy{
  padding-top:10px;
}

.market-hero-side{
  display:grid;
  gap:14px;
  align-content:start;
}

.market-hero-copy h1{
  margin-top:0;
  font-size:clamp(2.55rem,4.7vw,4.65rem);
  max-width:760px;
}

.market-hero-copy p{
  max-width:650px;
  margin-top:14px;
  font-size:1.08rem;
  line-height:1.55;
}

.market-actions{
  display:flex;
  flex-wrap:nowrap;
  gap:10px;
  margin-top:18px;
}

.market-actions .btn{
  flex:0 1 auto;
  min-width:0;
  padding-left:18px;
  padding-right:18px;
  white-space:nowrap;
}

.market-proof-row{
  margin-top:16px;
}

.collection-hero-cta{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:16px;
  align-items:center;
  max-width:680px;
  margin-top:18px;
  padding:18px;
  border-radius:22px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.96),rgba(234,243,255,.96));
  border:1px solid rgba(15,61,110,.14);
  box-shadow:0 18px 44px rgba(11,39,70,.10);
}

.collection-hero-cta strong{
  display:block;
  color:#071d35;
  font-size:1.05rem;
}

.collection-hero-cta p{
  margin:6px 0 0;
  color:#526173;
  font-size:.96rem;
  line-height:1.45;
}

.collection-hero-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:10px 16px;
  border-radius:14px;
  background:#0b2746;
  color:#ffffff;
  font-weight:900;
  white-space:nowrap;
  box-shadow:0 12px 28px rgba(11,39,70,.18);
}

.market-activity-card{
  margin-top:0;
}

.market-highlight-grid{
  grid-template-columns:minmax(0,1fr) minmax(280px,340px);
  align-items:start;
}

.market-highlight-grid .market-rate-cards{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.market-side-stack{
  display:grid;
  gap:16px;
  align-content:start;
}

.market-highlight-grid .recent-feedback-panel{
  max-width:none;
  margin-top:0;
}

.recent-submissions-panel{
  padding:18px 20px;
  border-radius:22px;
  background:#ffffff;
  border:1px solid rgba(15,61,110,.12);
  box-shadow:0 18px 44px rgba(11,39,70,.12);
}

.recent-submissions-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

.recent-submissions-head strong{
  color:#071d35;
  font-size:1rem;
}

.recent-submissions-frame{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  background:#eaf3ff;
  border:1px solid rgba(15,61,110,.10);
  aspect-ratio:4 / 3;
}

.recent-submission-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:0;
  transition:opacity .55s ease;
}

.recent-submission-image.active{
  opacity:1;
}

.recent-submissions-panel p{
  margin:12px 0 0;
  color:#526173;
  line-height:1.55;
  font-size:.94rem;
}

.market-category-section{
  padding-top:18px;
}

.collection-quote-section{
  padding:10px 0 34px;
}

.collection-quote-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,380px);
  gap:26px;
  align-items:center;
  padding:30px;
  border-radius:28px;
  background:
    radial-gradient(circle at 92% 12%, rgba(47,128,237,.22), transparent 26%),
    linear-gradient(135deg,#ffffff,#edf6ff);
  border:1px solid rgba(15,61,110,.14);
  box-shadow:0 24px 60px rgba(11,39,70,.12);
}

.collection-quote-card h2{
  margin:12px 0 0;
  color:#071d35;
  font-size:clamp(2rem,4vw,3.25rem);
  line-height:1;
  letter-spacing:-.055em;
}

.collection-quote-card p{
  margin:14px 0 0;
  color:#526173;
  line-height:1.65;
  font-size:1.04rem;
}

.collection-quote-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.collection-quote-list span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid rgba(15,61,110,.12);
  color:#0b2746;
  font-size:.9rem;
  font-weight:900;
}

.collection-quote-list span::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:#0b6fd8;
}

.collection-quote-action{
  padding:22px;
  border-radius:22px;
  background:#0b2746;
  color:#ffffff;
  box-shadow:0 20px 44px rgba(11,39,70,.18);
}

.collection-quote-action strong{
  display:block;
  font-size:1.15rem;
}

.collection-quote-action p{
  margin:10px 0 18px;
  color:#dcecff;
  font-size:.96rem;
}

.collection-quote-action .btn{
  width:100%;
  box-shadow:none;
}

@media (max-width:820px){
  .collection-hero-cta,
  .collection-quote-card{
    grid-template-columns:1fr;
  }

  .collection-hero-cta a{
    width:100%;
    white-space:normal;
    text-align:center;
  }

  .collection-quote-card{
    padding:22px;
  }
}

@media (max-width:680px){
  .market-hero-copy h1{
    font-size:2.55rem;
  }
}

@media (min-width:1101px){
  .market-hero-grid{
    align-items:stretch;
  }

  .market-hero-side,
  .market-activity-card{
    height:100%;
  }

  .market-activity-card{
    display:flex;
    flex-direction:column;
    min-height:560px;
  }

  .market-activity-list{
    flex:1;
    align-content:stretch;
  }

  .market-activity-list div{
    min-height:82px;
  }

  .market-placeholder-note{
    margin-top:auto;
  }
}

/* Trading card collection landing page */
.collection-page{
  background:
    radial-gradient(circle at 12% 8%, rgba(47,128,237,.12), transparent 24%),
    linear-gradient(180deg,#ffffff 0%,#f4f8ff 48%,#edf6ff 100%);
}

.collection-page-hero{
  padding:30px 0 26px;
}

.collection-page-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(300px,420px);
  gap:26px;
  align-items:stretch;
}

.collection-page-hero-copy,
.collection-page-contact-card{
  border-radius:30px;
  border:1px solid rgba(15,61,110,.14);
  box-shadow:0 24px 60px rgba(11,39,70,.12);
}

.collection-page-hero-copy{
  padding:42px;
  background:
    radial-gradient(circle at 86% 10%, rgba(47,128,237,.18), transparent 28%),
    linear-gradient(135deg,#ffffff,#edf6ff);
}

.collection-page-hero-copy h1{
  margin:14px 0 0;
  color:#071d35;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2.7rem,5.2vw,5.35rem);
  line-height:.96;
  letter-spacing:-.06em;
}

.collection-page-hero-copy p{
  max-width:850px;
  margin:18px 0 0;
  color:#435467;
  font-size:1.12rem;
  line-height:1.65;
}

.collection-page-contact-card{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  padding:26px;
  background:
    radial-gradient(circle at top right, rgba(47,128,237,.20), transparent 34%),
    linear-gradient(135deg,#0b2746,#06182c);
  color:#ffffff;
}

.collection-contact-photo{
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
  border-radius:22px;
  margin-bottom:20px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 18px 36px rgba(0,0,0,.18);
}

.collection-page-contact-card strong{
  display:block;
  font-size:1.45rem;
  letter-spacing:-.03em;
}

.collection-page-contact-card p{
  margin:12px 0 18px;
  color:#dcecff;
  line-height:1.65;
}

.collection-page-contact-card a{
  display:inline-flex;
  justify-content:center;
  padding:13px 16px;
  border-radius:14px;
  background:#ffffff;
  color:#0b2746;
  font-weight:900;
}

.collection-buy-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:18px;
}

.collection-buy-grid.focused{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.collection-buy-card{
  padding:24px;
}

.collection-buy-card strong{
  display:block;
  margin-bottom:8px;
  font-size:1.1rem;
}

.collection-buy-card p{
  margin:0;
  color:#526173;
  line-height:1.6;
}

.collection-steps-layout{
  display:grid;
  grid-template-columns:minmax(240px,360px) minmax(0,1fr);
  gap:24px;
  align-items:start;
}

.section-head.left{
  text-align:left;
  margin:0;
}

.collection-steps-photo{
  width:100%;
  margin-top:22px;
  border-radius:24px;
  object-fit:cover;
  border:1px solid rgba(15,61,110,.14);
  box-shadow:0 20px 48px rgba(11,39,70,.14);
  background:#eaf3ff;
}

.collection-step-list{
  display:grid;
  gap:14px;
}

.collection-step{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:16px;
  align-items:start;
  padding:20px;
  border-radius:22px;
  background:#ffffff;
  border:1px solid rgba(15,61,110,.14);
  box-shadow:0 16px 38px rgba(11,39,70,.08);
}

.collection-step span{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:linear-gradient(135deg,#0b6fd8,#0a4f9e);
  color:#ffffff;
  font-weight:900;
}

.collection-step strong{
  display:block;
  color:#071d35;
  font-size:1.08rem;
}

.collection-step p{
  margin:6px 0 0;
  color:#526173;
  line-height:1.6;
}

.collection-games-card{
  padding:30px;
  background:
    radial-gradient(circle at 92% 10%, rgba(47,128,237,.16), transparent 26%),
    #ffffff;
}

.collection-games-card h2{
  margin:12px 0 0;
  color:#071d35;
  font-size:clamp(1.9rem,3vw,2.8rem);
  line-height:1.05;
  letter-spacing:-.045em;
}

.collection-games-card p{
  max-width:980px;
  color:#526173;
  line-height:1.7;
}

.collection-email{
  margin-top:8px !important;
  color:#ffffff !important;
  font-size:1.25rem;
  font-weight:900;
}

@media (max-width:920px){
  .collection-page-hero-grid,
  .collection-steps-layout{
    grid-template-columns:1fr;
  }

  .collection-buy-grid,
  .collection-buy-grid.focused{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:640px){
  .collection-page-hero-copy{
    padding:28px 22px;
  }

  .collection-page-hero-copy h1{
    font-size:2.65rem;
  }

  .collection-buy-grid,
  .collection-buy-grid.focused{
    grid-template-columns:1fr;
  }
}

/* Header blue palette alignment */
.sbh-topbar{
  background:linear-gradient(135deg,#0b2746,#06182c);
  border-bottom:1px solid rgba(220,236,255,.16);
  box-shadow:0 16px 34px rgba(6,24,44,.22);
}

.sbh-brand-logo{
  filter:drop-shadow(0 10px 18px rgba(11,39,70,.10));
}

.sbh-brand-copy strong{
  color:#ffffff;
}

.sbh-brand-copy span{
  color:#dcecff;
}

.sbh-nav a,
.sbh-nav-more summary{
  color:#eaf3ff;
}

.sbh-nav a:hover,
.sbh-nav-more summary:hover{
  color:#ffffff;
}

.sbh-nav-menu{
  background:#ffffff;
  border:1px solid rgba(220,236,255,.20);
  box-shadow:0 18px 42px rgba(6,24,44,.24);
}

.sbh-nav .sbh-nav-menu a{
  color:#0b2746;
}

.sbh-nav-menu a:hover,
.sbh-nav-menu a:focus{
  background:#eaf3ff;
  color:#0b5cad;
}

.surface-card.dark .address-box,
.surface-card.dark .address-box strong{
  color:#ffffff;
}

.shipping-grid .feature-card,
.shipping-next-grid .story-card{
  border-color:rgba(15,61,110,.13);
  background:#ffffff;
}

.shipping-grid .check-list div::before,
.shipping-next-grid .check-list div::before,
.shipping-next-grid .icon-list div::before{
  background:linear-gradient(135deg,#0b6fd8,#2f80ed);
  box-shadow:0 0 0 4px rgba(47,128,237,.14);
}

.shipping-next-grid .timeline-mark{
  background:linear-gradient(135deg,#0b6fd8,#2f80ed);
  color:#ffffff;
  box-shadow:0 10px 22px rgba(47,128,237,.18);
}

.sbh-estimate-badge{
  border:1px solid rgba(255,255,255,.24);
  background:linear-gradient(135deg,#0b6fd8,#2f80ed);
  color:#ffffff;
  box-shadow:0 14px 30px rgba(11,111,216,.22);
}

.sbh-estimate-badge:hover{
  box-shadow:0 18px 38px rgba(11,111,216,.28);
}

.sbh-stack-icon span{
  border-color:#ffffff;
  background:rgba(255,255,255,.22);
  box-shadow:0 2px 0 rgba(0,0,0,.12);
}

.sbh-stack-icon span:nth-child(3){
  background:#dcecff;
}

.sbh-estimate-text strong{
  color:#ffffff;
}

.sbh-estimate-text small{
  color:#dcecff;
}

.sbh-estimate-count{
  background:#06182c;
  color:#ffffff;
  border-color:#ffffff;
}

.sbh-estimate-badge:not(.has-items) .sbh-estimate-count{
  background:#0b2746;
}

.recent-feedback-panel{
  max-width:640px;
  margin-top:18px;
  padding:18px 20px;
  border-radius:22px;
  background:linear-gradient(135deg,#0b2746,#06182c);
  color:#ffffff;
  box-shadow:0 18px 44px rgba(11,39,70,.14);
}

.recent-feedback-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.recent-feedback-head strong{
  color:#ffffff;
  font-size:1rem;
}

.recent-feedback-head a{
  color:#ffffff;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  padding:7px 10px;
  font-size:.78rem;
  font-weight:900;
  white-space:nowrap;
}

.recent-feedback-quote{
  margin-top:12px;
  padding:14px;
  border-radius:16px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
}

.recent-feedback-quote p{
  margin:0;
  color:#ffffff;
  line-height:1.55;
}

.recent-feedback-quote span{
  display:block;
  margin-top:10px;
  color:#dcecff;
  font-weight:900;
}

/* Estimate summary blue palette */
.estimate-review-head{
  border-bottom-color:rgba(15,61,110,.12);
}

.estimate-review-head h2,
.estimate-review-group-head strong,
.estimate-review-line strong{
  color:#071d35;
}

.estimate-review-head p,
.estimate-review-empty p,
.estimate-review-group-head span,
.estimate-review-line span{
  color:#526173;
}

.estimate-review-empty{
  background:#eaf3ff;
  border-color:rgba(47,128,237,.35);
}

.estimate-review-group{
  background:#ffffff;
  border-color:rgba(15,61,110,.14);
}

.estimate-review-group-head{
  background:linear-gradient(135deg,#eaf3ff,#ffffff);
  border-bottom-color:rgba(15,61,110,.10);
}

.estimate-review-group-head b,
.estimate-review-line b{
  color:#0b5cad;
}

.estimate-review-line{
  border-top-color:rgba(15,61,110,.08);
}

.estimate-review-line input{
  border-color:rgba(15,61,110,.16);
}

.estimate-review-totals div{
  background:linear-gradient(135deg,#0b2746,#06182c);
  color:#ffffff;
  box-shadow:0 16px 32px rgba(11,39,70,.16);
}

.estimate-review-totals div:first-child{
  background:#ffffff;
  color:#071d35;
  border-color:rgba(15,61,110,.14);
  box-shadow:0 12px 28px rgba(11,39,70,.08);
}

.estimate-review-totals span{
  opacity:.9;
}

.estimate-review-totals strong{
  color:inherit;
}

.rate-category-image{
  width:100%;
  max-height:170px;
  object-fit:contain;
  border-radius:18px;
  background:#eef5ff;
  border:1px solid rgba(15,61,110,.10);
  margin:0 0 16px;
  padding:12px;
}

.rate-item-image{
  width:42px;
  height:42px;
  object-fit:cover;
  border-radius:10px;
  background:#eef5ff;
  border:1px solid rgba(15,61,110,.10);
}

@media (min-width: 1180px){
  .rate-card{
    display:grid;
    grid-template-columns:repeat(2,minmax(360px,1fr));
    gap:0 22px;
  }

  .rate-card h2,
  .rate-card .card-sub,
  .rate-card .rate-category-image,
  .rate-card .singles-section{
    grid-column:1 / -1;
  }

  .rate-card .item{
    min-height:76px;
  }

  .singles-listings{
    grid-template-columns:repeat(auto-fill,minmax(210px,1fr));
  }
}

/* Mobile homepage rescue: keep the marketplace layout from overlapping. */
@media (max-width: 820px){
  body{
    overflow-x:hidden;
  }

  .sbh-topbar-inner{
    grid-template-columns:1fr;
    gap:14px;
    min-height:0;
    padding:12px 0 14px;
  }

  .sbh-brand,
  .sbh-top-actions,
  .sbh-estimate-badge{
    width:100%;
  }

  .sbh-brand-logo{
    width:46px;
    height:46px;
  }

  .sbh-brand-copy strong{
    font-size:1.35rem;
  }

  .sbh-brand-copy span{
    font-size:.82rem;
  }

  .sbh-nav{
    width:100%;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
  }

  .sbh-nav a,
  .sbh-nav-more summary{
    min-height:42px;
    justify-content:center;
    padding:10px 12px;
    border-radius:12px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.12);
    text-align:center;
  }

  .sbh-nav-more{
    position:relative;
  }

  .sbh-nav-menu{
    right:auto;
    left:0;
    width:min(260px, calc(100vw - 32px));
  }

  .market-hero-section{
    padding:18px 0 8px;
  }

  .market-hero-grid,
  .market-rates-grid{
    grid-template-columns:1fr !important;
    gap:18px;
  }

  .market-hero-copy{
    padding-top:0;
  }

  .market-hero-copy h1{
    font-size:clamp(2.25rem,13vw,3.15rem);
    line-height:1;
    letter-spacing:-.045em;
  }

  .market-hero-copy p{
    font-size:1rem;
    line-height:1.55;
  }

  .market-actions{
    display:grid;
    gap:10px;
  }

  .market-actions .btn{
    width:100%;
  }

  .market-proof-row{
    display:grid;
    gap:8px;
  }

  .market-activity-card{
    width:100%;
    max-width:100%;
  }

  .market-card-head{
    align-items:flex-start;
    flex-direction:column;
    gap:6px;
    padding:16px;
  }

  .market-stat-grid{
    grid-template-columns:1fr;
    padding:0;
  }

  .market-stat-grid div{
    border-left:0;
    border-top:1px solid rgba(15,61,110,.10);
    padding:14px 12px;
  }

  .market-stat-grid div:first-child{
    border-top:0;
  }

  .market-activity-list div{
    grid-template-columns:auto minmax(0,1fr);
    align-items:start;
    padding:12px 16px;
  }

  .market-activity-list em{
    grid-column:2;
    justify-self:start;
  }

  .market-section-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .market-logo-carousel{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .market-logo-card{
    min-height:132px;
  }

  .market-filter-card{
    display:none;
  }

  .market-rate-cards,
  .market-trust-grid{
    grid-template-columns:1fr !important;
  }

  .market-rate-card{
    grid-template-columns:82px minmax(0,1fr);
    gap:12px;
    padding:12px;
  }

  .market-rate-card img{
    width:82px;
    height:100px;
  }

  .market-rate-card b{
    margin-top:10px;
    font-size:1.35rem;
  }

  .market-trust-grid div{
    border-left:0;
    border-top:1px solid rgba(15,61,110,.10);
  }

  .market-trust-grid div:first-child{
    border-top:0;
  }
}

@media (max-width: 420px){
  .sbh-nav{
    grid-template-columns:1fr;
  }

  .market-rate-card{
    grid-template-columns:72px minmax(0,1fr);
  }

  .market-rate-card img{
    width:72px;
    height:90px;
  }
}

/* Compact mobile header pass: keep navigation usable without taking over the screen. */
@media (max-width: 820px){
  .sbh-topbar{
    position:sticky;
    z-index:1000;
  }

  .sbh-topbar-inner{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    grid-template-areas:
      "brand estimate"
      "nav nav";
    align-items:center;
    gap:8px 10px;
    padding:8px 0 10px;
  }

  .sbh-brand{
    grid-area:brand;
    width:auto;
    min-width:0;
    gap:10px;
  }

  .sbh-brand-logo{
    width:38px;
    height:38px;
    flex:0 0 38px;
  }

  .sbh-brand-copy strong{
    font-size:1.15rem;
    line-height:1;
  }

  .sbh-brand-copy span{
    display:none;
  }

  .sbh-top-actions{
    grid-area:estimate;
    width:auto;
    justify-self:end;
    flex-wrap:nowrap;
    gap:6px;
  }

  .top-social{
    gap:5px;
    flex:0 0 auto;
  }

  .top-social .sbh-social-icon{
    width:30px;
    height:30px;
    box-shadow:none;
  }

  .top-social .sbh-social-icon img{
    width:15px;
    height:15px;
  }

  .sbh-estimate-badge{
    width:auto;
    min-height:42px;
    padding:8px;
    border-radius:14px;
    flex:0 0 auto;
  }

  .sbh-estimate-text{
    display:none;
  }

  .sbh-estimate-text strong{
    display:none;
  }

  .sbh-estimate-text small{
    font-size:.78rem;
  }

  .sbh-estimate-count{
    min-width:22px;
    height:22px;
    font-size:.75rem;
  }

  .sbh-nav{
    grid-area:nav;
    width:100%;
    display:flex;
    flex-wrap:nowrap;
    justify-content:flex-start;
    gap:8px;
    overflow-x:auto;
    padding:2px 0 4px;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
  }

  .sbh-nav::-webkit-scrollbar{
    display:none;
  }

  .sbh-nav a,
  .sbh-nav-more summary{
    flex:0 0 auto;
    min-height:36px;
    padding:8px 11px;
    font-size:.84rem;
    white-space:nowrap;
  }

  .sbh-nav-more{
    flex:0 0 auto;
    position:relative;
  }

  .sbh-nav-more[open]{
    z-index:1001;
  }

  .sbh-nav-more .sbh-nav-menu{
    position:fixed;
    top:104px;
    left:16px;
    right:16px;
    width:auto;
    min-width:0;
    max-height:calc(100vh - 124px);
    overflow-y:auto;
    z-index:1002;
    padding:12px;
    border-color:rgba(220,236,255,.22);
    background:#ffffff;
    box-shadow:0 24px 70px rgba(6,24,44,.32);
  }

  .sbh-nav-more .sbh-nav-menu a{
    white-space:normal;
    color:#071d35;
    background:#f4f8ff;
    border:1px solid rgba(15,61,110,.10);
    margin:4px 0;
  }

  .sbh-mobile-more-panel{
    position:fixed;
    left:16px;
    right:16px;
    z-index:2000;
    display:none;
    gap:8px;
    padding:12px;
    overflow-y:auto;
    border:1px solid rgba(15,61,110,.16);
    border-radius:18px;
    background:#ffffff;
    box-shadow:0 24px 70px rgba(6,24,44,.34);
  }

  .sbh-mobile-more-panel.is-open{
    display:grid;
  }

  .sbh-mobile-more-panel a{
    display:block;
    padding:13px 14px;
    border-radius:13px;
    color:#071d35;
    font-weight:900;
    text-decoration:none;
    background:#f4f8ff;
    border:1px solid rgba(15,61,110,.10);
  }

  .market-logo-carousel{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    width:100%;
    margin:0;
    padding:2px 0 8px;
    overflow:visible;
  }

  .market-logo-card{
    min-width:0;
    min-height:126px;
    grid-template-rows:62px auto;
    margin:0;
  }

  .market-logo-card img,
  .market-logo-card.dragon-ball-logo-card img{
    height:62px;
    max-width:120px;
    object-fit:contain;
  }
}

@media (max-width: 420px){
  .sbh-topbar-inner{
    grid-template-columns:minmax(0,1fr) auto;
  }

  .sbh-nav{
    display:flex;
  }

  .market-logo-card{
    min-height:118px;
  }
}

/* Mobile header proportion tune: larger brand, less dead space. */
@media (max-width: 820px){
  .sbh-topbar-inner{
    grid-template-columns:minmax(170px,1fr) auto;
    gap:6px 8px;
    padding:6px 0 8px;
  }

  .sbh-brand{
    gap:11px;
  }

  .sbh-brand-logo{
    width:48px;
    height:48px;
    flex-basis:48px;
  }

  .sbh-brand-copy strong{
    font-size:clamp(1.45rem,7vw,1.95rem);
    line-height:.92;
    letter-spacing:-.04em;
  }

  .sbh-top-actions{
    gap:5px;
  }

  .top-social{
    gap:4px;
  }

  .top-social .sbh-social-icon{
    width:28px;
    height:28px;
  }

  .top-social .sbh-social-icon img{
    width:14px;
    height:14px;
  }

  .sbh-estimate-badge{
    min-height:38px;
    padding:7px;
    border-radius:12px;
  }

  .sbh-stack-icon{
    width:22px;
    height:22px;
  }

  .sbh-estimate-count{
    min-width:20px;
    height:20px;
    font-size:.68rem;
  }

  .sbh-nav{
    padding-top:0;
  }
}

@media (max-width: 390px){
  .sbh-brand-logo{
    width:44px;
    height:44px;
    flex-basis:44px;
  }

  .sbh-brand-copy strong{
    font-size:1.38rem;
  }

  .top-social .sbh-social-icon{
    width:26px;
    height:26px;
  }

  .sbh-estimate-badge{
    min-height:36px;
    padding:6px;
  }
}
