#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--fc-accent);
  box-shadow: 0 0 10px var(--fc-accent), 0 0 20px rgba(212,145,10,0.4);
  z-index: 1000;
  transition: width 0.05s linear;
}

#toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--fc-accent);
  color: #000;
  font-size: 9px;
  padding: 12px 20px;
  border: 4px solid var(--fc-accent-hover);
  box-shadow: 4px 4px 0px #000;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.2s ease;
  pointer-events: none;
}
#toast.show {
  opacity: 1;
  transform: translateY(0);
}

.grid-overlay {
  background-image:
    linear-gradient(rgba(212,145,10,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,145,10,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.scanlines { position: relative; }
.scanlines::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,0,0,0.15) 2px, rgba(0,0,0,0.15) 4px
  );
  z-index: 10;
}

.pixel-border {
  border: 4px solid var(--fc-accent);
  box-shadow: 4px 4px 0px rgba(212,145,10,0.4),
              inset 0 0 0 2px rgba(212,145,10,0.1);
}

.pixel-glow {
  text-shadow: 0 0 6px rgba(212,145,10,0.5), 0 0 14px rgba(212,145,10,0.2);
}

.ticker {
  background: var(--fc-accent);
  color: #000;
  font-size: 8px;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 100;
}
.ticker-track {
  display: inline-block;
  animation: ticker-scroll 35s linear infinite;
}
.ticker-track span { margin-right: 80px; }

header {
  position: sticky;
  top: 3px;
  z-index: 90;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid rgba(212,145,10,0.2);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img-box {
  width: 44px;
  height: 44px;
  border: 4px solid var(--fc-accent);
  overflow: hidden;
  box-shadow: 0 0 20px rgba(212,145,10,0.4), 4px 4px 0px rgba(212,145,10,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fc-bg-card);
}

.logo-img-box img { width: 100%; height: 100%; object-fit: cover; }

.logo-text {
  font-size: 11px;
  color: var(--fc-accent);
  letter-spacing: 1px;
  line-height: 1.5;
}

.logo-sub {
  font-size: 7px;
  color: var(--fc-text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}

.header-badge {
  background: var(--fc-accent);
  color: #000;
  font-size: 7px;
  padding: 4px 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.hero-logo-box {
  width: 80px;
  height: 80px;
  border: 4px solid var(--fc-accent);
  overflow: hidden;
  box-shadow: 0 0 30px 8px rgba(212,145,10,0.4), 6px 6px 0px rgba(212,145,10,0.3);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fc-bg-card);
}

.hero-logo-box img { width: 100%; height: 100%; object-fit: cover; }

.hero h1 {
  font-size: clamp(14px, 2.5vw, 22px);
  color: var(--fc-accent);
  line-height: 2;
  max-width: 800px;
  margin-bottom: 6px;
}

.hero h2 {
  font-size: clamp(14px, 2.5vw, 22px);
  line-height: 2;
  max-width: 800px;
  margin-bottom: 30px;
  background: var(--fc-accent);
  color: #000;
  padding: 4px 16px;
  display: inline-block;
}

.pillar-display {
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pillar-word {
  font-size: clamp(24px, 4vw, 36px);
  color: var(--fc-accent);
  text-shadow: 0 0 6px rgba(212,145,10,0.5), 0 0 14px rgba(212,145,10,0.2);
  margin-bottom: 8px;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.pillar-desc {
  font-size: 9px;
  color: var(--fc-text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pillar-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.pillar-dot {
  height: 8px;
  background: rgba(212,145,10,0.2);
  width: 8px;
  transition: all 0.3s;
}
.pillar-dot.active {
  width: 32px;
  background: var(--fc-accent);
  box-shadow: 0 0 8px rgba(212,145,10,0.6);
}

.btn-primary {
  background: var(--fc-accent);
  color: #000;
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 14px 28px;
  border: 4px solid var(--fc-accent-hover);
  box-shadow: 4px 4px 0px #000, inset -2px -2px 0px rgba(0,0,0,0.3);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.1s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--fc-accent-hover);
  box-shadow: 2px 2px 0px #000, inset -2px -2px 0px rgba(0,0,0,0.3);
  transform: translate(2px, 2px);
}

.btn-secondary {
  background: transparent;
  color: var(--fc-accent);
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  padding: 10px 20px;
  border: 4px solid var(--fc-accent);
  box-shadow: 4px 4px 0px var(--fc-accent);
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.1s;
  display: inline-block;
}
.btn-secondary:hover {
  background: var(--fc-accent);
  color: #000;
  box-shadow: 2px 2px 0px var(--fc-accent);
  transform: translate(2px, 2px);
}

.legal-hint {
  font-size: 7px;
  color: var(--fc-text-muted);
  margin-top: 14px;
  line-height: 2;
  max-width: 420px;
  text-align: center;
}
.legal-hint a { color: var(--fc-accent); text-decoration: underline; }

section {
  padding: 80px 40px;
  border-top: 2px solid rgba(212,145,10,0.15);
}

.section-eyebrow {
  font-size: 8px;
  color: var(--fc-text-muted);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(212,145,10,0.2);
}

.section-title {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--fc-accent);
  margin-bottom: 8px;
  line-height: 1.8;
}

.section-sub {
  font-size: 9px;
  color: var(--fc-text-secondary);
  margin-bottom: 50px;
  line-height: 2;
}

.two-col   { display: grid; grid-template-columns: 1fr 1fr;         gap: 40px; align-items: start; }
.three-col { display: grid; grid-template-columns: 1fr 1fr 1fr;     gap: 24px; }

.platform-label {
  font-size: 7px;
  color: var(--fc-text-muted);
  letter-spacing: 3px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.platform-label::before { content: '// '; color: var(--fc-accent); }

@media (max-width: 768px) {
  .two-col, .three-col { grid-template-columns: 1fr; }
  section { padding: 60px 20px; }
  header  { padding: 16px 20px; }
}
