:root {
  --bg-start: #07131f;
  --bg-end: #0e2335;
  --bg-soft: #13314b;
  --surface: rgba(10, 24, 38, 0.72);
  --surface-strong: rgba(13, 30, 46, 0.9);
  --line: rgba(167, 200, 229, 0.18);
  --line-strong: rgba(202, 225, 244, 0.28);
  --text-strong: #f5f9fd;
  --text-main: rgba(233, 241, 248, 0.9);
  --text-muted: rgba(196, 213, 227, 0.72);
  --accent: #78c1ff;
  --accent-soft: rgba(120, 193, 255, 0.14);
  --shadow-main: 0 28px 90px rgba(2, 10, 18, 0.38);
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-main);
  line-height: 1.5;
  background:
    radial-gradient(circle at top left, rgba(120, 193, 255, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(120, 193, 255, 0.12), transparent 30%),
    linear-gradient(180deg, var(--bg-start) 0%, var(--bg-end) 58%, var(--bg-soft) 100%);
}

.page-background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
}

.orb-one {
  top: 6%;
  right: -6rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(120, 193, 255, 0.24), transparent 72%);
}

.orb-two {
  bottom: -4rem;
  left: -5rem;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(126, 218, 255, 0.18), transparent 72%);
}

.page-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(1rem, 3vw, 2rem);
  display: grid;
  place-items: center;
}

.hero-card {
  width: min(100%, 920px);
  min-height: calc(100dvh - clamp(2rem, 6vw, 4rem));
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: clamp(24px, 4vw, 36px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: var(--shadow-main);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(0.4rem, 2vw, 1rem);
}

.status-pill {
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(120, 193, 255, 0.22);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--text-strong);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-primary {
  display: block;
  width: min(100%, 340px);
  max-width: 100%;
  max-height: 180px;
  height: auto;
  object-fit: contain;
}

.copy-block {
  max-width: 40rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(3rem, 9vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.subheadline {
  margin: 1rem 0 0;
  color: var(--text-strong);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  line-height: 1.45;
}

.supporting-text {
  margin: 0.85rem 0 0;
  max-width: 34rem;
  color: var(--text-muted);
  font-size: clamp(0.98rem, 1.9vw, 1.08rem);
  line-height: 1.65;
}

.partner-footer {
  margin-top: auto;
  padding: 1.15rem clamp(0.4rem, 2vw, 1rem) clamp(0.35rem, 1vw, 0.5rem);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.partner-label {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-secondary {
  display: block;
  height: clamp(22px, 2.6vw, 30px);
  width: auto;
  opacity: 0.9;
}

@media (max-width: 760px) {
  .page-shell {
    padding: 0.85rem;
  }

  .hero-card {
    min-height: calc(100dvh - 1.7rem);
    padding: 1.2rem;
    border-radius: 24px;
  }

  .hero-content {
    padding: 0.15rem;
    align-items: center;
    text-align: center;
  }

  .copy-block {
    max-width: 32rem;
  }

  .brand-primary {
    width: min(100%, 300px);
    max-height: 150px;
  }

  h1 {
    font-size: clamp(2.9rem, 16vw, 4.5rem);
  }

  .subheadline {
    line-height: 1.45;
  }

  .supporting-text {
    line-height: 1.65;
  }

  .partner-footer {
    padding-inline: 0.15rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (min-width: 900px) {
  .hero-card {
    min-height: min(760px, calc(100dvh - 4rem));
  }
}
