@font-face {
  font-family: "Manrope";
  src: url("/brand/Manrope-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  font-family: "Manrope", system-ui, sans-serif;
  color: #0a1f4f;
  background: #f4f7fd;
}

* { box-sizing: border-box; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(55, 112, 255, 0.13), transparent 32rem),
    radial-gradient(circle at 92% 88%, rgba(126, 84, 255, 0.12), transparent 30rem),
    #f4f7fd;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.launch-card {
  position: relative;
  isolation: isolate;
  width: min(900px, 100%);
  overflow: hidden;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid rgba(34, 75, 152, 0.13);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 32px 90px rgba(22, 50, 108, 0.16);
  backdrop-filter: blur(22px);
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(4px);
}

.ambient-one {
  top: -130px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(65, 124, 255, 0.20), transparent 68%);
}

.ambient-two {
  bottom: -170px;
  left: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(125, 77, 255, 0.15), transparent 70%);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 42px;
}

.brand-logo {
  width: 86px;
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(10, 37, 91, 0.14));
}

.brand-name,
.product-name { margin: 0; }

.brand-name {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.product-name {
  margin-top: 2px;
  color: #58709e;
  font-size: 0.98rem;
  font-weight: 650;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(46, 102, 220, 0.16);
  border-radius: 999px;
  color: #315cae;
  background: rgba(70, 126, 238, 0.08);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3c7bf4;
  box-shadow: 0 0 0 5px rgba(60, 123, 244, 0.12);
}

h1 {
  max-width: 720px;
  margin: 26px 0 18px;
  color: #071b46;
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.intro {
  max-width: 660px;
  margin: 0;
  color: #58709e;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 14px 20px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, #0a2d71, #245ed3);
  box-shadow: 0 14px 30px rgba(27, 76, 171, 0.24);
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.platform-link:hover,
.platform-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(27, 76, 171, 0.30);
}

.platform-link:focus-visible {
  outline: 3px solid rgba(65, 124, 255, 0.32);
  outline-offset: 4px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 58px;
  color: #8292b3;
  font-size: 0.82rem;
  font-weight: 620;
}

@media (max-width: 600px) {
  .page-shell { padding: 16px; }
  .launch-card { padding: 28px 24px 32px; border-radius: 26px; }
  .brand-lockup { gap: 14px; margin-bottom: 34px; }
  .brand-logo { width: 70px; height: 70px; }
  h1 { letter-spacing: -0.045em; }
  footer { margin-top: 44px; }
}

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