:root {
  --onity-blue: #1300b8;
  --onity-blue-dark: #0b0075;
  --onity-blue-deep: #080045;
  --onity-lime: #c8d600;
  --onity-white: #ffffff;
  --onity-soft: #f5f4ff;
  --onity-muted: #d9d6ff;
  --shadow: 0 28px 70px rgba(7, 0, 68, 0.28);
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--onity-white);
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.18), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(200,214,0,0.16), transparent 24%),
    linear-gradient(135deg, var(--onity-blue) 0%, var(--onity-blue-dark) 58%, var(--onity-blue-deep) 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.18;
}

body::before {
  width: 560px;
  height: 560px;
  left: -210px;
  bottom: -240px;
  background: var(--onity-lime);
  filter: blur(8px);
}

body::after {
  width: 760px;
  height: 760px;
  right: -360px;
  top: -320px;
  border: 2px solid rgba(255,255,255,0.42);
}

.page {
  position: relative;
  width: min(1040px, calc(100vw - 40px));
  min-height: min(680px, calc(100vh - 40px));
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 42px 22px;
  background: rgba(255,255,255,0.96);
  color: var(--onity-blue);
}

.brand {
  font-size: clamp(44px, 8vw, 82px);
  line-height: 0.85;
  letter-spacing: -0.085em;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--onity-blue);
}

.brand sup {
  font-size: 0.18em;
  letter-spacing: 0;
  vertical-align: super;
  margin-left: 4px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--onity-blue);
  border: 1px solid rgba(19,0,184,0.24);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(19,0,184,0.055);
  white-space: nowrap;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--onity-lime);
  box-shadow: 0 0 0 6px rgba(200,214,0,0.22);
}

.content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 60px 64px 46px;
}

.eyebrow {
  color: var(--onity-lime);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 6.4vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.message {
  max-width: 630px;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.88);
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.42;
  font-weight: 400;
}

.subheading {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.9);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.card {
  position: relative;
  padding: 34px;
  border-radius: 26px;
  background: rgba(255,255,255,0.96);
  color: var(--onity-blue-dark);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, var(--onity-lime), #eef36b, var(--onity-blue));
}

.card h2 {
  margin: 0 0 14px;
  color: var(--onity-blue);
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.card p {
  margin: 0 0 22px;
  color: #2d2862;
  font-size: 17px;
  line-height: 1.5;
}

.footer-copy {
  display: grid;
  gap: 6px;
  max-width: 700px;
}

.footer-note {
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  line-height: 1.45;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: #231e55;
  font-size: 15px;
  line-height: 1.42;
}

.check {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(200,214,0,0.28);
  color: var(--onity-blue);
  font-weight: 900;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 42px 32px;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
}

.footer strong { color: var(--onity-white); }

.accent-line {
  width: 132px;
  height: 8px;
  border-radius: 999px;
  background: var(--onity-lime);
  box-shadow: 0 0 28px rgba(200,214,0,0.45);
}

@media (max-width: 820px) {
  body { overflow: auto; }

  .page {
    min-height: auto;
    margin: 20px 0;
  }

  .topbar,
  .footer {
    padding-left: 26px;
    padding-right: 26px;
  }

  .topbar {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  .content {
    grid-template-columns: 1fr;
    padding: 42px 26px 30px;
  }

  .card { padding: 30px 24px; }
}
