:root {
  --ink: #09284d;
  --blue: #087cc0;
  --cyan: #11b6e9;
  --violet: #705fe7;
  --paper: #eff7ff;
  --line: rgba(12, 67, 116, .16);
  --muted: #5d748d;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ink);
  background: #cfe4f7;
  font-family: "DM Sans", sans-serif;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.orb-one {
  width: 48vw;
  height: 48vw;
  top: -28vw;
  right: -8vw;
  background: rgba(103, 193, 255, .42);
}

.orb-two {
  width: 36vw;
  height: 36vw;
  left: -18vw;
  bottom: -22vw;
  background: rgba(113, 95, 231, .2);
}

.launch-shell {
  position: relative;
  width: min(1460px, calc(100% - 40px));
  height: calc(100svh - 40px);
  margin: 20px auto;
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(560px, 1.1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(22, 68, 112, .2);
}

.brand-panel {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(34px, 5vw, 80px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(10, 45, 83, .04), rgba(40, 164, 225, .08)),
    #e5f2fd;
}

.brand-panel::before,
.brand-panel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(10, 55, 99, .12);
  border-radius: 50%;
}

.brand-panel::before { width: 72%; aspect-ratio: 1; }
.brand-panel::after { width: 92%; aspect-ratio: 1; }

.brand-panel img {
  position: relative;
  z-index: 1;
  width: min(100%, 610px);
  height: auto;
  display: block;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(11, 54, 96, .15);
}

.content-panel {
  min-width: 0;
  padding: clamp(34px, 5vw, 76px);
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(45, 122, 181, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 122, 181, .055) 1px, transparent 1px),
    #f7fbff;
  background-size: 42px 42px;
}

.topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #46657f;
  font: 600 12px "Manrope", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(17, 182, 233, .13);
}

.topline a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
}

.topline a:hover,
.topline a:focus-visible { color: var(--blue); }

.message { margin: auto 0; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font: 700 13px "Manrope", sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font: 600 clamp(54px, 5.7vw, 92px)/.98 "Manrope", sans-serif;
  letter-spacing: -.065em;
}

h1 em {
  color: var(--blue);
  font-style: normal;
}

.intro {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.7;
}

footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
  color: var(--ink);
  font: 700 15px "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
}

footer span {
  max-width: 390px;
  color: #7890a6;
  font-size: 11px;
  line-height: 1.5;
  text-align: right;
}

@media (max-width: 900px) {
  body { overflow: auto; }
  .launch-shell {
    width: 100%;
    min-height: 100svh;
    height: auto;
    margin: 0;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(300px, 45svh) minmax(470px, 55svh);
    border: 0;
    border-radius: 0;
  }
  .brand-panel { padding: 28px; }
  .brand-panel img { width: min(72vw, 390px); border-radius: 16px; }
  .content-panel { padding: 30px clamp(24px, 7vw, 58px); }
  h1 { font-size: clamp(44px, 10vw, 72px); }
  .intro { margin-top: 20px; }
}

@media (max-width: 520px) {
  .launch-shell { grid-template-rows: 38svh 62svh; }
  .brand-panel img { width: min(68vw, 290px); }
  .content-panel { padding: 24px 22px; }
  .message { margin: auto 0; }
  h1 { font-size: clamp(39px, 12vw, 58px); }
  .intro { font-size: 15px; line-height: 1.55; }
  footer span { display: none; }
}

@media (max-height: 690px) and (min-width: 901px) {
  .content-panel { padding-block: 30px; }
  h1 { font-size: clamp(48px, 5vw, 70px); }
  .intro { margin-top: 18px; font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
