/* Gutter Style — temporary update page styles */

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

:root {
  --bg: #0a0a0d;
  --purple: #7b2ff7;
  --blue: #2fd0f7;
  --magenta: #f72ff0;
  --text: #f2f0f5;
  --muted: #b3abc2;
  --line: rgba(242, 240, 245, 0.14);
}

html, body { height: 100%; }

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(123, 47, 247, 0.35), transparent 42%),
    radial-gradient(circle at 88% 92%, rgba(47, 208, 247, 0.28), transparent 48%),
    radial-gradient(circle at 90% 10%, rgba(247, 47, 240, 0.18), transparent 40%),
    var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
}

.hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.logo {
  width: min(340px, 78vw);
  height: auto;
  margin-bottom: 1.75rem;
  filter: drop-shadow(0 0 28px rgba(47, 208, 247, 0.25));
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 2.5rem;
}

h1 {
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.1rem;
  max-width: 18ch;
}

.message {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text);
  margin-bottom: 0.9rem;
  max-width: 38ch;
}

.submessage {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 3rem;
}

.divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--magenta));
  margin: 0 auto 1.75rem;
  border-radius: 2px;
}

.parent {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
}

.copyright {
  font-size: 0.78rem;
  color: var(--muted);
}

@media (max-width: 480px) {
  .hero { padding: 3rem 1.25rem; }
}
