:root {
  --prelaunch-ink: #06111f;
  --prelaunch-ink-soft: #314155;
  --prelaunch-muted: #64748b;
  --prelaunch-teal: #16c2b5;
  --prelaunch-teal-dark: #0f9f98;
  --prelaunch-blue: #031b45;
  --prelaunch-bg: #ffffff;
  --prelaunch-bg-soft: #f6f8fb;
  --prelaunch-line: rgba(6, 17, 31, 0.1);
  --prelaunch-card: #ffffff;
  --prelaunch-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.prelaunch-page {
  margin: 0;
  min-width: 320px;
  color: var(--prelaunch-ink);
  background:
    radial-gradient(circle at 82% 4%, rgba(22, 194, 181, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 58%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.prelaunch-page a {
  color: inherit;
}

.prelaunch-page img {
  display: block;
  max-width: 100%;
}

.prelaunch-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.prelaunch-nav {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--prelaunch-line);
  backdrop-filter: blur(18px);
}

.prelaunch-nav__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.prelaunch-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--prelaunch-ink);
  text-decoration: none;
}

.prelaunch-brand__mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.prelaunch-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prelaunch-brand__name {
  color: var(--prelaunch-ink);
  font-size: clamp(1.32rem, 5vw, 1.58rem);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.prelaunch-contact {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(6, 17, 31, 0.14);
  border-radius: 999px;
  color: var(--prelaunch-ink);
  background: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.prelaunch-hero {
  padding: 40px 0 54px;
  overflow: hidden;
}

.prelaunch-hero__grid {
  display: grid;
  gap: 30px;
  align-items: center;
}

.prelaunch-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(22, 194, 181, 0.38);
  border-radius: 999px;
  color: #08746f;
  background: rgba(22, 194, 181, 0.1);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.prelaunch-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--prelaunch-teal);
  box-shadow: 0 0 0 5px rgba(22, 194, 181, 0.12);
}

.prelaunch-hero h1 {
  max-width: 760px;
  margin: 18px 0 16px;
  color: var(--prelaunch-ink);
  font-size: clamp(2.55rem, 10.5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.prelaunch-lead {
  max-width: 660px;
  margin: 0;
  color: var(--prelaunch-ink-soft);
  font-size: clamp(1.04rem, 3vw, 1.22rem);
}

.prelaunch-actions {
  display: grid;
  gap: 11px;
  margin-top: 28px;
}

.prelaunch-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.prelaunch-page .prelaunch-btn--primary {
  color: #ffffff;
  background: var(--prelaunch-ink);
  box-shadow: 0 14px 34px rgba(6, 17, 31, 0.18);
}

.prelaunch-page .prelaunch-btn--secondary {
  border: 1px solid rgba(6, 17, 31, 0.14);
  color: var(--prelaunch-ink);
  background: #ffffff;
}

.prelaunch-small {
  margin: 16px 0 0;
  color: var(--prelaunch-muted);
  font-size: 0.91rem;
}

.prelaunch-small a {
  color: var(--prelaunch-blue);
  font-weight: 800;
  text-underline-offset: 3px;
}

.prelaunch-visual {
  position: relative;
  padding: clamp(8px, 2vw, 12px);
  overflow: hidden;
  border: 1px solid rgba(6, 17, 31, 0.08);
  border-radius: clamp(20px, 5vw, 30px);
  background: #ffffff;
  box-shadow: var(--prelaunch-shadow);
}

.prelaunch-visual::after {
  content: "";
  position: absolute;
  inset: auto 14% -24% 14%;
  height: 44%;
  background: rgba(22, 194, 181, 0.18);
  filter: blur(58px);
  pointer-events: none;
}

.prelaunch-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: clamp(14px, 4vw, 22px);
  background: var(--prelaunch-blue);
}

.prelaunch-audience {
  padding: 0 0 52px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0) 0%, #f8fafc 100%);
}

.prelaunch-audience__box {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 5vw, 34px);
  border: 1px solid rgba(6, 17, 31, 0.08);
  border-radius: clamp(20px, 5vw, 28px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.07);
}

.prelaunch-audience__copy {
  max-width: 720px;
}

.prelaunch-audience h2 {
  margin: 0;
  color: var(--prelaunch-ink);
  font-size: clamp(1.85rem, 7vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.prelaunch-audience p {
  margin: 14px 0 0;
  color: var(--prelaunch-ink-soft);
  font-size: clamp(1rem, 2.6vw, 1.13rem);
}

.prelaunch-audience__support {
  color: var(--prelaunch-muted);
}

.prelaunch-audience__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.prelaunch-audience__chips li {
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(22, 194, 181, 0.28);
  border-radius: 999px;
  color: var(--prelaunch-ink);
  background: rgba(22, 194, 181, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.15;
  white-space: normal;
}

.prelaunch-section {
  padding: 58px 0;
  border-top: 1px solid var(--prelaunch-line);
  background: var(--prelaunch-bg-soft);
}

.prelaunch-kicker {
  margin: 0 0 9px;
  color: #08746f;
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.prelaunch-section h2 {
  max-width: 650px;
  margin: 0;
  color: var(--prelaunch-ink);
  font-size: clamp(2rem, 8vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.prelaunch-benefits {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.prelaunch-card {
  padding: 22px;
  border: 1px solid rgba(6, 17, 31, 0.08);
  border-radius: 18px;
  background: var(--prelaunch-card);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.prelaunch-card__number {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  color: #08746f;
  background: rgba(22, 194, 181, 0.12);
  font-size: 0.82rem;
  font-weight: 900;
}

.prelaunch-card h3 {
  margin: 15px 0 8px;
  color: var(--prelaunch-ink);
  font-size: 1.16rem;
}

.prelaunch-card p {
  margin: 0;
  color: var(--prelaunch-muted);
  font-size: 0.96rem;
}

.prelaunch-close {
  padding: 64px 0 72px;
  text-align: center;
  background: #ffffff;
}

.prelaunch-close__box {
  padding: 34px 22px;
  border: 1px solid rgba(6, 17, 31, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(22, 194, 181, 0.12), transparent 22rem),
    #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.prelaunch-close h2 {
  margin: 0;
  color: var(--prelaunch-ink);
  font-size: clamp(2rem, 8vw, 3.2rem);
  letter-spacing: -0.045em;
}

.prelaunch-close p {
  margin: 10px auto 24px;
  color: var(--prelaunch-muted);
}

.prelaunch-close__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.prelaunch-close__links a {
  color: var(--prelaunch-blue);
  font-weight: 800;
  text-underline-offset: 4px;
}

.prelaunch-footer {
  border-top: 1px solid var(--prelaunch-line);
  color: var(--prelaunch-muted);
  background: #ffffff;
  font-size: 0.82rem;
}

.prelaunch-footer__inner {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  padding: 18px 0;
}

.prelaunch-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.prelaunch-footer a {
  color: var(--prelaunch-ink);
  text-decoration: none;
}

@media (hover: hover) {
  .prelaunch-btn:hover,
  .prelaunch-contact:hover {
    transform: translateY(-2px);
  }

  .prelaunch-page .prelaunch-btn--primary:hover {
    background: var(--prelaunch-teal-dark);
  }

  .prelaunch-btn--secondary:hover,
  .prelaunch-contact:hover {
    border-color: rgba(22, 194, 181, 0.48);
  }
}

@media (min-width: 700px) {
  .prelaunch-shell {
    width: min(1120px, calc(100% - 56px));
  }

  .prelaunch-actions {
    display: flex;
    align-items: center;
  }

  .prelaunch-btn {
    width: auto;
  }

  .prelaunch-benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .prelaunch-audience__box {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
    align-items: center;
  }

  .prelaunch-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 920px) {
  .prelaunch-hero {
    min-height: 660px;
    display: flex;
    align-items: center;
    padding: 72px 0 80px;
  }

  .prelaunch-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 58px;
  }

  .prelaunch-hero h1 {
    font-size: clamp(3.6rem, 6vw, 5.25rem);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .prelaunch-hero__copy {
    animation: prelaunch-rise 0.6s ease-out both;
  }

  .prelaunch-visual {
    animation: prelaunch-rise 0.7s 0.08s ease-out both;
  }

  @keyframes prelaunch-rise {
    from {
      opacity: 0;
      transform: translateY(14px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
