/* ===================================================================
   Big-Z — Coming Soon page
   Palette: the three greens you provided, mixed with the logo's own
   red / yellow / white, on a black base.
     Black   #000000  -> page background
     Green   #00ff44 / #00ff84 / #5bff4f -> primary brand glow
     Red     (from logo)  -> secondary accent
     Yellow  (from logo)  -> secondary accent
     White   (from logo)  -> body text / clarity
   The BIG-Z wordmark and the progress bar carry all the colors at
   once (the page's one "loud" moment); everything else picks one
   accent + white so it stays readable rather than chaotic.
   Fonts:  Space Grotesk -> wordmark / headings
           Inter          -> body text
   No icons. No animations or transitions.

   RESPONSIVE BREAKPOINTS:
     - Mobile:      up to 600px
     - Tablet:      601px – 1024px
     - Desktop:     1025px – 1439px
     - Wide screen: 1440px and above
=================================================================== */

:root {
  --black:   #000000;
  --green-1: #00ff44;
  --green-2: #00ff84;
  --green-3: #5bff4f;
  --red:     #ed1c24;
  --yellow:  #ffd300;
  --white:   #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: 'Inter', Arial, sans-serif;
  background-color: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 6vh 5vw 30px;
}

/* ---------- Background grid texture (static, no animation) ---------- */

.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 255, 68, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 68, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 35%, rgba(0,0,0,0.9) 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 35%, rgba(0,0,0,0.9) 0%, transparent 75%);
}

/* ---------- Decorative background glows: one per accent color ---------- */

.blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  filter: blur(2px);
}

.blob-one {
  width: clamp(220px, 32vw, 460px);
  height: clamp(220px, 32vw, 460px);
  top: -12%;
  left: -10%;
  background: radial-gradient(circle, var(--green-1) 0%, transparent 70%);
  opacity: 0.32;
}

.blob-two {
  width: clamp(180px, 24vw, 340px);
  height: clamp(180px, 24vw, 340px);
  top: 6%;
  right: -8%;
  background: radial-gradient(circle, var(--red) 0%, transparent 70%);
  opacity: 0.22;
}

.blob-three {
  width: clamp(160px, 22vw, 300px);
  height: clamp(160px, 22vw, 300px);
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
  opacity: 0.24;
}

.page,
.footer {
  position: relative;
  z-index: 1;
}

.page {
  width: 100%;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vh, 28px);
  margin-top: 10px;
}

/* ---------- Logo ---------- */

.brand {
  position: relative;
}

.brand::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(220px, 32vw, 380px);
  height: clamp(220px, 32vw, 380px);
  background: radial-gradient(circle, rgba(255, 211, 0, 0.16) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.brand .logo {
  max-width: clamp(220px, 30vw, 360px);
  width: 100%;
  height: auto;
}

/* ---------- Hero ---------- */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.eyebrow {
  font-family: 'Inter', Arial, sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-3);
}

/* The one signature element: all three brand families meet here */
.wordmark {
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(3.4rem, 13vw, 9.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  background: linear-gradient(120deg, var(--green-2) 0%, var(--yellow) 50%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(0, 255, 68, 0.35))
          drop-shadow(0 0 24px rgba(237, 28, 36, 0.3));
}

.lede {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.5;
  max-width: 560px;
  font-weight: 500;
  color: var(--white);
}

.status {
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  font-weight: 500;
  color: var(--white);
  background: var(--black);
  border: 2px solid var(--green-1);
  border-radius: 999px;
  padding: 12px 30px;
  margin-top: 8px;
}

/* ---------- Progress indicator (static, no animation) ---------- */

.progress {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.progress-label {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.85;
}

.progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--yellow);
  background: var(--black);
  overflow: hidden;
}

.progress-fill {
  width: 78%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--green-1));
  box-shadow: 0 0 10px rgba(255, 211, 0, 0.5);
}

/* ---------- Contact ---------- */

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--black);
  border: 2px solid var(--red);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 40px);
  width: 100%;
  max-width: 560px;
  margin-top: clamp(24px, 5vh, 44px);
}

.contact-line {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 500;
  color: var(--white);
}

.phone {
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: clamp(2.2rem, 7vw, 3.6rem);
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.02em;
  text-shadow: 0 0 16px rgba(255, 211, 0, 0.5);
}

.hours {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 500;
  color: var(--white);
  opacity: 0.75;
  margin-top: 4px;
}

/* ---------- Footer ---------- */

.footer {
  margin-top: clamp(36px, 6vh, 56px);
  padding-bottom: 24px;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 500;
  color: var(--green-3);
}

/* =========================== RESPONSIVE =========================== */

/* Tablet: 601px – 1024px */
@media (min-width: 601px) and (max-width: 1024px) {
  .page {
    max-width: 680px;
  }
}

/* Desktop: 1025px – 1439px */
@media (min-width: 1025px) and (max-width: 1439px) {
  .page {
    max-width: 860px;
  }
}

/* Wide screen: 1440px and above */
@media (min-width: 1440px) {
  .page {
    max-width: 1000px;
    gap: 88px;
  }
  body {
    padding-top: 8vh;
  }
}

/* Mobile: up to 600px */
@media (max-width: 600px) {
  body {
    padding: 8vh 6vw 24px;
  }
  .contact {
    padding: 26px 20px;
    border-radius: 20px;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .wordmark {
    font-size: clamp(2.6rem, 16vw, 3.6rem);
  }
  .status {
    padding: 10px 20px;
    font-size: 1rem;
  }
}
