:root {
  --bg: #f8f9fa;
  --surface: #ffffff;
  --surface-low: #f1f4f6;
  --surface-mid: #eaeff1;
  --ink: #1a1a1a;
  --ink-muted: #586064;
  --primary: #4355b9;
  --primary-light: #dee0ff;
  --danger: #9e3f4e;
  --outline: #1a1a1a;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

.wrap { width: min(100% - 2rem, var(--max)); margin: 0 auto; }
.section { padding: 4.5rem 0; }

/* —— Section rhythm & variants (editorial brutalist) —— */
.section--hero {
  padding-top: 2.75rem;
  padding-bottom: 4rem;
  background-color: var(--bg);
  background-image:
    linear-gradient(125deg, rgba(67, 85, 185, 0.1) 0%, rgba(67, 85, 185, 0) 45%),
    repeating-linear-gradient(
      -8deg,
      transparent 0 10px,
      rgba(26, 26, 26, 0.028) 10px 11px
    );
}
.section--method {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background: linear-gradient(180deg, var(--surface-mid) 0%, var(--bg) 42%, var(--bg) 100%);
  border-top: 2px solid var(--outline);
}
.section--operators {
  padding-top: 3.25rem;
  position: relative;
}
.section--read {
  background: var(--surface);
  border-block: 2px solid var(--outline);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.section--faq {
  background: var(--surface-low);
  border-top: 2px dashed var(--outline);
}

.section-head { margin-bottom: 1.75rem; }
.section-head__intro {
  margin: 0.5rem 0 0;
  max-width: 62ch;
  font-weight: 600;
  color: var(--ink-muted);
  line-height: 1.5;
}
.section-head--rule h2::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 5px;
  margin-top: 0.65rem;
  background: var(--primary);
  border: 2px solid var(--outline);
  box-shadow: 3px 3px 0 0 var(--outline);
}
.section-head--invert {
  background: var(--ink);
  color: #f1f4f6;
  border: 2px solid var(--outline);
  box-shadow: 8px 8px 0 0 var(--primary);
  padding: 1.45rem 1.5rem;
  margin-bottom: 1.85rem;
}
.section-head--invert .kicker {
  color: #b8c4ff;
}
.section-head__intro--on-dark {
  color: #b8c0cc;
}
.section-head--split {
  display: grid;
  grid-template-columns: 1fr minmax(14rem, 30rem);
  gap: 1rem 2.5rem;
  align-items: end;
  margin-bottom: 1.85rem;
  padding-bottom: 1.35rem;
  border-bottom: 2px solid var(--outline);
}
.section-head--split h2 { margin-bottom: 0; }
.section-head__aside {
  margin: 0;
  font-weight: 600;
  color: var(--ink-muted);
  line-height: 1.5;
}
.section-head--compact {
  margin-bottom: 1.1rem;
}
.section-head--compact h2 { margin-bottom: 0; }

.hero-shell--framed {
  position: relative;
}
.hero-shell--framed::before {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: -8px;
  height: 8px;
  background: var(--primary);
  border: 2px solid var(--outline);
  pointer-events: none;
}
.hero-lead {
  margin: 0 0 1rem;
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.58;
  color: var(--ink-muted);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 1.15rem;
}

.data-box--pop {
  transform: rotate(-0.6deg);
  box-shadow: 5px 5px 0 0 var(--outline);
}
.data-box--stripe {
  background: repeating-linear-gradient(
    -45deg,
    var(--surface),
    var(--surface) 5px,
    var(--surface-mid) 5px,
    var(--surface-mid) 10px
  );
}
.data-box--invert {
  background: var(--ink);
  color: #eef1f4;
  border-color: var(--ink);
  box-shadow: 4px 4px 0 0 var(--primary);
}
.data-box--invert strong {
  color: #c5ceff;
}
.data-box--invert span {
  opacity: 0.92;
}

.cards-grid--method {
  gap: 1.15rem;
  margin-top: 0.25rem;
}
.cards-grid--operators {
  margin-top: 0.25rem;
}
@media (min-width: 981px) {
  .cards-grid--operators .operator-card:nth-child(odd) {
    transform: rotate(-0.35deg);
  }
  .cards-grid--operators .operator-card:nth-child(even) {
    transform: rotate(0.35deg);
  }
  .cards-grid--operators .card--hub {
    transform: rotate(-0.2deg);
  }
}

.method-step {
  grid-row: 1 / span 2;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  border: 2px solid var(--outline);
  background: var(--surface);
  color: var(--primary);
}
.card--method .card-head {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  grid-template-rows: auto auto;
  gap: 0.35rem 0.85rem;
  align-items: start;
}
.card--method .method-card-icon {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0;
}
.card--method .card-head h3 {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
}
.card--method .card-body {
  background: linear-gradient(180deg, var(--surface-low) 0%, var(--surface) 100%);
}
.card--method-a {
  box-shadow: 6px 6px 0 0 var(--primary);
}
.card--method-b {
  box-shadow: -5px 5px 0 0 var(--outline);
  border-left-width: 5px;
  border-left-color: var(--primary);
}
.card--method-c {
  box-shadow: 5px -4px 0 0 var(--outline);
  border-bottom: 4px solid var(--primary);
}
.card--method-d {
  box-shadow: 4px 4px 0 0 var(--outline), 8px 8px 0 0 var(--surface-mid);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-low) 100%);
}

.card--hub {
  background: var(--ink);
  color: #e4e9ef;
  border-color: var(--outline);
  box-shadow: 8px 8px 0 0 var(--primary);
}
.card--hub .card-head {
  border-bottom-color: #3a4149;
  background: #12161d;
}
.card--hub .card-body {
  background: #0e1218;
  color: #b4bcc8;
  border-top: 0;
}
.card--hub .card-foot {
  border-top-color: #3a4149;
  background: #12161d;
}
.card--hub h3 {
  color: #fff;
}
.hub-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: #9aa8ff;
  margin-bottom: 0.4rem;
}
.card--hub .btn--primary {
  border-color: #aab6ff;
  box-shadow: 4px 4px 0 0 #aab6ff;
}

.read-more {
  margin: 1.35rem 0 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}
.read-more a {
  color: var(--ink);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.1rem;
}
.read-more a:hover {
  color: var(--primary);
}

.cards-grid--read {
  gap: 1.15rem;
}
.read-tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border: 2px solid var(--outline);
  background: var(--primary-light);
}
.card--read .card-head {
  padding-top: 1.1rem;
}
.card--read-a .card-head {
  box-shadow: inset 0 5px 0 0 var(--primary);
}
.card--read-b .card-head {
  box-shadow: inset 0 5px 0 0 var(--danger);
}
.card--read .card-body {
  background: linear-gradient(180deg, var(--surface-low) 0%, var(--surface) 55%);
}

.faq-stack {
  border: 2px solid var(--outline);
  background: var(--surface);
  box-shadow: 6px 6px 0 0 var(--outline);
}
.faq-stack .faq-item {
  margin-bottom: 0;
  border-width: 0;
  border-bottom-width: 2px;
  border-radius: 0;
}
.faq-stack .faq-item:last-child {
  border-bottom: 0;
}
.faq-item--accent button {
  background: var(--primary-light);
}
.faq-item--soft .faq-body {
  background: #e8eaed;
}
.faq-toggle {
  flex-shrink: 0;
  min-width: 1.75rem;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
}
.faq-item button {
  gap: 0.75rem;
}

.site-footer .logo-strip--text {
  border-color: #4a5059;
  background: rgba(255, 255, 255, 0.04);
}
.site-footer .logo-strip__note {
  color: #d0d6de;
}
.site-footer .logo-strip__note strong {
  color: #fff;
}
.site-footer .logo-strip__note a {
  color: #e0e6ff;
  border-bottom: 1px solid #6b7ae0;
}
.kicker {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary);
}
h1,h2,h3,h4 { font-weight: 900; letter-spacing: -0.03em; line-height: 1; margin: 0 0 1rem; text-transform: uppercase; }
h1 { font-size: clamp(2.2rem, 5vw, 4.6rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; max-width: 74ch; }
a { color: var(--primary); text-decoration: none; }

body.no-scroll { overflow: hidden; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.72);
  padding: 1rem;
}
.age-gate.is-hidden { display: none; }
.age-gate__panel {
  width: min(100%, 440px);
  background: var(--surface);
  border: 2px solid var(--outline);
  box-shadow: 8px 8px 0 0 var(--outline);
  padding: 1.4rem;
}
.age-gate__actions { display: grid; gap: .6rem; margin: 1rem 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 2px solid var(--outline);
  box-shadow: 4px 4px 0 0 var(--outline);
}
.site-header__inner { min-height: 68px; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.logo {
  color: var(--ink);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}
.logo__mark {
  width: 2.15rem;
  height: 2.15rem;
  flex-shrink: 0;
  display: block;
}
.logo__text { line-height: 1; }
.nav-main { display: flex; gap: 1.1rem; align-items: center; }
.nav-main a { color: var(--ink); text-transform: uppercase; font-size: .78rem; font-weight: 800; letter-spacing: .09em; border-bottom: 2px solid transparent; }
.nav-main a:hover { border-bottom-color: var(--primary); }
.nav-toggle {
  display: none;
  border: 2px solid var(--outline);
  background: var(--surface);
  font-weight: 900;
  text-transform: uppercase;
  padding: .3rem .5rem;
}

.btn {
  border: 2px solid var(--outline);
  border-radius: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  padding: .78rem 1rem;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: 4px 4px 0 0 var(--outline);
  transition: .18s ease;
}
.btn:hover { transform: translate(2px,2px); box-shadow: 2px 2px 0 0 var(--outline); }
.btn--primary { background: var(--primary); color: #f9f6ff; }
.btn--secondary { background: var(--surface); color: var(--ink); }
.btn--ghost { background: var(--surface-low); color: var(--ink); }

.hero-shell {
  border: 2px solid var(--outline);
  background: var(--surface);
  box-shadow: 8px 8px 0 0 var(--outline);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
}
.hero-main { padding: 2rem; border-right: 2px solid var(--outline); }
.hero-side { background: var(--surface-mid); padding: 1.2rem; display: grid; gap: .9rem; }
.data-box { border: 2px solid var(--outline); background: var(--surface); padding: .9rem; }
.data-box strong { display: block; font-size: 1.65rem; font-weight: 900; color: var(--primary); line-height: 1; }

.cards-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.card {
  border: 2px solid var(--outline);
  background: var(--surface);
  box-shadow: 4px 4px 0 0 var(--outline);
}
.card-head { padding: 1rem; border-bottom: 2px solid var(--outline); }
.card-body { padding: 1rem; background: var(--surface-low); }
.card-foot { padding: .85rem 1rem; border-top: 2px solid var(--outline); display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }

.operator-card .card-head {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
}
.operator-card .card-head h3 { margin: 0; }
.op-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.45rem 0.65rem;
  border: 2px solid var(--outline);
  background: var(--surface-low);
}
.op-card-logo img {
  max-width: 100%;
  max-height: 2.35rem;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.operator-card[data-brand="betano"] .op-card-logo {
  background: linear-gradient(180deg, #faf8f4 0%, #ece8e0 100%);
}
.operator-card[data-brand="betclic"] .op-card-logo {
  background: linear-gradient(180deg, #fff5f5 0%, #fde8e8 100%);
}
.operator-card[data-brand="bwin"] .op-card-logo {
  background: linear-gradient(180deg, #f0f0f0 0%, #e2e2e2 100%);
}
.operator-card[data-brand="casino-solverde"] .op-card-logo {
  background: linear-gradient(145deg, #071f1a 0%, #123d35 100%);
  border-color: #0a3028;
}
.operator-card[data-brand="esconline"] .op-card-logo {
  background: linear-gradient(145deg, #14100c 0%, #2a241c 100%);
  border-color: #1f1a14;
}
.op-card-lic {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--outline);
  padding: 0.2rem 0.45rem;
  display: inline-block;
  align-self: flex-start;
  background: var(--surface);
}
.op-card-bonus {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 2px dashed var(--outline);
  padding: 0.5rem 0.55rem;
  margin-top: 0.45rem;
  background: var(--surface);
  line-height: 1.35;
}
.op-card-bonus small {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-muted);
}
.op-card-row {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-muted);
  line-height: 1.35;
}
.op-card-row svg {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  color: var(--primary);
  margin-top: 0.08rem;
}
.op-card-link {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--outline);
  padding-bottom: 0.1rem;
  margin-left: auto;
  color: var(--ink);
  text-decoration: none;
}
.op-card-link:hover { color: var(--primary); border-bottom-color: var(--primary); }

.method-card-icon {
  width: 1.65rem;
  height: 1.65rem;
  margin-bottom: 0.35rem;
  color: var(--primary);
}
.method-card-icon svg { display: block; width: 100%; height: 100%; }

.logo-strip__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
}
.logo-strip__logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0.2rem 0.55rem;
  border: 2px solid var(--outline);
  background: var(--surface);
  box-shadow: 2px 2px 0 0 var(--outline);
}
.logo-strip__logos img {
  height: 22px;
  width: auto;
  max-width: 88px;
  object-fit: contain;
}
.badge { display: inline-block; border: 2px solid var(--outline); background: var(--surface); font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: .15rem .4rem; }

.info-block {
  border: 2px solid var(--outline);
  background: var(--surface-mid);
  box-shadow: 4px 4px 0 0 var(--outline);
  padding: 1rem;
}
.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.timeline li { border: 2px solid var(--outline); background: var(--surface); padding: .7rem .8rem; display: grid; grid-template-columns: 2rem 1fr; gap: .6rem; align-items: start; }
.timeline li b { background: var(--primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: .72rem; width: 1.6rem; height: 1.6rem; border: 2px solid var(--outline); }

.faq-item { border: 2px solid var(--outline); margin-bottom: .7rem; background: var(--surface); }
.faq-item button { width: 100%; border: 0; border-bottom: 2px solid var(--outline); background: var(--surface); text-align: left; padding: .9rem; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; display: flex; justify-content: space-between; }
.faq-body { background: var(--surface-mid); padding: .9rem; }

.page-hero {
  border: 2px solid var(--outline);
  background: var(--surface);
  box-shadow: 8px 8px 0 0 var(--outline);
  padding: 1.6rem;
}
.operator-item, .article-item {
  border: 2px solid var(--outline);
  box-shadow: 4px 4px 0 0 var(--outline);
  margin-top: 1rem;
}
.operator-item .top, .article-item .top { background: var(--surface); padding: 1rem; border-bottom: 2px solid var(--outline); }
.operator-item .op-card-logo { margin-bottom: 0.65rem; }
.operator-item[data-brand="casino-solverde"] .op-card-logo {
  background: linear-gradient(145deg, #071f1a 0%, #123d35 100%);
  border-color: #0a3028;
}
.operator-item[data-brand="esconline"] .op-card-logo {
  background: linear-gradient(145deg, #14100c 0%, #2a241c 100%);
  border-color: #1f1a14;
}
.operator-item .op-card-bonus { margin-top: 0.55rem; }
.operator-item .op-card-row { margin-top: 0.45rem; }
.operator-item .bottom, .article-item .bottom { background: var(--surface-low); padding: 1rem; }

/* —— Operadores hub (fichas long-form) —— */
.page-hero .ops-lead {
  max-width: 68ch;
  font-size: 0.98rem;
  line-height: 1.58;
  color: var(--ink-muted);
}
.ops-intro-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 820px) {
  .ops-intro-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.info-block .ops-card-title {
  font-size: 1.05rem;
  margin: 0 0 0.55rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.operator-toc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.7rem;
  padding: 0.75rem 0.95rem;
  border: 2px solid var(--outline);
  background: var(--surface-low);
  box-shadow: 3px 3px 0 0 var(--outline);
  margin-bottom: 1.4rem;
}
.operator-toc__label {
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-right: 0.25rem;
}
.operator-toc a {
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.08rem;
}
.operator-toc a:hover {
  color: var(--primary);
}
.operator-legal {
  font-size: 0.88rem;
  margin: 0 0 0.4rem;
  color: var(--ink-muted);
  line-height: 1.45;
}
.operator-legal strong {
  color: var(--ink);
}
.operator-item .top h2 {
  margin-bottom: 0.35rem;
}
.operator-subhead {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin: 1rem 0 0.45rem;
  color: var(--ink);
}
.operator-item .bottom .operator-subhead:first-of-type {
  margin-top: 0;
}
.operator-item .bottom p {
  max-width: 72ch;
}
.operator-actions {
  margin: 0.9rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.rg-list {
  margin: 0;
  padding-left: 1.15rem;
  line-height: 1.55;
  color: var(--ink-muted);
}
.rg-list li {
  margin-bottom: 0.35rem;
}
.rg-list--links a {
  font-weight: 800;
}

.blog-section-title {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1.15rem;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-aside__meta {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.45;
}
.form-demo-note {
  margin: 0.9rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--ink-muted);
}
.form-shell > p:first-of-type {
  margin-top: 0;
}

.form-shell { border: 2px solid var(--outline); box-shadow: 6px 6px 0 0 var(--outline); background: var(--surface); padding: 1rem; }
.field { margin-bottom: .8rem; }
.field label { display: block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 800; margin-bottom: .3rem; }
.field-hint {
  display: block;
  font-size: 0.76rem;
  color: var(--ink-muted);
  margin: -0.15rem 0 0.35rem;
  line-height: 1.35;
}
input, textarea {
  width: 100%;
  border: 2px solid var(--outline);
  border-radius: 0;
  padding: .65rem .7rem;
  font: 500 .95rem "Inter",sans-serif;
  background: var(--surface);
}
input:focus, textarea:focus { outline: none; background: var(--primary-light); }
textarea { min-height: 130px; resize: vertical; }

.site-footer {
  margin-top: 4rem;
  border-top: 2px solid var(--outline);
  background: var(--ink);
  color: #f8f9fa;
  padding: 2rem 0;
}
.site-footer a { color: #ccd2ff; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.legal { border-top: 2px solid #4a5059; padding-top: .8rem; font-size: .8rem; color: #c8cfd8; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .6rem;
  margin: 1rem 0;
}
.trust-item {
  border: 2px solid #4a5059;
  background: #131313;
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem;
  color: #f8f9fa;
  text-decoration: none;
}
.trust-item img,
.trust-item__mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(100%);
}
.trust-item__mark--remote {
  width: auto;
  max-width: 100px;
  max-height: 34px;
  height: auto;
  padding: 2px 0;
  filter: none;
  background: transparent;
}
.trust-item:hover .trust-item__mark { filter: grayscale(0%); }
.trust-item:hover .trust-item__mark--remote { filter: brightness(1.05); }
.trust-item span {
  font-size: .62rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 800;
}

.logo-strip {
  margin-top: .7rem;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.logo-strip.logo-strip--text {
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
.logo-strip > .logo-strip__logos + .logo-strip__note {
  margin-top: 0;
}
.logo-strip img {
  height: 20px;
  background: #fff;
  border: 2px solid #1a1a1a;
  padding: 2px 4px;
}
.logo-strip--text {
  border: 2px dashed var(--outline);
  padding: 0.65rem 0.75rem;
  background: rgba(0, 0, 0, 0.04);
}
.logo-strip__note {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  font-weight: 600;
  max-width: 52rem;
}
.logo-strip__note code {
  font-size: 0.72em;
  font-weight: 700;
}

.reveal { opacity: 0; transform: translateY(14px); }

@media (max-width: 980px) {
  .hero-shell { grid-template-columns: 1fr; }
  .hero-main { border-right: 0; border-bottom: 2px solid var(--outline); }
  .cards-grid, .foot-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .section-head--split {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-main {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-top: 2px solid var(--outline);
    border-bottom: 2px solid var(--outline);
    display: grid;
    gap: .5rem;
    padding: .8rem 1rem;
    transform: translateY(-120%);
    transition: transform .2s ease;
  }
  .nav-main.is-open { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .data-box--pop,
  .cards-grid--operators .operator-card,
  .cards-grid--operators .card--hub {
    transform: none !important;
  }
}
