@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700;800&family=Public+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --launch-sky: #c9efff;
  --launch-sky-deep: #7fd6ff;
  --launch-blue: #2998e6;
  --launch-blue-deep: #17548c;
  --launch-aqua: #23d7dd;
  --launch-cream: #fff6dc;
  --launch-cream-strong: #fffef8;
  --launch-ink: #1f206c;
  --launch-ink-soft: #53608d;
  --launch-purple: #4c2ca6;
  --launch-purple-deep: #26196d;
  --launch-surface: rgba(255, 253, 247, 0.92);
  --launch-surface-strong: #fff8e8;
  --launch-stroke: rgba(61, 57, 140, 0.12);
  --launch-green: #2ac46e;
  --launch-green-deep: #159f54;
  --launch-gold: #ffd948;
  --launch-gold-deep: #f4ae00;
  --launch-orange: #d35b00;
  --launch-coral: #f26b60;
  --launch-shadow: 0 28px 70px rgba(48, 51, 126, 0.16);
  --launch-shadow-soft: 0 16px 34px rgba(48, 51, 126, 0.1);
  --launch-radius-xl: 36px;
  --launch-radius-lg: 28px;
  --launch-radius-md: 20px;
  --launch-radius-sm: 14px;
  --launch-max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body.launch-marketing,
body.launch-auth-page,
body.launch-payout-page {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  color: var(--launch-ink);
  font-family: "Public Sans", sans-serif;
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.88), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(255, 217, 72, 0.34), transparent 18%),
    radial-gradient(circle at 72% 22%, rgba(95, 71, 191, 0.12), transparent 24%),
    linear-gradient(180deg, #d6f1ff 0%, #edf7ff 30%, #fff7df 100%);
}

body.launch-marketing {
  background-attachment: fixed;
}

body.launch-marketing::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(41, 152, 230, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(41, 152, 230, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 72%);
  pointer-events: none;
  z-index: -1;
}

body.launch-marketing::after {
  content: "";
  position: fixed;
  inset: auto auto 0 -4%;
  width: min(520px, 38vw);
  height: min(520px, 38vw);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(35, 215, 221, 0.1), rgba(35, 215, 221, 0));
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.launch-container {
  width: min(calc(100% - 32px), var(--launch-max));
  margin: 0 auto;
}

.launch-skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 120;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 16px;
  background: var(--launch-cream-strong);
  color: var(--launch-ink);
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--launch-shadow-soft);
}

.launch-skip-link:focus {
  top: 16px;
}

.launch-marketing #header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(240, 249, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(76, 44, 166, 0.08);
  transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.launch-marketing #header.is-scrolled {
  background: rgba(250, 252, 255, 0.94);
  box-shadow: 0 10px 30px rgba(48, 51, 126, 0.08);
}

.launch-marketing .main-menu {
  padding: 14px 0;
}

.launch-marketing .main-menu .row {
  margin: 0;
  gap: 20px;
}

.launch-marketing #nav-menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 28px;
}

.launch-nav-shell {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.launch-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border: 1px solid rgba(230, 240, 255, 0.14);
  border-radius: 16px;
  background: #114a8a;
  color: #f8fbff;
  font: inherit;
  box-shadow: 0 16px 28px rgba(13, 21, 36, 0.18);
}

.launch-nav-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.launch-nav-toggle__icon {
  display: inline-grid;
  gap: 4px;
}

.launch-nav-toggle__icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.launch-nav-toggle[aria-expanded="true"] .launch-nav-toggle__icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.launch-nav-toggle[aria-expanded="true"] .launch-nav-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.launch-nav-toggle[aria-expanded="true"] .launch-nav-toggle__icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.launch-nav-toggle[aria-expanded="true"] {
  border-color: transparent;
  box-shadow: none;
}

.launch-nav-toggle:focus-visible {
  outline: 3px solid #ffd948;
  outline-offset: 4px;
}

.launch-brand {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.launch-brand__lockup {
  position: relative;
  display: block;
  width: clamp(148px, 11.8vw, 194px);
}

.launch-brand__full-logo {
  display: block;
  width: 100%;
  height: auto;
}

.launch-brand__mark {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(38, 25, 109, 0.12));
}

#header .launch-brand {
  padding: 2px 0;
  isolation: isolate;
}

#header .launch-brand:focus-visible {
  outline: 3px solid rgba(35, 215, 221, 0.28);
  outline-offset: 5px;
  border-radius: 18px;
}

.launch-footer .launch-brand {
  margin-bottom: 14px;
}

.launch-brand__ribbon {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 118%;
  transform: translateX(-50%);
  pointer-events: none;
}

.launch-brand__ribbon-art {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(169, 55, 18, 0.3));
}

.launch-brand__ribbon-wordmark {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 66.4%;
  height: auto;
  transform: translate(-50%, -48.5%);
}

#header .launch-brand__lockup {
  transition: transform 180ms ease;
}

#header .launch-brand:hover .launch-brand__lockup,
#header .launch-brand:focus-visible .launch-brand__lockup {
  transform: translateY(-1px);
}

.launch-marketing .nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.launch-marketing .nav-menu li {
  margin: 0;
}

.launch-marketing .nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--launch-ink-soft);
  text-decoration: none;
  position: relative;
}

.launch-marketing .nav-menu li.menu-active a,
.launch-marketing .nav-menu a:hover,
.launch-marketing .nav-menu a:focus {
  color: var(--launch-ink);
}

.launch-marketing .nav-menu li.menu-active a::after,
.launch-marketing .nav-menu a:hover::after,
.launch-marketing .nav-menu a:focus::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--launch-gold), var(--launch-aqua));
}

.launch-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.launch-button,
.launch-store-link,
.launch-ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, filter 180ms ease;
}

.launch-button:hover,
.launch-store-link:hover,
.launch-ghost-link:hover,
.launch-button:focus,
.launch-store-link:focus,
.launch-ghost-link:focus {
  transform: translateY(-2px);
  text-decoration: none;
}

.launch-button {
  position: relative;
  overflow: hidden;
  padding: 0 24px;
  color: #7c3100;
  background: linear-gradient(180deg, #ffe36b 0%, #ffc92d 100%);
  border: 1px solid rgba(211, 91, 0, 0.14);
  box-shadow: 0 18px 28px rgba(244, 174, 0, 0.28);
}

.launch-button::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -24%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  transition: transform 360ms ease;
}

.launch-button:hover::after,
.launch-button:focus::after {
  transform: translateX(640%) skewX(-18deg);
}

.launch-button--header {
  min-height: 48px;
  padding: 0 20px;
}

.launch-button:active,
.launch-store-link:active,
.launch-ghost-link:active {
  transform: translateY(0);
}

.launch-button:focus-visible,
.launch-store-link:focus-visible,
.launch-ghost-link:focus-visible,
.launch-contact-form input:focus-visible,
.launch-contact-form textarea:focus-visible,
.launch-auth-form input:focus-visible,
.launch-search-field:focus-visible,
.launch-faq-item summary:focus-visible,
.launch-link-list a:focus-visible,
.launch-back-link:focus-visible {
  outline: 3px solid #114a8a;
  outline-offset: 4px;
}

.launch-ghost-link {
  padding: 0 20px;
  color: var(--launch-purple-deep);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(76, 44, 166, 0.12);
}

.launch-download-link {
  box-shadow: 0 18px 30px rgba(60, 52, 140, 0.18);
}

.launch-download-link::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(
      112deg,
      rgba(255, 255, 255, 0) 10%,
      rgba(255, 120, 104, 0.18) 24%,
      rgba(255, 222, 105, 0.24) 42%,
      rgba(35, 215, 221, 0.2) 58%,
      rgba(117, 124, 255, 0.18) 74%,
      rgba(255, 255, 255, 0) 90%
    );
  background-size: 240% 100%;
  background-position: 120% 50%;
  opacity: 0.78;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: launch-chroma-sweep 5.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.launch-download-link:hover,
.launch-download-link:focus-visible {
  box-shadow: 0 24px 42px rgba(50, 43, 128, 0.24);
  filter: saturate(1.06);
}

.launch-ghost-link.launch-download-link {
  color: #fffef8;
  background:
    linear-gradient(135deg, rgba(33, 35, 95, 0.96), rgba(70, 34, 137, 0.95) 58%, rgba(20, 109, 154, 0.93));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 30px rgba(39, 34, 107, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-banner-area {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: 70px 0 56px;
}

.home-banner-area::after {
  content: "";
  position: absolute;
  right: -100px;
  top: 40px;
  width: min(720px, 58vw);
  height: 720px;
  border-radius: 42% 58% 56% 44% / 44% 42% 58% 56%;
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.6), transparent 18%),
    radial-gradient(circle at 74% 34%, rgba(126, 87, 255, 0.26), transparent 26%),
    linear-gradient(145deg, rgba(70, 196, 255, 0.26), rgba(39, 152, 230, 0.14));
  filter: blur(2px);
  pointer-events: none;
}

.launch-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  gap: clamp(30px, 4vw, 68px);
  align-items: center;
}

.launch-hero-copy {
  position: relative;
  min-width: 0;
  z-index: 1;
}

.launch-kicker,
.launch-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--launch-blue-deep);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(31, 93, 149, 0.09);
  box-shadow: var(--launch-shadow-soft);
}

.launch-chip {
  margin-bottom: 14px;
}

.launch-kicker {
  margin-bottom: 18px;
}

body.launch-enhanced .launch-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 460ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.launch-enhanced .launch-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.launch-marketing h1,
.launch-auth-card h1,
.launch-payout-page h1,
.launch-payout-page h2,
.launch-payout-page h3 {
  margin: 0;
  font-family: "Baloo 2", cursive;
  color: var(--launch-ink);
  overflow-wrap: anywhere;
}

.launch-hero h1 {
  max-width: 7ch;
  font-size: clamp(3.1rem, 5.5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.launch-lead {
  max-width: 36rem;
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.88;
  color: var(--launch-ink-soft);
}

.launch-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.launch-store-link {
  gap: 12px;
  min-width: 208px;
  padding: 0 20px;
  color: var(--launch-blue-deep);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 93, 149, 0.1);
  box-shadow: var(--launch-shadow-soft);
}

.launch-store-link--dark {
  color: #f8fbff;
  background: #000;
  border: 1px solid rgba(230, 240, 255, 0.14);
  box-shadow: 0 18px 30px rgba(10, 16, 31, 0.2);
}

.launch-store-link--dark:hover,
.launch-store-link--dark:focus-visible {
  box-shadow: 0 24px 34px rgba(10, 16, 31, 0.24);
}

.launch-store-link i {
  font-size: 1.25rem;
  color: var(--launch-purple-deep);
}

.launch-store-link--dark i {
  color: #f8fbff;
  text-shadow: none;
}

.launch-store-link strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
}

.launch-store-link--dark strong {
  color: #f8fbff;
}

.launch-store-link span {
  display: block;
  font-size: 0.76rem;
  color: var(--launch-ink-soft);
}

.launch-store-link--dark span {
  color: rgba(232, 240, 255, 0.76);
}

.launch-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.launch-proof-card {
  padding: 20px 18px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 93, 149, 0.09);
  box-shadow: var(--launch-shadow-soft);
}

.launch-proof-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Baloo 2", cursive;
  font-size: 1.08rem;
}

.launch-proof-card span {
  display: block;
  font-size: 0.88rem;
  line-height: 1.62;
  color: var(--launch-ink-soft);
}

@keyframes launch-chroma-sweep {
  0% {
    background-position: 120% 50%;
    opacity: 0;
  }

  18% {
    opacity: 0.74;
  }

  56% {
    background-position: -22% 50%;
    opacity: 0.86;
  }

  100% {
    background-position: -22% 50%;
    opacity: 0;
  }
}

.launch-hero-visual {
  position: relative;
  min-height: 680px;
  z-index: 1;
}

.launch-orb {
  position: absolute;
  inset: 10% auto auto 6%;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(106, 81, 255, 0.12) 0%, rgba(106, 81, 255, 0) 48%),
    radial-gradient(circle at 50% 50%, rgba(39, 152, 230, 0.15) 0%, rgba(39, 152, 230, 0) 70%);
}

.launch-phone {
  position: absolute;
  width: min(100%, 284px);
  height: auto !important;
  border-radius: 34px;
  box-shadow: 0 32px 60px rgba(18, 63, 106, 0.24);
  object-fit: contain;
}

.launch-phone--main {
  right: 15%;
  top: 14px;
  width: min(100%, 272px);
  transform: rotate(2.4deg);
  z-index: 3;
}

.launch-phone--left {
  left: 2%;
  top: 138px;
  width: min(100%, 248px);
  transform: rotate(-7deg);
  z-index: 1;
}

.launch-phone--right {
  right: 2%;
  bottom: 24px;
  width: min(100%, 232px);
  transform: rotate(8deg);
  z-index: 2;
}

.launch-section {
  padding: clamp(52px, 7vw, 88px) 0;
}

.launch-section--tight {
  padding-top: 20px;
}

.launch-section__intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.launch-section__title {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
}

.launch-section__body {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.84;
  color: var(--launch-ink-soft);
}

.launch-grid-3,
.launch-grid-2 {
  display: grid;
  gap: 18px;
  align-items: start;
}

.launch-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.launch-grid-3--steps {
  align-items: stretch;
}

.launch-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.launch-card {
  position: relative;
  padding: 30px;
  border-radius: var(--launch-radius-lg);
  background: var(--launch-surface);
  border: 1px solid var(--launch-stroke);
  box-shadow: var(--launch-shadow);
}

.launch-card--highlight {
  background: linear-gradient(180deg, rgba(255, 245, 194, 0.98), rgba(255, 229, 121, 0.96));
}

.launch-card--step {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.launch-card__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(31, 93, 149, 0.08);
  color: var(--launch-blue-deep);
}

.launch-card h3 {
  margin: 16px 0 10px;
  font-family: "Baloo 2", cursive;
  font-size: 1.5rem;
}

.launch-card p,
.launch-card li {
  color: var(--launch-ink-soft);
  line-height: 1.82;
}

.launch-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.launch-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: start;
}

.launch-step__number {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  font-family: "Baloo 2", cursive;
  font-size: 1.45rem;
  font-weight: 800;
  color: #113f29;
  background: linear-gradient(180deg, #ffe28a 0%, #f5bf34 100%);
  box-shadow: 0 14px 24px rgba(246, 201, 64, 0.24);
}

.launch-step-media {
  display: block;
  position: relative;
  width: 100%;
  height: 172px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(33, 138, 211, 0.14), rgba(33, 138, 211, 0.04)),
    linear-gradient(145deg, rgba(227, 247, 255, 0.92), rgba(255, 249, 230, 0.94));
  border: 1px solid rgba(23, 51, 78, 0.08);
  box-shadow: var(--launch-shadow-soft);
}

.launch-step-media img {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.launch-step-media--tiles img {
  object-position: center 20%;
  transform: scale(1.06);
}

.launch-step-media--zones {
  background:
    linear-gradient(180deg, rgba(14, 83, 142, 0.96), rgba(11, 62, 109, 0.98));
}

.launch-step-media--zones img {
  object-position: center 10%;
  transform: scale(1.02);
}

.launch-step-media--leaders img {
  object-position: center 6%;
  transform: scale(1.05);
}

.launch-quote {
  font-size: 1.2rem;
  line-height: 1.74;
}

.launch-stat {
  display: block;
  font-family: "Baloo 2", cursive;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
}

.launch-premium-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 20px;
  align-items: start;
}

.launch-comparison {
  display: grid;
  gap: 14px;
}

.launch-comparison__row {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
}

.launch-comparison__row:first-child {
  background: linear-gradient(180deg, rgba(36, 36, 107, 0.08), rgba(35, 215, 221, 0.08));
}

.launch-comparison__row strong {
  color: var(--launch-ink);
}

.launch-comparison__yes {
  color: var(--launch-green-deep);
  font-weight: 800;
}

.launch-comparison__no {
  color: var(--launch-ink-soft);
  font-weight: 700;
}

.launch-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: start;
}

.launch-link-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.launch-link-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(23, 51, 78, 0.08);
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.launch-link-list a:hover,
.launch-link-list a:focus {
  transform: translateY(-1px);
  border-color: rgba(76, 44, 166, 0.18);
  background: rgba(255, 255, 255, 0.9);
}

.launch-link-list a span {
  color: var(--launch-ink-soft);
}

.launch-final-cta {
  padding: 30px;
  border-radius: var(--launch-radius-xl);
  background: linear-gradient(135deg, rgba(255, 250, 230, 0.98), rgba(225, 247, 255, 0.98));
  border: 1px solid rgba(23, 51, 78, 0.08);
  box-shadow: var(--launch-shadow);
}

.launch-final-cta__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 20px;
  align-items: center;
}

.launch-marketing .footer-area {
  display: block !important;
  padding: 0 0 34px;
  background: transparent;
}

.launch-footer {
  padding: 28px;
  border-radius: var(--launch-radius-xl);
  background: linear-gradient(155deg, rgba(36, 19, 101, 0.98), rgba(17, 74, 138, 0.98));
  color: rgba(242, 248, 252, 0.92);
  box-shadow: var(--launch-shadow);
}

.launch-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(180px, 0.55fr)) minmax(220px, 0.8fr);
  gap: 22px;
  align-items: start;
}

.launch-footer__stores {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.launch-footer h4,
.launch-footer__heading {
  margin: 0 0 12px;
  font-family: "Baloo 2", cursive;
  font-size: 1rem;
  line-height: 1.15;
  color: #fffef8;
}

.launch-footer p,
.launch-footer a,
.launch-footer li {
  color: rgba(242, 248, 252, 0.78);
  line-height: 1.62;
}

.launch-footer .launch-link-list a {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fffef8;
}

.launch-footer .launch-link-list a span {
  color: rgba(242, 248, 252, 0.76);
}

.launch-footer .launch-store-link {
  width: 100%;
  justify-content: flex-start;
  box-shadow: none;
}

.launch-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.launch-footer__brand {
  max-width: 330px;
}

.launch-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
}

.launch-auth-page {
  display: grid;
  place-items: center;
  padding: 28px 16px;
}

.launch-auth-shell {
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.launch-auth-showcase,
.launch-auth-card {
  border-radius: var(--launch-radius-xl);
  border: 1px solid rgba(23, 51, 78, 0.08);
  box-shadow: var(--launch-shadow);
}

.launch-auth-showcase {
  position: relative;
  overflow: hidden;
  padding: 32px;
  background: linear-gradient(180deg, rgba(38, 25, 109, 0.96), rgba(20, 92, 160, 0.92));
  color: rgba(255, 255, 255, 0.9);
}

.launch-auth-showcase::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
}

.launch-auth-showcase .launch-brand {
  margin-bottom: 10px;
}

.launch-auth-showcase .launch-brand__lockup {
  width: clamp(185px, 19vw, 245px);
}

.launch-auth-showcase .launch-brand__mark {
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.18));
}

.launch-auth-showcase .launch-brand__ribbon {
  width: 114%;
}

.launch-auth-showcase .launch-brand__ribbon-wordmark {
  width: 67.2%;
}

.launch-auth-showcase h1 {
  margin-top: 18px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: #fffef7;
}

.launch-auth-showcase p {
  max-width: 38ch;
  margin-top: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.launch-auth-checks {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.launch-auth-checks span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.launch-auth-card {
  padding: 30px;
  background: rgba(255, 251, 239, 0.96);
}

.launch-auth-card h1 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.launch-auth-card p {
  margin: 12px 0 0;
  line-height: 1.7;
  color: var(--launch-ink-soft);
}

.launch-auth-form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.launch-auth-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--launch-ink);
}

.launch-auth-form input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(23, 51, 78, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--launch-ink);
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.launch-auth-form input:focus {
  outline: 2px solid rgba(42, 196, 110, 0.22);
  border-color: rgba(42, 196, 110, 0.4);
}

.launch-auth-form button,
.launch-payout-page button,
.launch-payout-page #done,
.launch-payout-page .b_container {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #48dc84 0%, #23c36a 100%);
  color: #10351e;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 24px rgba(42, 196, 110, 0.24);
  cursor: pointer;
}

.launch-auth-form button {
  margin-top: 8px;
}

.launch-auth-message {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(23, 51, 78, 0.05);
  color: var(--launch-ink);
  line-height: 1.6;
}

.launch-auth-message:empty {
  display: none;
}

.launch-auth-meta {
  margin-top: 18px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--launch-ink-soft);
}

.launch-auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.launch-payout-page {
  padding: 26px 16px 34px;
}

.launch-payout-page .overlay {
  background: transparent;
}

.launch-payout-page .container {
  width: min(100%, 620px);
}

.launch-payout-shell {
  position: relative;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 251, 239, 0.94);
  border: 1px solid rgba(23, 51, 78, 0.08);
  box-shadow: var(--launch-shadow);
}

.launch-payout-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.launch-payout-brand img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  box-shadow: var(--launch-shadow-soft);
}

.launch-payout-brand strong {
  display: block;
  font-family: "Baloo 2", cursive;
  font-size: 1.4rem;
}

.launch-payout-brand span {
  display: block;
  margin-top: 4px;
  color: var(--launch-ink-soft);
  font-size: 0.88rem;
}

.launch-payout-intro {
  margin-bottom: 18px;
}

.launch-payout-intro p {
  margin: 10px 0 0;
  line-height: 1.7;
  color: var(--launch-ink-soft);
}

.launch-payout-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--launch-ink);
  background: rgba(246, 201, 64, 0.22);
}

.launch-payout-page #payment_options,
.launch-payout-page .details.box,
.launch-payout-page .box.personal-box,
.launch-payout-page #complete {
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(23, 51, 78, 0.08);
  box-shadow: var(--launch-shadow-soft);
}

.launch-payout-page #payment_options h2,
.launch-payout-page .box h3,
.launch-payout-page #complete h2 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.launch-payout-page #payment_options p,
.launch-payout-page .box p,
.launch-payout-page #complete p {
  margin: 0;
  line-height: 1.7;
  color: var(--launch-ink-soft);
}

.launch-payout-methods {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.launch-payout-page #payment_options img {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 248, 223, 0.8), rgba(235, 246, 255, 0.9));
  border: 1px solid rgba(23, 51, 78, 0.08);
  box-shadow: var(--launch-shadow-soft);
}

.launch-payout-page .details,
.launch-payout-page .personal-box,
.launch-payout-page #complete {
  display: none;
  margin-top: 18px;
}

.launch-payout-page .details .inner,
.launch-payout-page .personal-box .inner {
  display: grid;
  gap: 14px;
}

.launch-payout-page .fields {
  display: grid;
  gap: 12px;
}

.launch-payout-page .fields input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(23, 51, 78, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--launch-ink);
  font-size: 1rem;
}

.launch-payout-page .fields input:focus {
  outline: 2px solid rgba(42, 196, 110, 0.22);
  border-color: rgba(42, 196, 110, 0.4);
}

.launch-payout-page .fields p {
  margin-top: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(23, 51, 78, 0.05);
  font-size: 0.88rem;
}

.launch-payout-page .b_container {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 6px;
}

.launch-payout-page .current_jackpot {
  margin-bottom: 16px;
}

.launch-payout-page .jackpot {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 78px;
  padding: 0 20px;
  border-radius: 22px;
  font-family: "Baloo 2", cursive;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #7f5610;
  background: linear-gradient(180deg, #ffe48d 0%, #f6c940 100%);
  box-shadow: 0 18px 32px rgba(246, 201, 64, 0.28);
}

.launch-payout-page .jackpot h2 {
  display: none;
}

.launch-payout-page .verify {
  max-width: 34ch;
  margin: 0 auto;
}

.launch-payout-page .sendmessage {
  margin: 18px auto 0;
  width: fit-content;
  min-height: 44px;
  color: var(--launch-ink);
  font-weight: 800;
  cursor: pointer;
}

.launch-payout-page #complete_image,
.launch-payout-page .crown {
  max-width: 180px;
  margin: 8px auto 0;
}

.launch-payout-page #back-to-home {
  max-width: 220px;
  margin-top: 18px;
}

.launch-page-main {
  padding: 40px 0 80px;
}

.launch-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}

.launch-page-hero--single {
  grid-template-columns: 1fr;
}

.launch-page-hero__visual {
  position: relative;
  display: grid;
  place-items: center;
}

.launch-page-hero__visual img {
  display: block;
  width: min(100%, 390px);
  height: auto !important;
  object-fit: contain;
  border-radius: 30px;
  box-shadow: var(--launch-shadow);
}

.launch-page-hero__copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
}

.launch-page-hero__copy,
.launch-page-hero__visual {
  min-width: 0;
}

.launch-page-hero__copy p {
  max-width: 58ch;
  margin: 16px 0 0;
  font-size: 1.02rem;
  line-height: 1.86;
  color: var(--launch-ink-soft);
}

.launch-page-grid {
  display: grid;
  gap: 18px;
  align-items: start;
}

.launch-page-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.launch-prose-card {
  padding: 28px;
  border-radius: var(--launch-radius-lg);
  background: rgba(255, 251, 239, 0.94);
  border: 1px solid var(--launch-stroke);
  box-shadow: var(--launch-shadow-soft);
}

.launch-prose-card h2,
.launch-prose-card h3 {
  margin: 0 0 14px;
  font-family: "Baloo 2", cursive;
  color: var(--launch-ink);
}

.launch-prose-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.launch-prose-card h3 {
  font-size: 1.3rem;
}

.launch-prose-card p,
.launch-prose-card li {
  color: var(--launch-ink-soft);
  line-height: 1.84;
}

.launch-prose-card p:last-child,
.launch-prose-card li:last-child {
  margin-bottom: 0;
}

.launch-prose-card ul,
.launch-prose-card ol {
  margin: 14px 0 0;
  padding-left: 20px;
}

.launch-prose-card--gold {
  background: linear-gradient(180deg, rgba(255, 247, 214, 0.98), rgba(255, 239, 188, 0.98));
}

.launch-prose-card--blue {
  background: linear-gradient(180deg, rgba(235, 248, 255, 0.98), rgba(221, 241, 255, 0.98));
}

.launch-prose-card--ink {
  background: linear-gradient(180deg, rgba(21, 83, 146, 0.96), rgba(15, 110, 165, 0.96));
  border-color: rgba(165, 227, 255, 0.24);
  color: rgba(255, 255, 255, 0.94);
}

.launch-prose-card--ink h2,
.launch-prose-card--ink h3,
.launch-prose-card--ink strong {
  color: #fffef8;
}

.launch-prose-card--ink p,
.launch-prose-card--ink li {
  color: #f4fbff;
}

.launch-prose-card--ink .launch-callout,
.launch-prose-card--ink .launch-step-card {
  background: rgba(255, 253, 247, 0.94);
  border-color: rgba(23, 51, 78, 0.12);
  color: var(--launch-ink);
}

.launch-prose-card--ink .launch-callout strong,
.launch-prose-card--ink .launch-step-card h3 {
  color: var(--launch-ink);
}

.launch-prose-card--ink .launch-callout p,
.launch-prose-card--ink .launch-callout li,
.launch-prose-card--ink .launch-step-card p,
.launch-prose-card--ink .launch-step-card li {
  color: var(--launch-ink-soft);
}

.launch-page-hero__badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  min-width: 180px;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 229, 112, 0.98), rgba(255, 206, 61, 0.98));
  color: #8e3d00;
  box-shadow: 0 20px 36px rgba(138, 87, 0, 0.22);
}

.launch-page-hero__badge span,
.launch-page-hero__badge small {
  display: block;
}

.launch-page-hero__badge span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launch-page-hero__badge strong {
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
  line-height: 1;
}

.launch-page-hero__badge small {
  color: rgba(101, 44, 0, 0.82);
  font-size: 0.82rem;
  line-height: 1.4;
}

.launch-fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.launch-fact-chip {
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 51, 78, 0.08);
  box-shadow: var(--launch-shadow-soft);
}

.launch-fact-chip strong,
.launch-fact-chip span {
  display: block;
}

.launch-fact-chip strong {
  margin-bottom: 10px;
  font-family: "Baloo 2", cursive;
  font-size: 1.5rem;
  color: var(--launch-ink);
}

.launch-fact-chip span {
  line-height: 1.74;
  color: var(--launch-ink-soft);
}

.launch-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.launch-tier-card {
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 251, 239, 0.98), rgba(239, 248, 255, 0.94));
  border: 1px solid rgba(23, 51, 78, 0.08);
  box-shadow: var(--launch-shadow-soft);
}

.launch-tier-card--premium {
  background: linear-gradient(180deg, rgba(255, 233, 127, 0.98), rgba(255, 211, 63, 0.98));
  color: #7a3000;
}

.launch-tier-card--premium .launch-tier-card__label,
.launch-tier-card--premium .launch-tier-card__note,
.launch-tier-card--premium .launch-tier-card__amount {
  color: inherit;
}

.launch-tier-card__label,
.launch-tier-card__amount,
.launch-tier-card__note {
  display: block;
}

.launch-tier-card__label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--launch-ink-soft);
}

.launch-tier-card__amount {
  margin-top: 14px;
  font-family: "Baloo 2", cursive;
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  line-height: 0.94;
  color: var(--launch-ink);
}

.launch-tier-card__note {
  margin-top: 12px;
  line-height: 1.74;
  color: var(--launch-ink-soft);
}

.launch-rank-list {
  display: grid;
  gap: 12px;
}

.launch-rank-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(90px, 0.8fr) minmax(110px, 0.9fr);
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.launch-rank-row--you {
  background: rgba(118, 245, 187, 0.2);
  border-color: rgba(118, 245, 187, 0.34);
}

.launch-rank-row__place {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  font-family: "Baloo 2", cursive;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f5585;
  background: linear-gradient(180deg, rgba(167, 233, 255, 0.98), rgba(92, 196, 241, 0.98));
}

.launch-rank-row__name,
.launch-rank-row__score,
.launch-rank-row__prize {
  display: block;
}

.launch-rank-row__name {
  font-weight: 800;
  letter-spacing: 0.01em;
}

.launch-rank-row__score,
.launch-rank-row__prize {
  font-family: "Baloo 2", cursive;
  font-size: 1.05rem;
  text-align: right;
}

.launch-rank-row__prize {
  color: #fff4af;
}

.launch-highlight-band {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(15, 111, 165, 0.96), rgba(12, 88, 145, 0.98));
  border: 1px solid rgba(165, 227, 255, 0.24);
  box-shadow: var(--launch-shadow);
  color: rgba(255, 255, 255, 0.9);
}

.launch-highlight-band h2,
.launch-highlight-band p {
  margin: 0;
}

.launch-highlight-band h2 {
  font-family: "Baloo 2", cursive;
  color: #fffef8;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.03;
}

.launch-highlight-band p {
  max-width: 60ch;
  line-height: 1.84;
  color: #f4fbff;
}

.launch-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.launch-callout-list {
  display: grid;
  gap: 14px;
}

.launch-callout {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 51, 78, 0.08);
}

.launch-callout strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Baloo 2", cursive;
  font-size: 1.02rem;
  color: var(--launch-ink);
}

.launch-step-stack {
  display: grid;
  gap: 18px;
}

.launch-step-card {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 51, 78, 0.08);
  box-shadow: var(--launch-shadow-soft);
}

.launch-step-card__number {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 20px;
  font-family: "Baloo 2", cursive;
  font-size: 1.55rem;
  font-weight: 800;
  color: #113f29;
  background: linear-gradient(180deg, #ffe28a 0%, #f5bf34 100%);
  box-shadow: 0 14px 24px rgba(246, 201, 64, 0.2);
}

.launch-step-card h3 {
  margin: 0 0 10px;
  font-family: "Baloo 2", cursive;
  font-size: 1.35rem;
}

.launch-step-card p,
.launch-step-card li {
  color: var(--launch-ink-soft);
  line-height: 1.84;
}

.launch-step-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.launch-faq-list {
  display: grid;
  gap: 14px;
}

.launch-faq-toolbar {
  display: grid;
  gap: 12px;
  margin: 0 0 20px;
}

.launch-search-field {
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 20px;
  border: 1px solid rgba(76, 44, 166, 0.14);
  background: rgba(255, 255, 255, 0.82);
  color: var(--launch-ink);
  box-shadow: var(--launch-shadow-soft);
}

.launch-search-status {
  font-size: 0.9rem;
  color: var(--launch-ink-soft);
}

.launch-faq-item {
  border-radius: 22px;
  background: rgba(255, 251, 239, 0.94);
  border: 1px solid rgba(23, 51, 78, 0.08);
  box-shadow: var(--launch-shadow-soft);
  overflow: hidden;
}

.launch-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  color: var(--launch-ink);
}

.launch-faq-item summary::-webkit-details-marker {
  display: none;
}

.launch-faq-item summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  font-family: "Baloo 2", cursive;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--launch-purple-deep);
  background: rgba(76, 44, 166, 0.08);
}

.launch-faq-item[open] summary::after {
  content: "-";
}

.launch-faq-item__question {
  margin: 0;
  display: block;
  font-family: "Baloo 2", cursive;
  font-size: 1.1rem;
  line-height: 1.12;
  font-weight: 800;
}

.launch-faq-item[open] summary {
  border-bottom: 1px solid rgba(23, 51, 78, 0.08);
}

.launch-faq-item[hidden] {
  display: none;
}

.launch-faq-item__body {
  padding: 18px 22px 20px;
}

.launch-faq-item__body p,
.launch-faq-item__body li {
  margin: 0;
  color: var(--launch-ink-soft);
  line-height: 1.75;
}

.launch-faq-item__body ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.launch-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.88fr);
  gap: 18px;
  align-items: start;
}

.launch-contact-form {
  display: grid;
  gap: 14px;
}

.launch-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.launch-contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

.launch-contact-form input,
.launch-contact-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(23, 51, 78, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--launch-ink);
  font-size: 1rem;
}

.launch-contact-form textarea {
  min-height: 180px;
  padding-top: 16px;
  resize: vertical;
}

.launch-contact-form input:focus,
.launch-contact-form textarea:focus {
  outline: 2px solid rgba(42, 196, 110, 0.22);
  border-color: rgba(42, 196, 110, 0.4);
}

.launch-status {
  padding: 16px 18px;
  border-radius: 18px;
  line-height: 1.6;
  background: rgba(42, 196, 110, 0.12);
  color: #0d6c3b;
}

.launch-status--error {
  background: rgba(210, 72, 48, 0.12);
  color: #943321;
}

.launch-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 700;
  color: var(--launch-purple-deep);
  text-decoration: none;
}

.launch-back-link:hover,
.launch-back-link:focus {
  color: var(--launch-ink);
}

.launch-legal-prose {
  display: grid;
  gap: 18px;
}

.launch-legal-prose section {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(23, 51, 78, 0.08);
}

.launch-legal-prose--synced section {
  overflow-x: auto;
}

.launch-legal-prose section h3 {
  margin: 0 0 12px;
  font-family: "Baloo 2", cursive;
}

.launch-legal-prose section h4 {
  margin: 18px 0 10px;
  font-family: "Baloo 2", cursive;
  font-size: 1.1rem;
  color: var(--launch-ink);
}

.launch-legal-prose section p,
.launch-legal-prose section li {
  color: var(--launch-ink-soft);
  line-height: 1.84;
}

.launch-legal-prose section p:last-child,
.launch-legal-prose section li:last-child {
  margin-bottom: 0;
}

.launch-legal-prose section ul,
.launch-legal-prose section ol {
  margin: 14px 0 0;
  padding-left: 20px;
}

.launch-legal-eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--launch-purple-deep);
}

.launch-legal-sync-meta {
  margin-top: 18px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--launch-ink);
}

.launch-legal-table {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
}

.launch-legal-table th,
.launch-legal-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(23, 51, 78, 0.08);
}

.launch-legal-table th {
  font-family: "Baloo 2", cursive;
  font-size: 1rem;
  color: var(--launch-ink);
  background: rgba(255, 247, 214, 0.9);
}

.launch-legal-table td {
  color: var(--launch-ink-soft);
  line-height: 1.7;
}

.launch-legal-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 1080px) {
  .launch-hero,
  .launch-final-cta__layout,
  .launch-premium-layout,
  .launch-support-grid,
  .launch-auth-shell,
  .launch-footer__grid,
  .launch-page-hero,
  .launch-contact-layout {
    grid-template-columns: 1fr;
  }

  .launch-section__intro {
    display: grid;
  }

  .launch-hero-visual {
    min-height: 560px;
    margin-top: 18px;
  }
}

@media (max-width: 920px) {
  .launch-marketing #nav-menu-container {
    position: relative;
    flex-wrap: nowrap;
    gap: 16px;
  }

  .launch-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .launch-nav-shell {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(155deg, rgba(36, 19, 101, 0.98), rgba(17, 74, 138, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
      0 18px 30px rgba(13, 21, 36, 0.14),
      0 34px 52px rgba(13, 21, 36, 0.24);
  }

  .launch-nav-shell.is-open {
    display: flex;
  }

  .launch-marketing .nav-menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
  }

  .launch-marketing .nav-menu a {
    min-height: 48px;
    padding: 0 14px;
    border-radius: 16px;
    justify-content: space-between;
    color: rgba(242, 248, 252, 0.86);
  }

  .launch-marketing .nav-menu li.menu-active a,
  .launch-marketing .nav-menu a:hover,
  .launch-marketing .nav-menu a:focus {
    color: #fffef8;
    background: rgba(255, 255, 255, 0.12);
  }

  .launch-marketing .nav-menu li.menu-active a::after,
  .launch-marketing .nav-menu a:hover::after,
  .launch-marketing .nav-menu a:focus::after {
    display: none;
  }

  .launch-marketing .nav-menu a:focus-visible,
  .launch-header-actions .launch-button:focus-visible {
    outline-color: #ffd948;
  }

  .launch-header-actions {
    width: 100%;
  }

  .launch-header-actions .launch-button {
    width: 100%;
  }

  .launch-grid-3,
  .launch-grid-2,
  .launch-hero-proof,
  .launch-page-grid--two,
  .launch-fact-grid,
  .launch-tier-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .launch-container {
    width: min(calc(100% - 20px), var(--launch-max));
  }

  .home-banner-area {
    padding: 30px 0 42px;
  }

  .launch-marketing .main-menu {
    padding: 12px 0;
  }

  .launch-page-main {
    padding: 28px 0 60px;
  }

  .launch-section {
    padding: 40px 0;
  }

  .launch-hero h1 {
    max-width: none;
  }

  .launch-hero {
    gap: 22px;
  }

  .launch-section__intro {
    gap: 16px;
    margin-bottom: 24px;
  }

  .launch-section__title,
  .launch-page-hero__copy h1 {
    line-height: 1.08;
  }

  .launch-page-hero__copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.45rem);
    max-width: 8.4ch;
  }

  .launch-page-hero--support .launch-page-hero__visual {
    display: none;
  }

  .launch-page-hero--support .launch-page-hero__copy p {
    max-width: none;
  }

  .launch-lead,
  .launch-section__body,
  .launch-page-hero__copy p {
    line-height: 1.72;
  }

  .launch-hero-visual {
    min-height: 340px;
    margin-top: 8px;
    overflow: clip;
  }

  .launch-orb {
    inset: 8% auto auto 0;
    width: 88%;
  }

  .launch-phone {
    width: min(60vw, 220px);
  }

  .launch-phone--main {
    left: 50%;
    right: auto;
    top: 6px;
    width: min(62vw, 226px);
    transform: translateX(-50%) rotate(2deg);
  }

  .launch-phone--left,
  .launch-phone--right {
    display: none;
  }

  .launch-brand__lockup {
    width: 132px;
  }

  .launch-cta-row,
  .launch-inline-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .launch-inline-actions > *,
  .launch-cta-row > .launch-button,
  .launch-cta-row > .launch-ghost-link {
    width: 100%;
    grid-column: 1 / -1;
  }

  .launch-store-link {
    min-width: 0;
    width: 100%;
    justify-content: flex-start;
    min-height: 56px;
    padding: 0 14px;
    gap: 8px;
  }

  .launch-cta-row > .launch-store-link {
    grid-column: auto;
  }

  .launch-store-link strong {
    font-size: 0.88rem;
    line-height: 1.05;
  }

  .launch-store-link span {
    font-size: 0.68rem;
    line-height: 1.12;
  }

  .launch-auth-card,
  .launch-auth-showcase,
  .launch-payout-shell,
  .launch-card,
  .launch-final-cta,
  .launch-footer,
  .launch-prose-card,
  .launch-legal-prose section {
    padding: 22px;
  }

  .launch-step-card {
    grid-template-columns: 1fr;
  }

  .launch-step-media {
    height: 156px;
    border-radius: 20px;
  }

  .launch-link-list a {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 18px;
  }

  .launch-link-list a span {
    display: block;
  }

  .launch-comparison__row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
  }

  .launch-comparison__row:first-child {
    display: none;
  }

  .launch-comparison__row span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
  }

  .launch-comparison__row span::before {
    font-weight: 800;
    color: var(--launch-ink);
  }

  .launch-comparison__row .launch-comparison__no::before {
    content: "Standard";
  }

  .launch-comparison__row .launch-comparison__yes::before {
    content: "Premium";
  }

  .launch-rank-row {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
  }

  .launch-rank-row__score,
  .launch-rank-row__prize {
    text-align: left;
  }

  .launch-rank-row__score,
  .launch-rank-row__prize,
  .launch-rank-row__name {
    grid-column: 2;
  }

  .launch-page-hero__visual img {
    width: min(100%, 320px);
  }

  .launch-page-hero__badge {
    position: static;
    margin-top: 16px;
    min-width: 0;
    width: 100%;
    max-width: 260px;
    justify-self: center;
    text-align: center;
  }

  .launch-payout-page {
    padding: 16px 10px 28px;
  }

  .launch-payout-page .container {
    width: 100%;
  }

  .launch-inline-note {
    display: none;
  }

  .launch-footer__legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .launch-footer__stores {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.no-js .launch-nav-toggle {
  display: none;
}

@media (max-width: 920px) {
  .no-js .launch-nav-shell {
    position: static;
    display: flex;
    width: 100%;
    margin-top: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body.launch-enhanced .launch-reveal {
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  #header .launch-brand:hover .launch-brand__lockup,
  #header .launch-brand:focus-visible .launch-brand__lockup {
    transform: none;
  }
}
