:root {
  --container-max: 1320px;
  --container-pad: 6vw;
  --container-pad-min: 24px;
  --violet: #5f4b8b;
  --blue: #007fff;
  --silver: #c0c0c0;
  --turquoise: #40e0d0;
  --white: #ffffff;
  --charcoal: #333333;
  --deep-blue: #00008b;
  --slate: #36454f;
  --bg: #0f141a;
  --card: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.container{
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: max(var(--container-pad-min), var(--container-pad));
  padding-right: max(var(--container-pad-min), var(--container-pad));
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Century Gothic", "Cambria", sans-serif;
  color: var(--white);
  background: var(--bg);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.home {
  background: #0b1118;
}

.bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(800px 400px at 15% 20%, rgba(0, 127, 255, 0.35), transparent 60%),
    radial-gradient(600px 300px at 80% 10%, rgba(64, 224, 208, 0.3), transparent 55%),
    radial-gradient(900px 700px at 60% 80%, rgba(95, 75, 139, 0.5), transparent 60%),
    linear-gradient(135deg, #0d1117 0%, #1a2230 55%, #11161e 100%);
  z-index: -2;
}

.cmc-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 6vw 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 12, 18, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 5;
}

.cmc-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cmc-mark {
  width: 58px;
  height: 58px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--card-border);
}

.cmc-name {
  font-weight: 700;
  font-size: 1.05rem;
}

.cmc-tag {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.cmc-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  font-size: 0.95rem;
}

.cmc-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.cmc-nav a.is-active {
  color: var(--white);
  border-bottom-color: var(--blue);
}

.cmc-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cmc-actions--spacer {
  min-width: 96px;
  min-height: 48px;
}

.cmc-search {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 10px;
  padding: 8px 12px;
  width: 180px;
}

.cmc-login {
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.cmc-tabs {
  display: flex;
  gap: 14px;
  padding: 14px 6vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 12, 18, 0.6);
}

.tab {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.tab.is-active {
  color: var(--white);
  background: rgba(0, 127, 255, 0.2);
}

.product-strip {
  padding: 26px 6vw 10px;
}

.strip-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.strip-title span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 200px;
  margin: 0;
}

.product-card.span-2 {
  grid-row: span 2;
}

.product-img {
  background:
    linear-gradient(135deg, rgba(0, 127, 255, 0.2), rgba(95, 75, 139, 0.4)),
    radial-gradient(circle at top left, rgba(64, 224, 208, 0.2), transparent 60%);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  overflow: hidden;
}

.product-img.has-logo {
  background: #ffffff;
}

.product-img.has-logo img {
  max-width: 70%;
  max-height: 60%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.product-img.has-photo {
  background: #ffffff;
  overflow: hidden;
}

.product-img.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  max-width: 100%;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 26px 6vw;
}

.panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px;
}

.panel h2 {
  margin-top: 0;
}

.newsletter {
  margin: 10px 6vw 32px;
  padding: 22px;
  border-radius: 16px;
  background: rgba(0, 127, 255, 0.15);
  border: 1px solid rgba(0, 127, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.chart-panel {
  margin: 10px 6vw 20px;
  padding: 22px;
  border-radius: 6px;
  background: linear-gradient(140deg, rgba(0, 35, 80, 0.55), rgba(63, 45, 99, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.chart-header h2 {
  margin: 0 0 6px;
}

.chart-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chart-range{
  display: inline-flex;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(0, 127, 255, 0.12);
  border: 1px solid rgba(0, 127, 255, 0.35);
}

.chart-range .range-btn{
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.chart-range .range-btn:hover{
  color: #ffffff;
  background: rgba(64,224,208,0.18);
}

.chart-range .range-btn.is-active{
  color: #ffffff;
  background: rgba(0,127,255,0.4);
  box-shadow: 0 0 12px rgba(0,127,255,0.35);
}

.chart-controls select {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 8px 12px;
}

.chart-body {
  position: relative;
}

#price-chart {
  width: 100%;
  height: 260px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.chart-note {
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.simple-page {
  max-width: 720px;
  margin: 80px auto;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.review-hero {
  margin: 28px 6vw 18px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #ffffff;
  position: relative;
}

.review-hero img {
  width: auto;
  max-width: 33%;
  max-height: 160px;
  display: block;
  margin: 16px auto 0;
  object-fit: contain;
}

@media (max-width: 900px){
  .review-hero img{
    max-width: 60%;
    max-height: 140px;
  }
}

@media (max-width: 560px){
  .review-hero img{
    max-width: 80%;
    max-height: 120px;
  }
}

/* Binance hero alignment adjustments */
.banner-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-slot {
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-logo {
  max-height: 56px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.review-hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Review page width aligned to home page === */
.review-page{
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: max(var(--container-pad-min), var(--container-pad));
  padding-right: max(var(--container-pad-min), var(--container-pad));
}

.review-hero{
  margin: 28px 0 18px;
}

.review-section{
  margin: 18px 0;
}

.hero-link{
  display: block;
}

.review-footer-cta{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.stat-card span{
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-weight: 700;
}

.stat-card strong{
  display: block;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}

.yeti-inline{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 8px;
}

.yeti-inline img{
  height: 58px;
  width: auto;
  display: block;
}

.review-cta .brand-btn{
  background: rgba(0,127,255,0.18);
  border: 1px solid rgba(64,224,208,0.35);
  color: #ffffff;
}

.review-cta .brand-btn:hover,
.review-cta .brand-btn:focus-visible{
  color: var(--turquoise);
  background: rgba(0,127,255,0.28);
  outline: none;
}

/* === Review TOC link contrast === */
#toc a{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
}

#toc a:hover,
#toc a:focus-visible{
  color: var(--turquoise);
  text-decoration: underline;
  outline: none;
}

/* === Review gallery: 2 across, full image visibility === */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gallery-grid figure{
  margin: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 12px;
  overflow: hidden;
}

.gallery-grid img{
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

@media (max-width: 900px){
  .gallery-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .banner-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .logo-slot {
    width: 100%;
    justify-content: flex-start;
  }
  .banner-logo {
    max-height: 44px;
  }
  .review-hero-content {
    padding: 0 16px;
  }
}

/* ================================
   Shared Footer (Injected) — YCB
   ================================ */

/* //Comments: Footer wrapper + alignment.
   Must align with the same content width as tiles. */

/* //Comments: Match your site content container rhythm.
   If your tiles container uses different numbers, match them. */

/* //Comments: 4-column grid on desktop; collapses down on smaller screens. */

/* //Comments: Footer links readable + consistent spacing */

/* //Comments: Bottom row = socials + copyright */

/* //Comments: Social row uses inline SVG icons */

/* //Comments: Icon sizing + color inherits from link color */

/* //Comments: Hover micro-interaction (subtle “lift”) */
.social-link:hover,
.social-link:focus-visible{
  opacity:1;
  color: var(--turquoise);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
  outline:none;
}

/* //Comments: Keyboard focus ring without changing layout */
.social-link:focus-visible{
  box-shadow: 0 0 0 2px rgba(0,127,255,0.45);
}

/* //Comments: Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce){
  .footer-col a,

  .social-link:hover,
  .social-link:focus-visible{
    transform: none !important;
  }
}

/* === HEADER FINAL (Option 1 container + correct colors) === */
.cmc-header{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:24px;
  padding: 16px max(var(--container-pad-min), var(--container-pad));
  background: rgba(7,12,18,0.80);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  position: sticky;
  top:0;
  z-index: 50;
}

.cmc-brand{ display:flex; align-items:center; gap:14px; text-decoration:none; color:#fff; }
.cmc-brandtext{ display:flex; flex-direction:column; gap:2px; }
.cmc-mark{
  width:58px;
  height:58px;
  border-radius:12px;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
}

.cmc-name{ font-weight:800; font-size:1.15rem; color:#fff; }
.brand-yeti{ color:#fff; }
.brand-bazaar{ color:#fff; position:relative; }
.brand-bazaar::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:3px;
  border-radius:3px;
  background: rgba(0,127,255,0.9);
}

.cmc-nav{ display:flex; flex-wrap:wrap; gap:18px; justify-content:flex-start; }
.cmc-nav a{
  color: #ffffff;
  text-decoration:none;
  padding: 8px 14px;
  border-radius: 999px;
  background: #2b8fff;
  border: 1px solid rgba(64, 224, 208, 0.45);
  box-shadow: 0 10px 24px rgba(0, 127, 255, 0.25);
}
.cmc-nav a:hover{
  color:#ffffff;
  background: #1f7fe0;
  border-color: rgba(64,224,208,0.9);
  transform: translateY(-1px);
}

.cmc-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  color:#fff;
  text-decoration:none;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
}
.cmc-cta:hover{ color: var(--turquoise); background: rgba(255,255,255,0.14); }

@media (max-width: 820px){
  .cmc-header{ flex-wrap:wrap; align-items:flex-start; }
  .cmc-nav{ width:100%; justify-content:flex-start; }
  .cmc-actions{ width:100%; }
}

/* === LAYOUT OVERRIDES: TILE WIDTH + FOOTER RESET === */
.product-strip{
  padding: 26px 0 10px;
}

.product-strip,
.content-grid,
.chart-panel,
.newsletter{
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: max(var(--container-pad-min), var(--container-pad));
  padding-right: max(var(--container-pad-min), var(--container-pad));
}

.site-footer{
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.10);
}

.footer-inner{
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 max(var(--container-pad-min), var(--container-pad));
}

.footer-cols{
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 28px;
}

.footer-col .footer-heading{
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-col a{
  display: block;
  margin: 10px 0;
  color: #40E0D0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  opacity: 1;
  text-decoration: none;
}

.footer-col a:hover,
.footer-col a:focus-visible{
  color: #7ff8ec;
  outline: none;
}

/* News page only: increase footer link contrast without changing global footer styling */
body.coming-soon .footer-col a{
  color: #8ffcf2;
  font-weight: 600;
}

body.coming-soon .footer-col a:hover,
body.coming-soon .footer-col a:focus-visible{
  color: #ffffff;
}

.footer-bottom{
  margin-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}


.footer-social{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.social-link{
  color: #ffffff;
  opacity: 0.86;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 81px;
  height: 81px;
  border-radius: 10px;
  text-decoration: none;
}

.social-icon{
  width: 40.5px;
  height: 40.5px;
  fill: currentColor;
  display: block;
}

.social-link:hover,
.social-link:focus-visible{
  opacity: 1;
  color: var(--turquoise);
  background: rgba(255,255,255,0.06);
  outline: none;
}

.footer-copy{
  color: #ffffff;
  opacity: 0.78;
  font-size: 0.9rem;
}

@media (max-width: 900px){
  .footer-cols{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 520px){
  .footer-cols{ grid-template-columns: 1fr; }
  .footer-inner{ padding: 0 16px; }
}

/* === OPTION 1 WIDTH: EXPAND TO GREEN BOX === */
:root{
  --container-max: none;
}

.cmc-header,
.product-strip,
.content-grid,
.chart-panel,
.newsletter,
.footer-inner{
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 6vw;
  padding-right: 6vw;
}

/* === HEADER: remove Bazaar underline === */
.brand-bazaar::after{
  content: none;
}

/* === HEADER: login dropdown === */
.login-menu{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.login-button:hover,
.login-button:focus-visible{
  color: var(--turquoise);
  background: rgba(255,255,255,0.14);
  outline: none;
}

.login-dropdown{
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: rgba(12,18,26,0.98);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 8px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  display: none;
  z-index: 60;
}

.login-menu:hover .login-dropdown,
.login-menu:focus-within .login-dropdown{
  display: block;
}

.login-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  opacity: 0.88;
}

.login-item:hover,
.login-item:focus-visible{
  opacity: 1;
  color: var(--turquoise);
  background: rgba(255,255,255,0.06);
  outline: none;
}

.login-icon{
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.login-icon svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

@media (max-width: 640px){
  .login-dropdown{
    right: auto;
    left: 0;
    min-width: 200px;
  }
}

/* === Review cards hover labels === */
.product-card{
  position: relative;
  overflow: hidden;
}

.product-card .card-label{
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(7, 12, 18, 0.75);
  color: #ffffff;
  font-size: 0.9rem;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 140ms ease, transform 140ms ease;
  pointer-events: none;
}

.product-card:hover .card-label,
.product-card:focus-visible .card-label{
  opacity: 1;
  transform: translateY(0);
}

/* === TrojanBot static gallery (no hover magnification) === */
.trojanbot-static .gallery-grid figure{
  overflow: visible;
}
.trojanbot-static .gallery-grid img{
  height: auto !important;
  max-height: none;
  object-fit: contain !important;
  transform: none !important;
  box-shadow: none !important;
  transition: none !important;
}
.trojanbot-static .gallery-grid figure:hover img,
.trojanbot-static .gallery-grid figure:focus-within img{
  transform: none !important;
  box-shadow: none !important;
}

/* === Review galleries: show full images everywhere === */
.gallery-grid img{
  height: auto !important;
  object-fit: contain !important;
}
.gallery-grid figure:hover img,
.gallery-grid figure:focus-within img{
  transform: none !important;
  box-shadow: none !important;
}

/* === Rotating mini cards row === */
.mini-cards-row{
  margin: 18px 0 26px;
}

.mini-cards-grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.mini-card{
  background: transparent;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  width: 75%;
  height: 150px;
  margin: 0 auto;
  min-height: 0;
  box-shadow: none;
  overflow: hidden;
  position: relative;
}

.mini-card-img{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
}

.mini-card .card-label{
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(7, 12, 18, 0.75);
  color: #ffffff;
  font-size: 0.9rem;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 140ms ease, transform 140ms ease;
  pointer-events: none;
}

.mini-card-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  max-width: 100%;
}

.mini-card::after{
  content: none;
}

/* === Mini cards: retain original rounded card look === */
.mini-card{
  border-radius: 0;
}
.mini-card-img img{
  border-radius: 0;
  transform: none;
  object-position: center;
}

.mini-card:hover,
.mini-card:focus-visible{
  border-color: transparent;
  box-shadow: none;
  color: #ffffff;
}

.mini-card:hover .card-label,
.mini-card:focus-visible .card-label{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px){
  .mini-cards-grid{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 820px){
  .mini-cards-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px){
  .mini-cards-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* === Quick mobile pass (site-wide) === */
@media (max-width: 900px){
  .product-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .content-grid{
    grid-template-columns: 1fr;
  }
  .chart-panel,
  .newsletter,
  .product-strip{
    padding-left: 16px;
    padding-right: 16px;
  }
  .cmc-header{
    padding-left: 16px;
    padding-right: 16px;
  }
  .cmc-nav{
    gap: 12px;
  }
}

@media (max-width: 600px){
  .product-grid{
    grid-template-columns: 1fr;
  }
  .product-card{
    height: 180px;
  }
  .market-table-wrap{
    margin-top: 12px;
  }
  .market-table{
    font-size: 0.85rem;
  }
  .review-hero{
    padding-left: 16px;
    padding-right: 16px;
  }
  .review-page{
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* === Gate.io CTA sizing test === */
.review-gate .yeti-inline{
  margin-top: 12px;
  margin-bottom: 18px;
}

.review-gate .yeti-inline img{
  max-height: 480px;
}

.review-gate .review-cta{
  margin-top: 28px;
  margin-bottom: 36px;
}

.review-gate .review-cta .brand-btn{
  font-size: 1.35rem;
  font-weight: 800;
  padding: 18px 36px;
  border-radius: 6px;
  min-width: 280px;
  background: var(--blue);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0, 127, 255, 0.38), 0 0 0 1px rgba(255,255,255,0.08) inset;
}

/* === Gate.io: fixed background scroll (desktop only) === */
.review-gate .bg{
  position: fixed;
  inset: 0;
  z-index: -1;
}

/* === Gate.io: fixed background mobile fallback === */
@media (max-width: 900px){
  .review-gate .bg{
    position: absolute;
  }
}

/* === Content text links (plain footer-style green) === */
.review-page a:not(.ghost-btn):not(.brand-btn):not(.product-card):not(.hero-link),
.review-section a:not(.ghost-btn):not(.brand-btn):not(.product-card):not(.hero-link),
.content-grid a:not(.ghost-btn):not(.brand-btn):not(.product-card):not(.panel-link),
.chart-panel a:not(.ghost-btn):not(.brand-btn):not(.product-card),
.newsletter a:not(.ghost-btn):not(.brand-btn):not(.product-card){
  display: inline;
  padding: 0;
  border-radius: 0;
  color: #40E0D0;
  background: transparent;
  border: 0;
  text-decoration: none;
  transition: color 120ms ease;
}

.review-page a:not(.ghost-btn):not(.brand-btn):not(.product-card):hover,
.review-page a:not(.ghost-btn):not(.brand-btn):not(.product-card):focus-visible,
.review-section a:not(.ghost-btn):not(.brand-btn):not(.product-card):hover,
.review-section a:not(.ghost-btn):not(.brand-btn):not(.product-card):focus-visible,
.content-grid a:not(.ghost-btn):not(.brand-btn):not(.product-card):not(.panel-link):hover,
.content-grid a:not(.ghost-btn):not(.brand-btn):not(.product-card):not(.panel-link):focus-visible,
.chart-panel a:not(.ghost-btn):not(.brand-btn):not(.product-card):hover,
.chart-panel a:not(.ghost-btn):not(.brand-btn):not(.product-card):focus-visible,
.newsletter a:not(.ghost-btn):not(.brand-btn):not(.product-card):hover,
.newsletter a:not(.ghost-btn):not(.brand-btn):not(.product-card):focus-visible{
  color: #7ff8ec;
  background: transparent;
  border: 0;
  text-decoration: underline;
  outline: none;
}

.font-formal{
  font-family: "Cambria", serif;
}

/* === Review TOC Module Index (all reviews) === */
#toc .toc-head,
#legal-nav .toc-head{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

#toc .toc-helper,
#legal-nav .toc-helper{
  color: var(--silver);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

#toc .toc-pills,
#legal-nav .toc-pills{
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#toc .toc-pills li,
#legal-nav .toc-pills li{
  margin: 0;
}

#toc .toc-pills a,
#legal-nav .toc-pills a{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 127, 255, 0.16);
  border: 1px solid rgba(0, 127, 255, 0.5);
  text-decoration: none;
  font-weight: 600;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease, background 140ms ease;
}

#toc .toc-pills a::before,
#legal-nav .toc-pills a::before{
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5f4b8b;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15);
}

#toc .toc-pills a:hover,
#toc .toc-pills a:focus-visible,
#legal-nav .toc-pills a:hover,
#legal-nav .toc-pills a:focus-visible{
  transform: translateY(-1px);
  border-color: rgba(64, 224, 208, 0.75);
  box-shadow: 0 0 14px rgba(64, 224, 208, 0.25);
  outline: none;
}

#toc .toc-pills a:focus-visible,
#legal-nav .toc-pills a:focus-visible{
  box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.35), 0 0 16px rgba(64, 224, 208, 0.25);
}

#toc .toc-pills a.is-active,
#legal-nav .toc-pills a.is-active{
  background: rgba(0, 127, 255, 0.28);
  border-color: rgba(0, 127, 255, 0.9);
  box-shadow: 0 0 16px rgba(0, 127, 255, 0.3);
}

#toc .toc-pills a.is-active::before,
#legal-nav .toc-pills a.is-active::before{
  background: var(--turquoise);
  box-shadow: 0 0 10px rgba(64, 224, 208, 0.5);
}

#toc .toc-divider,
#legal-nav .toc-divider{
  height: 1px;
  margin-top: 12px;
  background: linear-gradient(90deg, rgba(0, 127, 255, 0.4), rgba(64, 224, 208, 0.25));
  opacity: 0.6;
}

/* === Review footer button (Back to Home) === */
.review-footer-cta .ghost-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--blue);
  border: 1px solid rgba(0, 127, 255, 0.85);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 127, 255, 0.24), 0 0 0 1px rgba(255,255,255,0.06) inset;
}

.review-footer-cta .ghost-btn:hover,
.review-footer-cta .ghost-btn:focus-visible{
  color: #ffffff;
  background: #2b8fff;
  border-color: rgba(64, 224, 208, 0.6);
  box-shadow: 0 12px 24px rgba(0, 127, 255, 0.3);
  outline: none;
}

/* === Force CTA button style across all reviews === */
.review-cta a.brand-btn,
.review-cta button.brand-btn,
.review-cta .brand-btn{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 18px 36px !important;
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: var(--blue) !important;
  border: 1px solid rgba(0, 127, 255, 0.85) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 16px 34px rgba(0, 127, 255, 0.38), 0 0 0 1px rgba(255,255,255,0.08) inset;
}

.review-cta a.brand-btn:hover,
.review-cta a.brand-btn:focus-visible,
.review-cta button.brand-btn:hover,
.review-cta button.brand-btn:focus-visible,
.review-cta .brand-btn:hover,
.review-cta .brand-btn:focus-visible{
  color: #ffffff !important;
  background: #2b8fff !important;
  border-color: rgba(64, 224, 208, 0.6) !important;
  box-shadow: 0 12px 28px rgba(0, 127, 255, 0.32);
  outline: none;
  transform: translateY(-1px);
}

/* === Force login button to match CTA === */
.login-button{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 12px 20px !important;
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: var(--blue) !important;
  border: 1px solid rgba(0, 127, 255, 0.85) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(0, 127, 255, 0.25), 0 0 0 1px rgba(255,255,255,0.06) inset;
}

.login-button:hover,
.login-button:focus-visible{
  color: #ffffff !important;
  background: #2b8fff !important;
  border-color: rgba(64, 224, 208, 0.6) !important;
  box-shadow: 0 12px 28px rgba(0, 127, 255, 0.32);
  outline: none;
  transform: translateY(-1px);
}

/* === Back to top button === */
.back-to-top{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(64, 224, 208, 0.6);
  background: rgba(64, 224, 208, 0.22);
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease, border-color 160ms ease;
  z-index: 2000;
}

.back-to-top.is-visible{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible{
  background: rgba(64, 224, 208, 0.35);
  border-color: rgba(64, 224, 208, 0.9);
  box-shadow: 0 0 16px rgba(64, 224, 208, 0.35);
  outline: none;
}


.cookie-modal{
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
}

.cookie-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(7,12,18,0.7);
  backdrop-filter: blur(2px);
}

.cookie-modal__panel{
  background: linear-gradient(145deg, rgba(7,12,18,0.98), rgba(10,18,28,0.96));
  position: relative;
  max-width: 520px;
  width: calc(100% - 32px);
  background: rgba(7,12,18,0.95);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  z-index: 1;
}

.cookie-modal__panel h3{
  margin: 0 0 8px;
}

.cookie-modal__panel p{
  margin: 0 0 14px;
  color: #c0c0c0;
}

.cookie-modal__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-modal__panel-inner{
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  display: grid;
  gap: 8px;
}

.cookie-panel-actions{
  margin-top: 12px;
}


.cookie-modal__panel-inner label{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 127, 255, 0.1);
  border: 1px solid rgba(0, 127, 255, 0.35);
}

.cookie-btn:hover,
.cookie-btn:focus-visible{
  color: #ffffff;
  background: #2b8fff;
  border-color: rgba(64, 224, 208, 0.6);
  box-shadow: 0 12px 28px rgba(0, 127, 255, 0.32);
  outline: none;
  transform: translateY(-1px);
}


.cookie-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: var(--blue);
  border: 1px solid rgba(0, 127, 255, 0.85);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 127, 255, 0.25), 0 0 0 1px rgba(255,255,255,0.06) inset;
  cursor: pointer;
}


/* === Coming Soon Page === */
.coming-soon{
  min-height: 100vh;
  background: url('assets/Comming Soon Background.png') center/cover no-repeat fixed;
  color: #ffffff;
  position: relative;
}

.coming-overlay{
  position: fixed;
  inset: 0;
  background: rgba(7,12,18,0.78);
  z-index: 0;
}

.coming-wrap{
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  text-align: center;
}

.coming-brand{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.coming-logo{
  width: 52px;
  height: 52px;
  border-radius: 6px;
  object-fit: contain;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
}

.coming-name{
  font-weight: 800;
  font-size: 1.2rem;
}

.coming-hero h1{
  font-size: 3.6rem;
  letter-spacing: 0.08em;
  margin: 10px 0 6px;
}

.coming-hero p{
  max-width: 640px;
  margin: 0 auto 18px;
  color: rgba(255,255,255,0.8);
}

.coming-lineup .lineup{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 12px 0 8px;
}

.lineup-guard{ width: 150px; }
.lineup-worker{ width: 150px; }
.lineup-broker{ width: 180px; }
.lineup-monk{ width: 180px; }

.lineup-shadow{
  width: 70%;
  height: 18px;
  margin: 0 auto 24px;
  background: radial-gradient(circle, rgba(0,0,0,0.55), transparent 70%);
  filter: blur(6px);
}

.coming-card{
  margin: 0 auto 20px;
  padding: 20px;
  max-width: 720px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  background: rgba(12, 18, 26, 0.7);
  border: 1px solid rgba(255,255,255,0.12);
}

.coming-form label{
  display: block;
  text-align: left;
  margin: 10px 0 6px;
}

.form-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.coming-form input[type="email"]{
  flex: 1 1 260px;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}

.coming-form .input--hidden{
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.hidden-frame{
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  border: 0;
  pointer-events: none;
}

.coming-submit{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: var(--blue);
  border: 1px solid rgba(0, 127, 255, 0.85);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 127, 255, 0.25), 0 0 0 1px rgba(255,255,255,0.06) inset;
  cursor: pointer;
}

.coming-submit:hover,
.coming-submit:focus-visible{
  color: #ffffff;
  background: #2b8fff;
  border-color: rgba(64, 224, 208, 0.6);
  box-shadow: 0 12px 28px rgba(0, 127, 255, 0.32);
  outline: none;
  transform: translateY(-1px);
}

.optin{
  text-align: left;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.form-message{
  margin: 8px 0;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.form-message--error{
  background: rgba(255, 60, 60, 0.15);
  border: 1px solid rgba(255, 60, 60, 0.4);
}

.form-message--success{
  background: rgba(64, 224, 208, 0.15);
  border: 1px solid rgba(64, 224, 208, 0.4);
}

.telegram-line{
  margin-top: 12px;
}

.telegram-line a{
  color: var(--blue);
  text-decoration: none;
}

.telegram-line a:hover{
  color: var(--turquoise);
}

.coming-socials{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 22px;
}

.social-pill{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 127, 255, 0.5);
  background: rgba(0, 127, 255, 0.12);
  color: #ffffff;
}

.social-pill svg{
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-pill:hover{
  border-color: rgba(64, 224, 208, 0.8);
  box-shadow: 0 0 14px rgba(64, 224, 208, 0.25);
}

.coming-footer{
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  display: grid;
  gap: 6px;
}

.coming-footer .policy{
  text-decoration: underline;
}

/* === Brevo form styling (Coming Soon) === */
.coming-card .sib-form{
  text-align: left;
}

.coming-card .sib-form,
.coming-card .sib-form-container,
.coming-card #sib-container,
.coming-card #sib-container.sib-container--large{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}

.coming-card .sib-form{
  margin: 0 !important;
}

.coming-card #sib-container{
  padding: 0;
}

.coming-card .sib-form-message-panel{
  display: none;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 6px;
}

.coming-card .sib-form-message-panel--active{
  display: block;
}

.coming-card .sib-form-message-panel.sib-form-message-panel--active{
  display: block;
}

.coming-card .sib-form-message-panel__text{
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}

.coming-card .sib-form-message-panel svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.coming-card .sib-form-message-panel__text--center{
  justify-content: flex-start;
}

.coming-card #error-message{
  background: rgba(255, 60, 60, 0.15);
  border: 1px solid rgba(255, 60, 60, 0.4);
}

.coming-card #success-message{
  background: rgba(64, 224, 208, 0.15);
  border: 1px solid rgba(64, 224, 208, 0.4);
}

.coming-card .sib-form-block{
  margin: 0 0 10px;
}

.coming-card .entry__label{
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: #ffffff;
}

.coming-card .entry__field input{
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}

.coming-card .entry__field input::placeholder{
  color: rgba(255,255,255,0.6);
}

.coming-card .entry__specification{
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.coming-card .entry__error{
  display: none;
}

.coming-card .entry__choice{
  margin-top: 6px;
}

.coming-card .entry__choice label{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
}

.coming-card .checkbox{
  border-color: rgba(255,255,255,0.5);
}

.coming-card .sib-form-block__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: var(--blue) !important;
  border: 1px solid rgba(0, 127, 255, 0.85) !important;
  color: #ffffff !important;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 127, 255, 0.25), 0 0 0 1px rgba(255,255,255,0.06) inset;
  cursor: pointer;
}

.coming-card .sib-form-block__button:hover,
.coming-card .sib-form-block__button:focus-visible{
  color: #ffffff !important;
  background: #2b8fff !important;
  border-color: rgba(64, 224, 208, 0.6) !important;
  box-shadow: 0 12px 28px rgba(0, 127, 255, 0.32);
  outline: none;
  transform: translateY(-1px);
}

.coming-card .input--hidden{
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.coming-card .sib-form,
.coming-card .sib-form *{
  font-family: "Century Gothic", "Cambria", sans-serif;
}

.coming-card .sib-form-block{
  margin: 0 0 12px;
}

.coming-card .sib-form-block,
.coming-card .sib-input,
.coming-card .sib-optin{
  background: transparent !important;
  border: 0 !important;
}

.coming-card .entry__field,
.coming-card .entry__choice{
  background: transparent !important;
}

.coming-card .sib-form[style],
.coming-card #sib-container[style],
.coming-card .sib-form-container[style]{
  background-color: transparent !important;
}

.coming-card .sib-input .entry__field{
  background: transparent;
}

.coming-card .sib-form-block__button{
  margin-top: 6px;
}

.coming-card .entry__specification{
  margin-top: 4px;
}

.coming-card .sib-form-message-panel{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
}

.coming-card .sib-form-message-panel__inner-text{
  color: #ffffff;
}

/* === Header nav pills === */
.cmc-nav a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 127, 255, 0.14);
  border: 1px solid rgba(0, 127, 255, 0.45);
  text-decoration: none;
  font-weight: 700;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease, background 140ms ease;
}

.cmc-nav a:hover,
.cmc-nav a:focus-visible{
  transform: translateY(-1px);
  border-color: rgba(64, 224, 208, 0.7);
  box-shadow: 0 0 12px rgba(64, 224, 208, 0.25);
  outline: none;
}

.cmc-nav a.is-active{
  background: rgba(0, 127, 255, 0.26);
  border-color: rgba(0, 127, 255, 0.85);
  box-shadow: 0 0 14px rgba(0, 127, 255, 0.28);
}

/* === CMC Market Table (Home) === */
.market-table-wrap{
  margin-top: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  /* Prevent wide tables from widening the page; scroll inside wrapper on desktop. */
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  max-height: none;
}

.market-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.market-table thead th{
  position: sticky;
  top: 0;
  background: rgba(8, 16, 28, 0.95);
  color: var(--white);
  text-align: left;
  font-weight: 700;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  z-index: 1;
}

.market-table tbody td{
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.86);
}

.market-table tbody tr:hover{
  background: rgba(255,255,255,0.04);
}

.market-table .asset{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.market-table .asset-name{
  font-weight: 700;
  color: #ffffff;
}

.market-table .asset-symbol{
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

.market-table .spark-cell{
  width: 130px;
}

.market-table .sparkline{
  width: 120px;
  height: 36px;
  display: block;
}

.market-table .pos{
  color: var(--turquoise);
  font-weight: 700;
}

.market-table .neg{
  color: #ff6b6b;
  font-weight: 700;
}

@media (max-width: 800px){
  .market-table thead{
    display: none;
  }
  .market-table, .market-table tbody, .market-table tr, .market-table td{
    display: block;
    width: 100%;
  }
  .market-table tbody tr{
    padding: 8px 0;
  }
  .market-table tbody td{
    border-bottom: none;
    padding: 6px 12px;
  }
  .market-table .spark-cell{
    width: auto;
  }
  .market-table .sparkline{
    width: 100%;
  }
}




/* === NEWS: oversized logo above form === */
.coming-brand--news{
  width: min(720px, 90vw);
  margin: 0 auto 12px;
}

.coming-brand--news .coming-logo{
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
}

/* === NEWS: Brevo button shape to match site pills === */
.coming-wrap .sib-form .sib-form-block__button{
  border-radius: 12px !important;
  padding: 12px 22px !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(0, 127, 255, 0.25) !important;
}

.coming-wrap .sib-form .sib-form-block__button:hover{
  background: #40E0D0 !important;
  border-color: rgba(64, 224, 208, 0.85) !important;
  color: #000000 !important;
}

/* === NEWS: force Brevo button sizing/alignment === */
.coming-wrap .sib-form .sib-form-block__button{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  padding: 12px 24px !important;
}

/* === HOME: tile CTA colors === */
.content-grid .ghost-btn,
.content-grid .panel .ghost-btn{
  background: #ffffff;
  color: #5F4B8B;
  border-color: rgba(255,255,255,0.85);
}

.content-grid .ghost-btn:hover,
.content-grid .panel .ghost-btn:hover{
  color: #007FFF;
}

/* === HEADER: logo on white background === */
.cmc-mark{
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
}

/* === HOME: clickable panel + news logo === */
.panel-link{
  display: block;
  color: inherit;
  text-decoration: none;
}

.content-grid .panel-link{
  color: #ffffff;
  background: linear-gradient(140deg, rgba(0, 52, 112, 0.42), rgba(44, 33, 84, 0.34));
  border: 1px solid rgba(0, 170, 255, 0.35);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.content-grid .panel-link:hover,
.content-grid .panel-link:focus-visible{
  color: #ffffff;
  background: linear-gradient(140deg, rgba(0, 67, 140, 0.52), rgba(57, 39, 103, 0.42));
  border-color: rgba(64, 224, 208, 0.58);
  text-decoration: none;
}

.panel-link:hover{
  text-decoration: none;
}

.panel--news{
  position: relative;
}

.panel--news .panel-logo{
  position: absolute;
  top: 14px;
  right: 16px;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

@media (max-width: 700px){
  .panel--news .panel-logo{
    width: 56px;
    height: 56px;
    top: 12px;
    right: 12px;
  }
}


/* === HOME: news tile shape lock === */
.panel-link.panel{
  border-radius: 16px;
  overflow: hidden;
}

/* === HOME: news logo size + shape === */
.panel--news .panel-logo{
  width: 110px;
  height: 110px;
  border-radius: 16px;
  background: transparent;
}

@media (max-width: 700px){
  .panel--news .panel-logo{
    width: 86px;
    height: 86px;
  }
}

/* === HOME: force news tile radius to match other panels === */
.panel.panel--news{
  border-radius: 16px !important;
}

.panel.panel--news .panel-logo{
  border-radius: 16px !important;
}

/* === HOME: news tile text above logo === */
.panel--news{
  text-align: left;
}

.panel--news h2,
.panel--news p{
  position: relative;
  z-index: 2;
}

.panel--news .panel-logo{
  z-index: 1;
}

/* === HOME: news tile spacing tweaks === */
.panel--news{
  padding-top: 18px;
  padding-right: 140px;
}

.panel--news .panel-logo{
  top: 28px;
}

/* === HOME: news text layout like charts === */
.panel--news h2{
  display: block;
  margin: 0 0 8px 0;
}

.panel--news p{
  margin: 0;
}

/* === HOME: force news text stack === */
.panel--news{
  display: block !important;
}

.panel--news h2,
.panel--news p{
  display: block !important;
  width: 100% !important;
  text-align: left !important;
}

.panel--news p{
  max-width: 360px;
}

/* === HOME: news tile spacing match === */
.panel--news{
  padding: 20px !important;
  padding-right: 140px !important;
}

/* === HOME: panel logos for charts/reviews/resources === */
.panel--charts,
.panel--reviews,
.panel--resources{
  position: relative;
  padding: 20px !important;
  padding-right: 140px !important;
  text-align: left;
}

.panel--charts .panel-logo,
.panel--reviews .panel-logo,
.panel--resources .panel-logo{
  position: absolute;
  top: 28px;
  right: 16px;
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 16px;
  z-index: 1;
}

.panel--charts h2,
.panel--charts p,
.panel--reviews h2,
.panel--reviews p,
.panel--resources h2,
.panel--resources p{
  position: relative;
  z-index: 2;
}

@media (max-width: 700px){
  .panel--charts,
  .panel--reviews,
  .panel--resources{
    padding-right: 120px !important;
  }
  .panel--charts .panel-logo,
  .panel--reviews .panel-logo,
  .panel--resources .panel-logo{
    width: 86px;
    height: 86px;
    top: 12px;
    right: 12px;
  }
}

/* === HOME: force tile logos to match News shape === */
.panel--charts .panel-logo,
.panel--reviews .panel-logo,
.panel--resources .panel-logo{
  border-radius: 16px !important;
}

.panel--charts,
.panel--reviews,
.panel--resources{
  border-radius: 16px !important;
}

/* === HOME: force text layout like News tile === */
.panel--charts h2,
.panel--charts p,
.panel--reviews h2,
.panel--reviews p,
.panel--resources h2,
.panel--resources p{
  display: block !important;
  width: 100% !important;
  text-align: left !important;
}

.panel--charts p,
.panel--reviews p,
.panel--resources p{
  max-width: 360px;
  margin: 0;
}

.panel--charts h2,
.panel--reviews h2,
.panel--resources h2{
  margin: 0 0 8px 0;
}

/* === HOME: panel text block (match News tile) === */
.panel-text{
  display: block;
  text-align: left;
}

.panel-text h2{
  display: block;
  margin: 0 0 8px 0;
}

.panel-text p{
  margin: 0;
  max-width: 360px;
}

/* === HOME: crypto ticker strip === */
.ticker-strip{
  margin: 0 auto 10px;
  padding: 10px 0;
  max-width: var(--container-max);
}

.ticker-viewport{
  overflow: hidden;
  padding: 0 max(var(--container-pad-min), var(--container-pad));
}

.ticker-track{
  display: flex;
  gap: 14px;
  align-items: center;
  will-change: transform;
  transition: transform 600ms ease;
}

.ticker-item{
  min-width: 160px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ticker-item .ticker-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ticker-item .ticker-symbol{
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ticker-item .ticker-price{
  font-weight: 600;
}

.ticker-item .pos{ color: #40E0D0; }
.ticker-item .neg{ color: #ff6b6b; }

@media (max-width: 800px){
  .ticker-item{ min-width: 140px; }
}

/* === HOME: unify tile text layout === */
.panel-text{
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: calc(100% - 140px);
}

.panel-text h2,
.panel-text p{
  margin: 0;
}

/* === HOME: newsletter form styled like index Brevo button === */
.newsletter .signup{
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.newsletter .signup input{
  min-width: 260px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #ffffff;
}

.newsletter .signup input::placeholder{
  color: rgba(255,255,255,0.6);
}

.newsletter .signup button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 12px;
  background: #0066CC;
  color: #ffffff;
  border: 1px solid rgba(0,102,204,0.85);
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(0,102,204,0.25);
}

.newsletter .signup button:hover,
.newsletter .signup button:focus-visible{
  background: #40E0D0;
  border-color: rgba(64,224,208,0.85);
  color: #000000;
}

@media (max-width: 700px){
  .newsletter .signup{
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter .signup input,
  .newsletter .signup button{
    width: 100%;
  }
}

/* === CONTACT PAGE === */
.contact-page{
  background: #ffffff;
  color: #333333;
}

.contact-page .bg{
  display: none;
}

.contact-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}

.contact-hero{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.contact-hero h1{
  margin: 0 0 6px 0;
  color: #5F4B8B;
}

.contact-disclaimer{
  font-family: Cambria, serif;
  font-size: 0.95rem;
  color: #333333;
}

.contact-badge{
  border: 1px solid #C0C0C0;
  color: #333333;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.contact-grid{
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 24px;
}

.contact-form-card,
.contact-side{
  border: 1px solid #C0C0C0;
  border-radius: 16px;
  padding: 22px;
  background: #ffffff;
}

.contact-form-card h2,
.contact-side h2{
  margin-top: 0;
  color: #5F4B8B;
}

.contact-form-card label{
  display: block;
  margin-bottom: 14px;
  font-weight: 600;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea{
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #C0C0C0;
  font-family: "Century Gothic", sans-serif;
}

.field-error{
  display: none;
  margin-top: 6px;
  color: #b00020;
  font-size: 0.85rem;
  font-weight: 500;
}

.contact-submit{
  margin-top: 8px;
  background: #007FFF;
  color: #ffffff;
  border: 1px solid rgba(0,127,255,0.85);
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
}

.contact-submit:hover,
.contact-submit:focus-visible{
  background: #40E0D0;
  border-color: rgba(64,224,208,0.85);
  color: #000000;
}

.contact-success{
  margin-top: 12px;
  color: #007FFF;
  font-weight: 600;
}

.contact-list{
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.contact-list li{
  margin-bottom: 10px;
}

.contact-side a{
  color: #007FFF;
  text-decoration: none;
}

.contact-side a:hover{
  color: #40E0D0;
}

.company-card{
  border: 1px solid #C0C0C0;
  border-radius: 12px;
  padding: 12px;
  margin: 16px 0;
}

.contact-legal{
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #007FFF;
  color: #007FFF;
  text-decoration: none;
}

.contact-legal:hover{
  border-color: #40E0D0;
  color: #40E0D0;
}

.partner-block{
  margin-top: 28px;
  border: 1px solid #C0C0C0;
  border-radius: 16px;
  padding: 22px;
}

.partner-block h2{
  color: #5F4B8B;
  margin-top: 0;
}

.partner-benefits{
  display: grid;
  gap: 12px;
}

.partner-benefits ul{
  margin: 0;
  padding-left: 18px;
}

.contact-secondary{
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #C0C0C0;
  color: #333333;
  text-decoration: none;
}

.contact-secondary:hover{
  color: #007FFF;
  border-color: #007FFF;
}

.contact-micro{
  margin-top: 18px;
  font-family: Cambria, serif;
  font-size: 0.85rem;
  color: #333333;
}

@media (max-width: 900px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .contact-hero{
    flex-direction: column;
  }
}

/* === CONTACT PAGE: DARK THEME OVERRIDES === */
.contact-page{
  background: transparent;
  color: #e6eef7;
}

.contact-page .bg{
  display: block;
}

.contact-wrap{
  color: #e6eef7;
}

.contact-hero h1{ color: #ffffff; }
.contact-disclaimer{ color: rgba(255,255,255,0.72); }

.contact-badge{
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.contact-form-card,
.contact-side,
.partner-block{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.contact-form-card h2,
.contact-side h2,
.partner-block h2{
  color: #ffffff;
}

.contact-form-card label{
  color: rgba(255,255,255,0.85);
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea{
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder{
  color: rgba(255,255,255,0.6);
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus{
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,127,255,0.35);
  border-color: rgba(0,127,255,0.6);
}

.field-error{ color: #ff8a8a; }

.contact-submit{
  background: #007FFF;
  color: #ffffff;
  border: 1px solid rgba(0,127,255,0.85);
}

.contact-submit:hover,
.contact-submit:focus-visible{
  background: #2b8fff;
  box-shadow: 0 12px 28px rgba(0,127,255,0.32);
}

.contact-success{ color: #40E0D0; }

.contact-list li{ color: rgba(255,255,255,0.85); }

.contact-side a{ color: #40E0D0; }
.contact-side a:hover{ color: #007FFF; }

.company-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}

.contact-legal{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
}

.contact-legal:hover{
  color: #40E0D0;
  border-color: rgba(64,224,208,0.6);
}

.partner-benefits ul{ color: rgba(255,255,255,0.85); }

.contact-secondary{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
}

.contact-secondary:hover{
  color: #40E0D0;
  border-color: rgba(64,224,208,0.6);
}

.contact-micro{
  color: rgba(255,255,255,0.65);
}

/* === EXCHANGE PAGE === */
.exchange-page{
  color: #ffffff;
}

.exchange-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px 48px;
}

.exchange-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.exchange-brand,
.exchange-powered{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
}

.exchange-brand img,
.exchange-powered img{
  height: 44px;
  width: auto;
  object-fit: contain;
}

.exchange-hero h1{
  margin: 0 0 10px 0;
  color: #5F4B8B;
}

.exchange-hero p{
  margin: 6px 0;
  color: rgba(255,255,255,0.8);
}

.exchange-disclosure a{
  color: #40E0D0;
  text-decoration: none;
}

.exchange-disclosure a:hover{
  color: #007FFF;
}

.exchange-cta{
  display: inline-flex;
  margin-top: 12px;
  padding: 12px 22px;
  border-radius: 12px;
  background: #007FFF;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(0,127,255,0.85);
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(0,127,255,0.25);
  scroll-behavior: smooth;
}

.exchange-cta:hover{
  background: #40E0D0;
  border-color: rgba(64,224,208,0.85);
  color: #000000;
}

.exchange-tabs{
  margin-top: 24px;
}

.tab-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tab-row .tab{
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  padding: 8px 14px;
}

.tab-row .tab.is-active{
  border-color: rgba(0,127,255,0.7);
  background: rgba(0,127,255,0.16);
}

.widget-placeholder{
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  background: rgba(255,255,255,0.03);
}

.widget-title{
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.widget-note{
  color: rgba(255,255,255,0.7);
}

@media (max-width: 700px){
  .exchange-top{
    flex-direction: column;
    align-items: flex-start;
  }
  .exchange-brand img,
  .exchange-powered img{
    height: 36px;
  }
}

/* === EXCHANGE: 4x header logos === */
.exchange-brand img,
.exchange-powered img{
  height: 176px;
}

@media (max-width: 700px){
  .exchange-brand img,
  .exchange-powered img{
    height: 120px;
  }
}

/* === NAV: force white labels === */
.cmc-nav a{
  color: #ffffff !important;
  opacity: 1 !important;
}

.cmc-nav a:hover,
.cmc-nav a:focus-visible{
  color: #ffffff !important;
  border-bottom-color: rgba(0,127,255,0.9) !important;
}

.cmc-nav a.is-active,
.cmc-nav a[aria-current="page"]{
  color: #ffffff !important;
  border-bottom-color: rgba(0,127,255,1) !important;
  box-shadow: 0 2px 0 rgba(0,127,255,0.8);
}

/* === PRODUCT TILE HOVER: blue + white text === */
.product-card:hover .card-label,
.product-card:focus-visible .card-label{
  background: #007FFF;
  color: #ffffff;
  border-color: rgba(0,127,255,0.85);
}

/* === REVIEWS GRID: fixed 5x3 + placeholders === */
.review-section .product-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:16px;
}
@media (max-width: 1024px){
  .review-section .product-grid{ grid-template-columns:repeat(3,minmax(0,1fr)); }
}
@media (max-width: 720px){
  .review-section .product-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
}
.product-card--placeholder{
  opacity:0.65;
  cursor:default;
}
.product-card--placeholder:hover{
  transform:none;
  box-shadow:none;
}
.product-card--placeholder .placeholder-img{
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.04);
  border:1px dashed rgba(255,255,255,0.18);
}
.product-card--placeholder .placeholder-text{
  color:rgba(255,255,255,0.75);
  font-weight:600;
}


/* === REVIEW HERO LOGO SCALE UP === */
.review-hero .hero-link img,
.review-hero .banner-logo{
  max-height: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.review-hero .hero-link{
  display:flex;
  align-items:center;
  justify-content:center;
}
@media (max-width: 900px){
  .review-hero .hero-link img,
  .review-hero .banner-logo{
    max-height: 120px;
  }
}
@media (max-width: 640px){
  .review-hero .hero-link img,
  .review-hero .banner-logo{
    max-height: 96px;
  }
}



/* === REVIEW HERO TILED LOGO BACKGROUND === */
.review-hero--tiled{
  position: relative;
  overflow: hidden;
}
.review-hero--tiled::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--tile-logo);
  background-repeat: repeat;
  background-size: 128px auto;
  opacity: 0.16;
  filter: grayscale(1) brightness(0.52) contrast(1.1);
  pointer-events: none;
}
.review-hero--tiled .hero-link,
.review-hero--tiled .review-hero-content{
  position: relative;
  z-index: 1;
}

/* === Force flat gallery tiles + hover label === */
.gallery-grid figure,
.gallery-grid img,
.gallery-grid .gallery-link,
.gallery-grid .gallery-link img{
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
  border-radius: 12px !important;
}
.gallery-grid figure::before,
.gallery-grid figure::after,
.gallery-grid .gallery-link::before,
.gallery-grid .gallery-link::after{
  content: none !important;
  display: none !important;
}

.gallery-link{
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
}

.gallery-link::after{
  content: 'Visit Partner Site' !important;
  position: absolute !important;
  right: 10px !important;
  bottom: 10px !important;
  background: #007FFF !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  opacity: 0 !important;
  transform: translateY(4px) !important;
  transition: opacity 140ms ease, transform 140ms ease !important;
  z-index: 2 !important;
}

.gallery-link:hover::after,
.gallery-link:focus-visible::after{
  opacity: 1 !important;
  transform: translateY(0) !important;
}


/* === HOME tiles: normalize size/shape === */
.content-grid .panel{
  position: relative !important;
  height: 180px !important;
  border-radius: 16px !important;
  padding: 20px 140px 20px 20px !important;
  display: block !important;
}
.content-grid .panel .panel-logo{
  position: absolute !important;
  right: 16px !important;
  top: 28px !important;
  width: 86px !important;
  height: 86px !important;
  object-fit: contain !important;
}
.content-grid .panel .panel-text{
  display: block !important;
  text-align: left !important;
}
.content-grid .panel .panel-text h2{
  margin: 0 0 8px 0 !important;
}
.content-grid .panel .panel-text p{
  margin: 0 !important;
}


/* === HOME: larger Changelly logo === */
.panel--exchange .panel-logo{
  width: 160px !important;
  height: 120px !important;
}
@media (max-width: 900px){
  .panel--exchange .panel-logo{
    width: 120px !important;
    height: 90px !important;
  }
}


/* === FORCE: Exchange tile logo size === */
.content-grid .panel--exchange{
  padding-right: 200px !important;
}
.content-grid .panel--exchange .panel-logo{
  width: 200px !important;
  height: 140px !important;
  right: 10px !important;
  top: 20px !important;
  max-width: none !important;
  max-height: none !important;
}
@media (max-width: 900px){
  .content-grid .panel--exchange{
    padding-right: 160px !important;
  }
  .content-grid .panel--exchange .panel-logo{
    width: 150px !important;
    height: 110px !important;
  }
}


/* === HOME: scale other tile logos ~1.5x === */
.content-grid .panel--news .panel-logo,
.content-grid .panel--charts .panel-logo,
.content-grid .panel--reviews .panel-logo,
.content-grid .panel--resources .panel-logo{
  width: 130px !important;
  height: 130px !important;
  top: 20px !important;
}
@media (max-width: 900px){
  .content-grid .panel--news .panel-logo,
  .content-grid .panel--charts .panel-logo,
  .content-grid .panel--reviews .panel-logo,
  .content-grid .panel--resources .panel-logo{
    width: 110px !important;
    height: 110px !important;
  }
}


/* === Exchange title color === */
.exchange-page h1{
  color: #ffffff !important;
}

/* === Partner pricing link === */
.partner-link{
  color: var(--turquoise);
  font-weight: 600;
  text-decoration: none;
}
.partner-link:hover,
.partner-link:focus-visible{
  color: var(--blue);
  text-decoration: underline;
  outline: none;
}

/* === Mobile/layout pass === */
.product-grid{
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media (max-width: 1200px){
  .product-grid{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 960px){
  .product-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 680px){
  .product-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.content-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 980px){
  .content-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px){
  .content-grid{ grid-template-columns: 1fr; }
}

.market-table-wrap{
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 900px){
  .market-table{
    min-width: 900px;
  }
}

.market-pagination{
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}

.market-next-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(64, 224, 208, 0.45);
  background: linear-gradient(180deg, #2496ff 0%, #0a6df0 100%);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.market-next-btn:disabled{
  opacity: 0.75;
  cursor: default;
}


/* === NAV DROPDOWNS === */
.cmc-nav{ align-items:center; }
.nav-group{ position: relative; }
.nav-trigger{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
}
.nav-trigger:hover,
.nav-trigger:focus-visible{
  background: #1f7fe0;
  border-color: rgba(64,224,208,0.7);
  box-shadow: 0 0 12px rgba(64,224,208,0.25);
  outline: none;
}
.nav-menu{
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 220px;
  background: rgba(10,16,24,0.98);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px;
  display: none;
  z-index: 60;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
/* Prevent the dropdown from closing while moving the cursor into it. */
.nav-menu::before{
  content: "";
  position: absolute;
  top: -26px; /* Larger forgiveness bridge from trigger to dropdown. */
  left: -24px;
  right: -24px;
  height: 26px;
}
.nav-menu a{
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
}
.nav-menu a:hover,
.nav-menu a:focus-visible{
  background: rgba(0,127,255,0.2);
  color: #ffffff;
  outline: none;
}
.nav-group--start .nav-menu a{
  color: var(--turquoise);
}
.nav-group--start .nav-menu a:hover,
.nav-group--start .nav-menu a:focus-visible{
  color: var(--blue);
}

.nav-group--resources .nav-menu{
  min-width: 320px;
  max-height: min(72vh, 560px);
  overflow: auto;
}

.nav-menu--search{
  min-width: 380px;
}

.nav-trigger--search{
  gap: 8px;
}

.nav-trigger__icon{
  display: inline-flex;
  width: 16px;
  height: 16px;
}

.nav-trigger__icon svg{
  display: block;
  width: 16px;
  height: 16px;
}

.nav-search{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-search-input-wrap{
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.nav-search-input-wrap:focus-within{
  border-color: rgba(64,224,208,0.75);
  box-shadow: 0 0 0 3px rgba(64,224,208,0.14);
  background: linear-gradient(180deg, rgba(0,127,255,0.18), rgba(255,255,255,0.06));
}

.nav-search-icon{
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.82);
}

.nav-search-icon svg{
  width: 16px;
  height: 16px;
  display: block;
}

.nav-search-input{
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  outline: none;
  font-size: 0.95rem;
}

.nav-search-input::placeholder{
  color: rgba(255,255,255,0.65);
}

.nav-search-input:focus{
  border: 0;
  box-shadow: none;
}

.nav-search-meta{
  min-height: 18px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.74);
  letter-spacing: 0.02em;
}

.nav-search-results{
  max-height: 340px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.nav-search-empty{
  padding: 10px 12px;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  border-radius: 10px;
  border: 1px dashed rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
}

.nav-search-results .nav-search-result{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  color: #ffffff;
  text-decoration: none;
}

.nav-search-results .nav-search-result:hover,
.nav-search-results .nav-search-result:focus-visible{
  background: linear-gradient(180deg, rgba(0,127,255,0.34), rgba(0,127,255,0.14));
  border-color: rgba(64,224,208,0.68);
  box-shadow: 0 0 14px rgba(0,127,255,0.24);
  outline: none;
}

.nav-search-result__content{
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-search-result__title{
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}

.nav-search-result__path{
  font-size: 0.76rem;
  color: rgba(255,255,255,0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-search-result__meta{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(64,224,208,0.55);
  background: rgba(0,127,255,0.22);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

@media (min-width: 821px){
  .nav-group--search .nav-menu{
    left: auto;
    right: 0;
    min-width: 360px;
    width: min(420px, calc(100vw - 32px));
  }
}

@media (max-width: 820px){
  .nav-group--search .nav-menu{
    width: 100%;
  }

  .nav-search-results{
    max-height: 240px;
  }
}
.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu{ display: block; }
.nav-group.is-open .nav-menu{ display: block; }
@media (max-width: 820px){
  .nav-group{ width: 100%; }
  .nav-menu{
    position: static;
    display: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 6px 0 0;
    margin: 0 0 6px;
    min-width: 0;
  }
  .nav-menu::before{ content: none; }
  .nav-group:hover .nav-menu,
  .nav-group:focus-within .nav-menu{
    display: none;
  }
  .nav-group.is-open .nav-menu{
    display: block;
  }
  .nav-trigger{ width: 100%; text-align: left; }
}


/* === Footer micro-disclaimer === */
.footer-micro{
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-family: Cambria, serif;
  width: 100%;
}

/* === Resources pages === */
.page-wrap{
  max-width: var(--container-max, 1320px);
  margin: 0 auto;
  padding: 24px max(var(--container-pad-min, 24px), var(--container-pad, 6vw)) 64px;
}
.page-hero h1{
  margin: 0 0 12px;
  font-size: 2rem;
  color: var(--white);
}
.page-section{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 22px 24px;
  margin: 16px 0;
}
.page-section h2{
  margin: 18px 0 10px;
  color: var(--white);
}
.page-section p,
.page-section li{
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}
.page-section a{
  color: var(--turquoise);
  text-decoration: none;
}
.page-section a:hover,
.page-section a:focus-visible{
  color: var(--blue);
  text-decoration: underline;
}
.page-section .disclaimer{
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* === Sitemap page === */
.sitemap-page .page-hero .disclaimer{
  margin-top: 8px;
}
.sitemap-page .page-hero .disclaimer a{
  color: var(--turquoise);
  text-decoration: none;
}
.sitemap-page .page-hero .disclaimer a:hover,
.sitemap-page .page-hero .disclaimer a:focus-visible{
  color: var(--blue);
  text-decoration: underline;
}
.sitemap-columns{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px 22px;
}
.sitemap-columns li{
  margin: 0;
}
.sitemap-columns a{
  display: inline-block;
  line-height: 1.45;
}


/* === Exchange form === */
.exchange-form{
  background: rgba(14,22,34,0.75);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.exchange-form .form-row{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin-bottom: 14px;
}
.exchange-form .form-row:last-of-type{
  grid-template-columns: repeat(2, minmax(0,1fr));
}
.exchange-form .field{ display:flex; flex-direction:column; gap:6px; }
.exchange-form label{ color: rgba(255,255,255,0.85); font-weight:600; }
.exchange-form input,
.exchange-form select{
  background: rgba(8,14,22,0.7);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 10px 12px;
}
.exchange-form input:focus,
.exchange-form select:focus{
  outline: none;
  border-color: #007FFF;
  box-shadow: 0 0 0 2px rgba(0,127,255,0.25);
}
.exchange-btn{
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}
.exchange-btn--primary{
  background: #007FFF;
  border-color: rgba(0,127,255,0.8);
}
.exchange-btn:hover{ color: #40E0D0; }
.exchange-status{ color: rgba(255,255,255,0.85); min-height: 24px; }
@media (max-width: 800px){
  .exchange-form .form-row{ grid-template-columns: 1fr; }
}

/* === HOME ALIGNMENT FIX: match heading/chart/newsletter to tile edges === */
body.home > h1{
  margin-left: 6vw;
  margin-right: 6vw;
}

body.home .chart-panel,
body.home .newsletter{
  margin-left: 6vw;
  margin-right: 6vw;
  padding-left: 22px;
  padding-right: 22px;
}

@media (max-width: 900px){
  body.home > h1{
    margin-left: 16px;
    margin-right: 16px;
  }

  body.home .chart-panel,
  body.home .newsletter{
    margin-left: 16px;
    margin-right: 16px;
    padding-left: 22px;
    padding-right: 22px;
  }
}

/* === FORCE: footer menus stay 5-across === */
.site-footer .footer-cols{
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 28px !important;
}

@media (max-width: 900px){
  .site-footer .footer-cols{
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

/* CLS hardening for staging audits */
#site-header:empty{
  display: block;
  min-height: 0;
}

#site-footer:empty{
  display: block;
  min-height: 420px;
}

/* Reserve stable space for rotating cards injected by JS */
.mini-cards-row{
  min-height: 120px;
}

@media (max-width: 820px){
  .mini-cards-row{
    min-height: 300px;
  }
}

@media (max-width: 520px){
  .mini-cards-row{
    min-height: 440px;
  }
}

/* Reserve Brevo form area before its JS initializes */
.coming-card #sib-container,
.coming-card .sib-form-container{
  min-height: 430px;
}

/* Ensure image boxes have stable geometry before images decode */
.home .product-img{
  aspect-ratio: 4 / 3;
}

.home .product-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home .panel-logo{
  width: 120px;
  height: 120px;
  aspect-ratio: 1 / 1;
  flex: 0 0 120px;
  object-fit: contain;
}

.coming-logo{
  width: 52px;
  height: 52px;
  aspect-ratio: 1 / 1;
}

.mini-card-img{
  aspect-ratio: 16 / 9;
}


/* Use metric-stable fallback stack to minimize text reflow */
body{
  font-family: "Century Gothic", "Avenir Next", "Segoe UI", "Trebuchet MS", Arial, sans-serif;
  font-size-adjust: 0.5;
}

/* Hub body-copy links */
.hub-copy a{
  color: #40E0D0;
}

.hub-copy a:hover,
.hub-copy a:focus-visible{
  color: #7ff8ec;
}

/* Decision Engine pages */
.decision-kicker{
  margin: 0 0 12px;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
}

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

.decision-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px;
}

.decision-card h3{
  margin: 0 0 8px;
}

.decision-card p{
  margin: 0 0 10px;
}

.decision-chip{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,127,255,0.16);
  border: 1px solid rgba(0,127,255,0.45);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.decision-note{
  margin-top: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
}

.decision-score-wrap{
  overflow-x: auto;
  max-width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
}

.decision-score-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  background: rgba(10,16,24,0.7);
}

.decision-score-table th,
.decision-score-table td{
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  vertical-align: top;
}

.decision-score-table thead th{
  background: rgba(0,127,255,0.14);
  color: #ffffff;
  font-weight: 700;
}

.decision-score-table tbody tr:last-child td{
  border-bottom: none;
}

.decision-pick-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.decision-pick{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px;
}

.decision-pick h3{
  margin: 0 0 8px;
}

.decision-pick p{
  margin: 0 0 8px;
}

.decision-pick ul{
  margin: 0;
}

.decision-who-avoid{
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255,255,255,0.2);
}

.decision-cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.decision-cta-row .brand-btn,
.decision-cta-row .ghost-btn{
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.decision-cta-row .brand-btn{
  background: rgba(64,224,208,0.14);
  border: 1px solid rgba(64,224,208,0.58);
  color: var(--turquoise);
}

.decision-cta-row .ghost-btn{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(64,224,208,0.46);
  color: var(--turquoise);
}

.decision-cta-row .brand-btn:visited,
.decision-cta-row .ghost-btn:visited{
  color: var(--turquoise);
}

.decision-cta-row .brand-btn:hover,
.decision-cta-row .brand-btn:focus-visible,
.decision-cta-row .ghost-btn:hover,
.decision-cta-row .ghost-btn:focus-visible{
  border-color: rgba(64,224,208,0.7);
  color: #7ff8ec;
  outline: none;
}

@media (max-width: 900px){
  .decision-grid{
    grid-template-columns: 1fr;
  }

  .decision-score-table{
    min-width: 560px;
  }
}

.review-trust-block h2,
.review-compare-alternatives h2{
  margin-bottom: 8px;
}

.review-trust-block h3{
  margin: 10px 0 8px;
  font-size: 1rem;
}

.review-trust-block p{
  margin: 0 0 6px;
}

.affiliate-inline-disclosure{
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

/* Sitewide text-link uniformity (prose links only; avoids nav/buttons/cards) */
p a,
li a,
td a,
blockquote a{
  color: #40E0D0;
}

p a:visited,
li a:visited,
td a:visited,
blockquote a:visited{
  color: #40E0D0;
}

p a:hover,
p a:focus-visible,
li a:hover,
li a:focus-visible,
td a:hover,
td a:focus-visible,
blockquote a:hover,
blockquote a:focus-visible{
  color: #7ff8ec;
}

/* News page footer clickability: keep overlays from intercepting interactions */
.coming-overlay{
  pointer-events: none;
}

body.coming-soon #site-footer,
body.coming-soon .site-footer{
  position: relative;
  z-index: 2;
}

/* === NAV: Uniform Top-Level Item Styling (match .nav-trigger) === */
/* Keep dropdown link styles intact by targeting only direct children of .cmc-nav. */
.cmc-nav > a{
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff !important;
  padding: 8px 14px;
  border-radius: 999px;
  font: inherit;
  font-weight: inherit;
  text-decoration: none;
  cursor: pointer;
  border-bottom: none;
  box-shadow: none;
  transition: border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.cmc-nav > a:hover,
.cmc-nav > a:focus-visible{
  background: #1f7fe0;
  border-color: rgba(64,224,208,0.7);
  box-shadow: 0 0 12px rgba(64,224,208,0.25);
  transform: none;
  outline: none;
}

.cmc-nav > a.is-active,
.cmc-nav > a[aria-current="page"]{
  background: rgba(0,127,255,0.22);
  border-color: rgba(0,127,255,0.65);
  box-shadow: 0 0 14px rgba(0,127,255,0.22);
}

/* Mobile: make top-level links stack like dropdown triggers. */
@media (max-width: 820px){
  .cmc-nav{
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 12px;
  }

  .cmc-nav > a{
    justify-content: flex-start;
    text-align: left;
  }
}

/* Keep hover/focus motion consistent between top-level anchors and dropdown triggers. */
.nav-trigger{
  display: inline-flex;
  align-items: center;
  transition: border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

/* === HOME: Newsletter Flex Wrap Hardening (prevents mobile overflow) === */
.newsletter{
  flex-wrap: wrap;
}

.newsletter > *{
  min-width: 0;
}

#home-signup-status{
  flex: 0 0 100%;
}

/* === Mobile Overflow Lock (root-cause fix + safety net) === */
/* Wide market tables should scroll inside their wrapper instead of widening the page. */
.market-table-wrap{
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

html,
body{
  overflow-x: hidden;
  overscroll-behavior-x: none;
  width: 100%;
}

/* iOS/Safari: prevent page-level horizontal panning when users swipe sideways. */
body{
  touch-action: pan-y;
}

@media (max-width: 800px){
  /* Mobile layout stacks rows; ensure no min-width forces horizontal page overflow. */
  .market-table{ min-width: 0; }
  .market-table-wrap{ overflow-x: hidden; }
}
