:root {
  --bg: #030303;
  --text: #f5f7f8;
  --muted: #a9b1b7;
  --accent: #23b4e7;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
  position: relative;
  isolation: isolate;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 30%, rgba(35, 180, 231, 0.07), transparent 34%),
    linear-gradient(180deg, #050505 0%, #000 100%);
}

.hero {
  width: min(1180px, 100%);
  text-align: center;
}

.brand-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.logo {
  display: block;
  width: min(100%, 1050px);
  height: auto;
  object-fit: contain;
}

.divider {
  width: min(780px, 72vw);
  height: 1px;
  margin: 42px auto 34px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(35, 180, 231, 0.25),
    var(--accent),
    rgba(35, 180, 231, 0.25),
    transparent
  );
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.message {
  max-width: 640px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

@media (max-width: 700px) {
  .page-shell {
    padding: 32px 18px;
  }

  .logo {
    width: 100%;
  }

  .divider {
    margin-top: 30px;
    margin-bottom: 28px;
    width: 84vw;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5.2rem);
  }
}
