.slot-hero {
  position: relative;
  padding: 64px 32px;
  background: var(--surface);
  overflow: hidden;
}

.slot-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(45, 226, 226, 0.03) 20px,
      rgba(45, 226, 226, 0.03) 21px
    );
}

.slot-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.slot-hero__label {
  font-family: var(--tactical-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 12px;
}

.slot-hero h1 {
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 16px;
}

.slot-hero__lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.7;
}

.slot-stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin: 0 32px 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.slot-stat {
  background: var(--bg);
  padding: 24px 16px;
  text-align: center;
}

.slot-stat__num {
  font-family: var(--tactical-mono);
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 6px;
}

.slot-stat__txt {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.slot-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px 64px;
}

.slot-body h2 {
  font-size: 20px;
  margin: 36px 0 14px;
  color: var(--secondary);
}

.slot-body p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.slot-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.slot-type-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
}

.slot-type-card h3 {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--accent);
}

.slot-type-card p {
  font-size: 13px;
  margin: 0;
}

.slot-visual {
  margin: 32px 0;
  max-width: 100%;
  overflow: hidden;
}

.slot-visual img {
  max-height: 320px;
  object-fit: cover;
  border: 1px solid var(--border);
  width: 100%;
  max-width: 100%;
}

@media (max-width: 768px) {
  .slot-stat-band {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 16px 32px;
  }

  .slot-body {
    padding: 0 16px 48px;
  }

  .slot-types {
    grid-template-columns: 1fr;
  }

  .slot-visual img {
    max-height: 220px;
  }
}
