.section {
  padding: 80px 24px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

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

.section-head.center {
  text-align: center;
}

.section-head h2 {
  font-size: clamp(18px, 4vw, 30px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  text-transform: uppercase;
  font-family: "Press Start 2P", monospace;
  color: var(--accent);
  text-shadow: 3px 3px 0 #000;
}

.section-head h2 .accent {
  color: var(--text-muted);
}

.section-head p {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 460px;
  margin-top: 16px;
  font-family: "VT323", monospace;
}

.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto 44px;
}

.two-col-copy {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.8;
  margin-top: 8px;
  font-family: "VT323", monospace;
}

.feature-row {
  display: grid;
  gap: 16px;
  background: transparent;
  border: none;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}

.feature-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.feature-row.cols-4 { grid-template-columns: repeat(4, 1fr); }
.feature-row.cols-3-flat { grid-template-columns: repeat(3, 1fr); }

.feature-card {
  background: var(--bg-card);
  border: 3px solid var(--accent);
  border-radius: 0;
  padding: 26px 22px;
  transition: none;
  opacity: 0;
  transform: translateY(20px);
  min-width: 0;
  box-shadow: 5px 5px 0 0 #000;
}

.feature-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  background: var(--bg-card-soft);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 0 #000;
}

.feature-card.highlight {
  background: var(--accent);
  color: #1a1600;
  border-color: #000;
}

.feature-num {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-flex;
  font-family: "Press Start 2P", monospace;
}

.feature-card.highlight .feature-num {
  color: #1a1600;
}

.feature-card h3 {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-family: "Press Start 2P", monospace;
  color: var(--text-primary);
}

.feature-card.highlight h3 {
  color: #1a1600;
}

.feature-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-family: "VT323", monospace;
}

.feature-card.highlight p {
  color: rgba(26,22,0,0.8);
}

.faq-item {
  background: var(--bg-card);
  border: 3px solid var(--accent);
  padding: 26px 22px;
  box-shadow: 5px 5px 0 0 #000;
}

.faq-item h3 {
  font-size: 12px;
  font-family: "Press Start 2P", monospace;
  color: var(--accent);
  margin-bottom: 14px;
  line-height: 1.6;
  text-transform: uppercase;
}

.faq-item p {
  font-size: 16px;
  color: var(--text-secondary);
  font-family: "VT323", monospace;
  line-height: 1.6;
}

.footer {
  border-top: 4px solid var(--accent);
  padding: 34px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  font-family: "Press Start 2P", monospace;
}

.footer strong {
  color: var(--accent);
  font-weight: 400;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: var(--accent);
  margin-left: 6px;
  animation: live-breathe 1s steps(2) infinite;
}

@keyframes live-breathe {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}