:root {
  --ink: #090d3f;
  --muted: #555b7c;
  --paper: #fbfbff;
  --surface: #ffffff;
  --violet: #5f35d5;
  --violet-deep: #24106f;
  --aqua: #1f8a9b;
  --line: rgba(9, 13, 63, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(95, 53, 213, 0.05), rgba(31, 138, 155, 0.03) 42%, transparent 72%),
    var(--paper);
}

img {
  display: block;
  max-width: 100%;
}

h1,
p,
span {
  overflow-wrap: anywhere;
}

.page-shell {
  min-height: calc(100svh - 4.5rem);
  display: grid;
  place-items: center;
  padding: clamp(2rem, 7vw, 5.5rem) clamp(1rem, 5vw, 4.5rem);
}

.intro {
  width: min(100%, 980px);
  display: grid;
  justify-items: center;
  text-align: center;
}

.brand-lockup {
  width: min(100%, 520px);
  margin-bottom: clamp(1rem, 4vw, 2.5rem);
}

.brand-lockup img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.intro-copy {
  width: min(100%, 760px);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.45rem, 6.6vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lede {
  margin: clamp(1.25rem, 3vw, 1.65rem) auto 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.stay-tuned {
  width: fit-content;
  max-width: 100%;
  margin: clamp(1.4rem, 3vw, 2rem) auto 0;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(95, 53, 213, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--violet-deep);
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.4;
  box-shadow: 0 18px 60px rgba(36, 16, 111, 0.08);
}

.signal-list {
  width: min(100%, 620px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: clamp(1.6rem, 4vw, 2.6rem);
}

.signal-list span {
  min-height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.signal-list span:nth-child(2) {
  border-color: rgba(31, 138, 155, 0.24);
}

.signal-list span:nth-child(3) {
  border-color: rgba(95, 53, 213, 0.24);
}

.site-footer {
  display: flex;
  justify-content: center;
  min-height: 4.5rem;
  padding: 1.25rem clamp(1rem, 5vw, 4.5rem);
  color: rgba(85, 91, 124, 0.8);
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 640px) {
  .page-shell {
    align-items: start;
    padding-top: 1.5rem;
  }

  .brand-lockup {
    width: min(100%, 430px);
    margin-bottom: 0.8rem;
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .signal-list {
    grid-template-columns: 1fr;
  }
}
