/* hero — colour-blocked accent band, minimal line */
.hero {
  background: var(--yellow);
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0 var(--space-lg);
}

.hero::after {
  content: "";
  position: absolute;
  right: -4%;
  top: -20%;
  width: 42%;
  height: 140%;
  background: var(--teal);
  border-radius: 40% 0 0 55%;
  opacity: 0.92;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: var(--space-lg);
  align-items: end;
}

.hero__kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: var(--space-sm);
}

.hero__line {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
  max-width: 16ch;
  color: var(--ink);
}

.hero__line .accent {
  color: var(--teal);
  background: none;
}

.hero__meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--teal-deep);
  margin-top: var(--space-md);
}

.hero__visual {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 3px solid var(--ink);
  position: relative;
  z-index: 1;
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.hero__notice {
  position: relative;
  z-index: 1;
  margin-top: var(--space-md);
  font-size: 0.88rem;
  color: var(--ink);
  max-width: 40rem;
}

@media (max-width: 760px) {
  .hero::after {
    width: 100%;
    height: 28%;
    top: auto;
    bottom: 0;
    right: 0;
    border-radius: 2rem 2rem 0 0;
    opacity: 0.15;
  }
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

/* stats strip */
.stats {
  background: var(--teal);
  color: var(--white);
  padding: var(--space-md) 0;
}

.stats__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.stats__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--yellow);
  display: block;
}

.stats__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 0.35rem;
  display: block;
}

@media (max-width: 560px) {
  .stats__row {
    grid-template-columns: 1fr;
  }
}

/* showcase — compact table + featured row; rounded cards with accent header */
.show {
  padding: var(--space-xl) 0;
}

.show__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.show__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0;
}

.show__aside {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-muted);
  max-width: 22rem;
}

.show__aff {
  background: var(--slate);
  border-radius: var(--radius-card);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: border-color 0.15s ease;
}

.show__aff:hover {
  border-color: var(--teal);
}

.show__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-card);
  background: var(--white);
}

.show__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 640px;
}

.show__table th,
.show__table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: middle;
  border-bottom: 2px dashed var(--slate-deep);
}

.show__table th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  background: var(--slate);
}

.show__table tr {
  border: 2px solid transparent;
  transition: background 0.15s ease;
}

.show__table tbody tr:hover td {
  background: var(--teal-soft);
}

.show__table .is-featured td {
  background: var(--white);
}

.show__featured {
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
  border: 2px solid transparent;
  transition: border-color 0.15s ease;
}

.show__featured:hover {
  border-color: var(--teal);
}

.show__featured-head {
  background: var(--teal);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.show__featured-head h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.35rem;
}

.show__featured-body {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 0;
}

.show__facts {
  padding: var(--space-md) var(--space-lg);
}

.show__action {
  padding: var(--space-md) var(--space-lg);
  background: var(--slate);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-sm);
  border-left: 2px dashed var(--slate-deep);
}

.show__logo {
  width: 7rem;
  height: 3rem;
  object-fit: contain;
  object-position: left center;
  margin-bottom: var(--space-sm);
  background: var(--white);
  border-radius: 0.5rem;
  padding: 0.25rem 0.4rem;
}

.show__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: var(--space-sm) 0;
}

.show__note {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin: 0;
}

.show__row-logo {
  width: 5.5rem;
  height: 2.2rem;
  object-fit: contain;
  object-position: left;
}

@media (max-width: 720px) {
  .show__featured-body {
    grid-template-columns: 1fr;
  }
  .show__action {
    border-left: 0;
    border-top: 2px dashed var(--slate-deep);
  }
}

/* operator cards grid below table (two-column card style) */
.cards {
  padding: 0 0 var(--space-xl);
}

.cards__grid {
  display: grid;
  gap: var(--space-md);
}

.card {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
  border: 2px solid transparent;
  transition: border-color 0.15s ease;
}

.card:hover {
  border-color: var(--teal);
}

.card__head {
  grid-column: 1 / -1;
  background: var(--teal);
  color: var(--white);
  padding: 0.65rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.card__head h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.2rem;
}

.card__facts {
  padding: var(--space-md) var(--space-lg);
}

.card__action {
  padding: var(--space-md);
  background: var(--slate);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-sm);
  border-left: 2px dashed var(--slate-deep);
}

.card__logo {
  width: 6.5rem;
  height: 2.8rem;
  object-fit: contain;
  object-position: left;
  background: var(--white);
  border-radius: 0.45rem;
  padding: 0.2rem 0.35rem;
  margin-bottom: 0.4rem;
}

.card__fallback {
  width: 6.5rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  background: var(--slate);
  color: var(--ink-muted);
  border-radius: 0.45rem;
  margin-bottom: 0.4rem;
}

@media (max-width: 720px) {
  .card {
    grid-template-columns: 1fr;
  }
  .card__action {
    border-left: 0;
    border-top: 2px dashed var(--slate-deep);
  }
}
