:root {
  color-scheme: light;
  --ink: #001d49;
  --muted: #5e6672;
  --yellow: #ffdf00;
  --orange: #ff4a0a;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 223, 0, 0.07), transparent 31rem),
    var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.holding-page {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.electric-line {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--yellow) 0 72%, var(--orange) 72% 100%);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 76rem);
  margin: 0 auto;
  padding: clamp(4.5rem, 10vh, 8rem) clamp(1.4rem, 5vw, 4rem) 3rem;
  text-align: center;
}

.brand {
  display: block;
  width: min(100%, 52rem);
  height: auto;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: clamp(2.4rem, 5vh, 4rem);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.status-bolt {
  color: var(--orange);
  font-size: 1rem;
  line-height: 1;
}

h1 {
  margin: 0.65rem 0 0;
  color: var(--ink);
  font-size: clamp(2.45rem, 7vw, 6.6rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem 3rem;
  width: 100%;
  padding: 1.35rem clamp(1.4rem, 4vw, 3.5rem);
  border-top: 1px solid #e9ebee;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

@media (max-width: 42rem) {
  .hero {
    justify-content: center;
    padding-bottom: 2rem;
  }

  .brand {
    width: min(100%, 34rem);
  }

  footer {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .status-bolt {
    animation: live-current 2.8s ease-in-out infinite;
  }

  @keyframes live-current {
    0%, 100% { opacity: 0.55; transform: scale(0.92); }
    50% { opacity: 1; transform: scale(1.08); }
  }
}
