:root {
  --bg: #fff8fb;
  --panel: #ffffff;
  --panel-2: #fbf6ff;
  --ink: #18101f;
  --muted: #655b70;
  --purple: #8737c7;
  --purple-dark: #5c18a6;
  --purple-soft: rgba(135, 55, 199, 0.1);
  --gold: #ffd12f;
  --line: rgba(92, 24, 166, 0.14);
  --logo-pair-size: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 209, 47, 0.28), transparent 34%),
    radial-gradient(circle at 84% 24%, rgba(135, 55, 199, 0.13), transparent 30%),
    linear-gradient(180deg, #fff 0%, var(--bg) 70%, #fff0f8 100%);
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.wrap {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  padding: 16px 12px 28px;
}

.desktop-notice {
  display: none;
}

.desktop-notice div {
  width: min(420px, calc(100vw - 48px));
  padding: 32px 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 209, 47, 0.16), transparent 48%),
    var(--panel);
  box-shadow: 0 24px 70px rgba(92, 24, 166, 0.18);
  text-align: center;
}

.desktop-notice img {
  width: 112px;
  height: 112px;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(92, 24, 166, 0.22);
}

.desktop-notice h1 {
  margin: 18px 0 0;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 900;
}

.desktop-notice p {
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
}

.lander {
  width: min(420px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 209, 47, 0.12), transparent 42%),
    var(--panel);
  box-shadow: 0 24px 70px rgba(92, 24, 166, 0.16);
}

.lander.is-entering {
  animation: landerPop 520ms cubic-bezier(0.18, 0.9, 0.25, 1.12);
}

.lander[hidden] {
  display: none;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 18px 14px;
}

.logo-pair {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: var(--logo-pair-size);
}

.logo-link {
  display: inline-flex;
  border-radius: 26px;
  text-decoration: none;
}

.logo-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.pair-logo {
  display: block;
  width: var(--logo-pair-size);
  height: var(--logo-pair-size);
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(92, 24, 166, 0.22);
}

.solo-logo {
  width: 116px;
  height: 116px;
  border-radius: 26px;
}

.hero {
  padding: 8px 22px 14px;
  text-align: center;
}

.label {
  margin: 0 0 10px;
  color: var(--purple-dark);
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.title-line {
  display: block;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.title-line-accent {
  color: var(--purple);
}

.hero h1 em {
  color: var(--ink);
  font-style: normal;
}

.intro {
  width: min(310px, 100%);
  margin: 13px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.access-card {
  margin: 8px 18px 10px;
  padding: 15px;
  border: 1px solid rgba(135, 55, 199, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(135, 55, 199, 0.08), rgba(255, 209, 47, 0.08)),
    var(--panel-2);
}

.status {
  margin: 0;
  color: var(--purple);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.access-card h2 {
  margin: 6px 0 0;
  color: var(--ink);
  text-align: center;
  font-size: 25px;
  line-height: 1.12;
  font-weight: 900;
}

.access-card > p:not(.status) {
  margin: 8px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  line-height: 1.45;
}

.options {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.options div {
  padding: 10px 12px;
  border: 1px solid rgba(135, 55, 199, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.options strong,
.options span {
  display: block;
}

.options strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.options span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.35;
}

.journey {
  padding: 0 18px 28px;
}

.steps {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(135, 55, 199, 0.14);
  background: var(--purple-soft);
}

.step {
  display: flex;
  gap: 12px;
  min-height: 66px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(135, 55, 199, 0.12);
}

.step:last-child {
  border-bottom: 0;
}

.num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--purple-dark);
  background: var(--gold);
  font-weight: 900;
}

.step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.step p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.cta {
  padding: 8px 22px 12px;
  text-align: center;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 66px;
  padding: 12px 16px;
  border-radius: 16px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(135deg, var(--purple), var(--purple-dark));
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  box-shadow:
    0 16px 30px rgba(92, 24, 166, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: background 160ms ease, transform 160ms ease;
}

.btn-text {
  display: block;
}

.btn-arrow {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--purple-dark);
  background: var(--gold);
  font-size: 20px;
  line-height: 1;
}

.btn:hover,
.btn:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(135deg, #953ee0, var(--purple-dark));
  transform: translateY(-1px);
  outline: none;
}

.micro {
  width: min(310px, 100%);
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

@media (min-width: 760px) {
  .desktop-notice {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
  }

  .wrap {
    display: none;
  }

  .wrap {
    place-items: center;
    padding: 32px 24px;
  }

  .lander {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    grid-template-areas:
      "brand brand"
      "hero access"
      "cta access"
      "journey journey";
    column-gap: 22px;
    width: min(900px, calc(100vw - 48px));
    border-radius: 26px;
  }

  .brand {
    grid-area: brand;
    padding-top: 24px;
  }

  .hero {
    grid-area: hero;
    align-self: center;
    padding: 34px 28px 20px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .access-card {
    grid-area: access;
    align-self: center;
    margin: 28px 28px 22px 0;
    padding: 24px;
  }

  .journey {
    grid-area: journey;
    padding: 0 28px 30px;
  }

  .cta {
    grid-area: cta;
    padding: 18px 28px 14px;
  }
}

@media (max-width: 380px) {
  :root {
    --logo-pair-size: 72px;
  }

  .pair-logo {
    border-radius: 16px;
  }

  .solo-logo {
    width: 98px;
    height: 98px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .access-card h2 {
    font-size: 25px;
  }
}

@media (max-width: 520px) {
  .wrap {
    padding: 8px 10px 24px;
  }

  .brand {
    padding: 10px 18px 4px;
  }

  .solo-logo {
    width: 92px;
    height: 92px;
    border-radius: 22px;
  }

  .hero {
    padding: 2px 18px 6px;
  }

  .hero h1 {
    font-size: clamp(25px, 6.2vw, 28px);
  }

  .intro {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.35;
  }

  .access-card {
    margin: 6px 14px 8px;
    padding: 12px;
    border-radius: 16px;
  }

  .status {
    font-size: 11px;
  }

  .access-card h2 {
    font-size: 22px;
  }

  .access-card > p:not(.status) {
    font-size: 12px;
    line-height: 1.35;
  }

  .options {
    gap: 7px;
    margin-top: 8px;
  }

  .options div {
    padding: 8px 10px;
  }

  .options strong {
    font-size: 12px;
  }

  .options span {
    font-size: 10.5px;
    line-height: 1.28;
  }

  .cta {
    padding: 6px 18px 10px;
  }

  .btn {
    min-height: 62px;
    padding: 10px 12px;
    font-size: 12.5px;
    letter-spacing: 0;
  }

  .btn-arrow {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }

  .micro {
    margin-top: 7px;
    font-size: 10.5px;
  }
}

@media (max-width: 380px) {
  .solo-logo {
    width: 86px;
    height: 86px;
  }

  .hero h1 {
    font-size: clamp(23px, 6.5vw, 25px);
  }
}

@keyframes landerPop {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.94);
  }

  62% {
    opacity: 1;
    transform: translateY(-4px) scale(1.015);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lander.is-entering {
    animation: none;
  }
}
