:root {
  --navy: #0B1E2D;
  --slate: #142A3B;
  --tangerine: #FF7A2F;
  --gray: #8A97A8;
  --white: #FFFFFF;
  /* Slightly more visible grid lines */
  --blueprint-line: rgba(255, 122, 47, 0.08); 
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: var(--navy);
  /* Fixed Background Logic: Color first, then the two grid gradients */
  background-image: 
    linear-gradient(var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--blueprint-line) 1px, transparent 1px);
  background-size: 40px 40px;
  color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.hero {
  flex: 1; /* Takes up all available space except footer */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.inner {
  text-align: center;
  width: 100%;
  max-width: 850px;
}

.logo {
  width: 100%;
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.headline {
  font-size: clamp(3.5rem, 9vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -3px;
  line-height: 0.9;
  margin-bottom: 2rem;
}

.headline span {
  background: var(--tangerine);
  color: var(--navy);
  padding: 2px 20px;
  display: inline-block;
  transform: skewX(-12deg);
}

.subhead {
  font-size: 1.4rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-inline: auto;
}

.subhead strong {
  color: var(--white);
  font-weight: 600;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--tangerine);
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  font-weight: 700;
  color: var(--tangerine);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.dot {
  width: 10px;
  height: 10px;
  background: var(--tangerine);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--tangerine);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

footer {
  /* Forces the footer to be a full-width block at the bottom */
  width: 100%;
  padding: 2rem;
  margin-top: auto;
  text-align: center;
}

footer p {
  display: inline-block; /* Helps with centering */
  color: rgba(138, 151, 168, 0.6);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
