/* =====================================
   S.P.e.N.T. Static Coming Soon Page
   Final Layout
=====================================
/* ===== S.P.e.N.T. Punk Font ===== */
@font-face {
    font-family: 'SkratchPunk';
    src: url('../fonts/Skratch-Punk.ttf.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


:root {
  --bg: #000;
  --fg: #fff;
  --muted: rgba(255,255,255,.75);
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Arial, Helvetica, sans-serif;
}

/* CENTERED CONTENT WRAP */

.wrap {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  position: relative;
}

/* WHITE SIDE BANDS — aligned near content */

.wrap::before,
.wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  background: #fff;
  z-index: 0;
}

/* Adjust spacing to match your mock */
.wrap::before {
  left: calc(50% - 450px);
}

.wrap::after {
  right: calc(50% - 450px);
}

/* CONTENT CARD */

.card {
  max-width: 700px;
  width: 90%;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* HERO IMAGE */

.hero {
  width: 420px;
  max-width: 90%;
  height: auto;
  margin: 0 auto 25px auto;
  display: block;
}

/* HEADLINE */

.headline {
    font-family: 'SkratchPunk', Arial, sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    font-size: clamp(2rem, 5vw, 3.8rem);
    margin: 0 0 12px 0;
    line-height: 1;
}

/* SUBTEXT */

.subhead {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.6;
}

/* MOBILE CLEANUP */

@media (max-width: 900px) {
  .wrap::before,
  .wrap::after {
    width: 18px;
  }

  .wrap::before {
    left: 12px;
  }

  .wrap::after {
    right: 12px;
  }

  .hero {
    width: 320px;
  }
}

