:root {
  --yellow: #FEC600;
  --ink: #15140F;
  --ink-3: #2a2820;
  --stripe: #2f2a04;
  --text: #f4f1e6;
  --muted: #b8b3a1;
  --font: 'Chakra Petch', 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; }

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background-color: var(--ink);
  background-image: repeating-linear-gradient(-45deg, var(--ink) 0 34px, var(--stripe) 34px 68px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* Warning tape at top and bottom */
.tape {
  height: 14px;
  flex: none;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 22px, var(--ink) 22px 44px);
}
.tape--top { border-bottom: 3px solid var(--yellow); }
.tape--bottom { border-top: 3px solid var(--yellow); margin-top: auto; }

.page {
  width: min(1040px, 100% - 32px);
  margin: 0 auto;
  padding: clamp(40px, 8vh, 96px) 0 56px;
}
.page--center { text-align: center; padding-top: 14vh; }

/* Hero */
.hero { text-align: center; }
.hero__logo {
  width: clamp(120px, 20vw, 170px);
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.55));
}

.wordmark {
  font-weight: 700;
  font-size: clamp(56px, 11vw, 112px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 20px 0 8px;
  color: #fff;
  text-shadow: 0 6px 24px rgba(0,0,0,.5);
}
.wordmark__us { color: #fff; }
.wordmark__yellow { color: var(--yellow); }

.tagline {
  font-weight: 600;
  font-size: clamp(20px, 3vw, 28px);
  margin: 0 0 6px;
  color: var(--text);
}
.bolt { color: var(--yellow); }

.sub {
  color: var(--muted);
  font-size: clamp(15px, 2vw, 19px);
  margin: 0;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 10px 18px;
  border: 1px solid rgba(254,198,0,.45);
  background: rgba(21,20,15,.85);
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 13px;
}
.status__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--yellow);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(254,198,0,.7); }
  100% { box-shadow: 0 0 0 12px rgba(254,198,0,0); }
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(40px, 7vh, 72px);
}
.card {
  background: rgba(21,20,15,.92);
  border: 1px solid var(--ink-3);
  border-top: 4px solid var(--yellow);
  padding: 22px 22px 24px;
}
.card__num {
  font-weight: 700;
  color: var(--yellow);
  font-size: 13px;
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.card h2 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
}

/* Links */
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
.btn {
  display: inline-block;
  padding: 12px 22px;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  background: rgba(21,20,15,.9);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 14px;
  transition: transform .12s ease, background .12s ease, color .12s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--yellow); color: var(--ink); }
.btn--primary:hover { background: #ffd333; }
.btn:not(.btn--primary):hover { background: var(--yellow); color: var(--ink); }
.handle {
  color: var(--muted);
  font-weight: 600;
  padding: 0 6px;
}

/* Footer */
.footer {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  padding: 18px 16px 22px;
  background: rgba(21,20,15,.85);
}
.footer__sep { margin: 0 10px; }

@media (max-width: 720px) {
  .pillars { grid-template-columns: 1fr; }
  .footer__sep { display: none; }
  .footer span:last-child { display: block; margin-top: 4px; }
}
