:root {
  --navy: #12145c;
  --navy-soft: #33376f;
  --purple: #6c55e6;
  --purple-2: #9b66eb;
  --coral: #ff6352;
  --card: rgba(255, 255, 255, 0.88);
  --shadow: 0 18px 45px rgba(45, 40, 98, 0.12);
  --small-shadow: 0 10px 25px rgba(45, 40, 98, 0.10);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1138px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Arial Rounded MT Bold", "Nunito", "Trebuchet MS", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background:
    radial-gradient(circle at 82% 5%, rgba(193, 232, 255, 0.62), transparent 27rem),
    radial-gradient(circle at 4% 90%, rgba(206, 229, 202, 0.65), transparent 16rem),
    linear-gradient(180deg, #fffdfa 0%, #fffaf5 50%, #f7f5ff 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(0.2px);
  z-index: -1;
}

body::before {
  width: 15rem;
  height: 15rem;
  right: -6rem;
  bottom: 10rem;
  background: radial-gradient(circle, rgba(255, 207, 111, .45), transparent 70%);
}

body::after {
  width: 20rem;
  height: 20rem;
  left: -10rem;
  top: 21rem;
  background: radial-gradient(circle, rgba(164, 228, 183, .34), transparent 70%);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.page-shell {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
  padding-top: 34px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 56px;
  margin-bottom: 42px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  line-height: 0.82;
  font-size: clamp(2.25rem, 5.3vw, 3.65rem);
  font-weight: 1000;
  letter-spacing: -0.095em;
  text-shadow: 0 4px 10px rgba(46, 42, 111, 0.08);
}

.logo span {
  display: inline-block;
  transform: translateZ(0);
}

.logo .m { color: #ff6754; }
.logo .e { color: #ffae36; }
.logo .l { color: #68c88d; }
.logo .o { color: #4dbaa6; }
.logo .k { color: #7361dc; margin-left: .15em; }
.logo .i { color: #725ae7; }
.logo .d { color: #6774e8; }
.logo .s { color: #6e61d9; }

.hero {
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(470px, 1.1fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  min-height: 635px;
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}

.status-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 13px 23px;
  margin-bottom: 27px;
  border-radius: 999px;
  font-size: 1.06rem;
  font-weight: 800;
  color: #6e4eda;
  background: linear-gradient(180deg, rgba(249, 242, 255, .97), rgba(240, 231, 255, .95));
  box-shadow: var(--small-shadow), inset 0 1px 1px rgba(255,255,255,.9);
}

.tool-icon {
  font-size: 1.28rem;
  line-height: 1;
}

h1 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(3.8rem, 5.6vw, 5.3rem);
  line-height: 1;
  letter-spacing: -0.020em;
  color: #090b61;
  font-weight: 1000;
}

h1 span {
  display: block;
  width: max-content;
  max-width: 100%;
  padding-bottom: .08em;
  margin-bottom: -.08em;
  background: linear-gradient(92deg, #cf55ce 0%, #8d63ef 48%, #6b71f3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 470px;
  margin: 18px 0 23px;
  color: #555d8d;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.6;
}

.actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.button {
  min-height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding-inline: 28px;
  border-radius: 17px;
  font-size: 1.07rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: var(--small-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 32px rgba(45, 40, 98, 0.15);
}

.button svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.button-primary {
  color: #fff;
  background: linear-gradient(180deg, #ff7060 0%, #ff5847 100%);
}

.button-secondary {
  min-width: 170px;
  color: #161a69;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(213, 217, 240, .95);
}

.email-form {
  display: grid;
  grid-template-columns: 50px 1fr 72px;
  align-items: center;
  width: min(100%, 460px);
  height: 61px;
  border-radius: 17px;
  overflow: hidden;
  background: rgba(255,255,255,.94);
  box-shadow: var(--small-shadow);
  border: 1px solid rgba(225, 226, 243, .85);
}

.email-form .mail-icon {
  width: 21px;
  height: 21px;
  justify-self: center;
  fill: #a7a8c5;
}

.email-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--navy);
  background: transparent;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 650;
}

.email-form input::placeholder {
  color: #9b9fbc;
}

.email-form button {
  width: 72px;
  height: 61px;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #735de6 0%, #644de2 100%);
}

.email-form button svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.email-form button:disabled {
  cursor: wait;
  opacity: .72;
}

.email-form.is-loading button svg {
  animation: pulse 1s ease-in-out infinite;
}

.email-form.is-complete {
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 12px;
  color: #2d7161;
  background: rgba(236, 255, 247, .96);
  border-color: rgba(117, 211, 181, .5);
}

.success-check {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #65c6a6;
}

.form-message {
  min-height: 20px;
  max-width: 460px;
  margin: 10px 0 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .86rem;
  font-weight: 700;
}

.form-message.is-success { color: #347765; }
.form-message.is-error { color: #c94040; }

@keyframes pulse {
  50% { transform: translateX(4px); opacity: .65; }
}

.micro-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 0;
  color: #676d91;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .93rem;
  font-weight: 700;
}

.micro-note svg {
  width: 17px;
  height: 17px;
  fill: #626580;
  flex: 0 0 auto;
}

.hero-art-wrap {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.hero-art {
  width: min(100%, 720px);
  margin-top: -42px;
  margin-right: -16px;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 22px 42px rgba(53, 45, 120, 0.02));
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 8px;
}

.card {
  min-height: 170px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 28px;
  border-radius: 21px;
  background: var(--card);
  border: 1px solid rgba(234, 234, 245, .9);
  box-shadow: var(--shadow);
}

.card img {
  width: clamp(78px, 8vw, 118px);
  flex: 0 0 auto;
}

.card h2,
.card p,
.better h2,
.highlight h3,
.highlight p {
  margin: 0;
}

.card h2 {
  color: #0f1262;
  font-size: clamp(1.25rem, 2vw, 1.78rem);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -0.035em;
}

.card p {
  margin-top: 12px;
  color: #59608b;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 600;
}

.better {
  display: grid;
  grid-template-columns: 330px 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 43px;
  min-height: 256px;
  padding: 10px 36px 10px 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(222, 246, 224, .8), transparent 17rem),
    linear-gradient(110deg, rgba(232, 246, 238, .88) 0%, rgba(241, 244, 255, .97) 46%, rgba(244, 242, 255, .97) 100%);
  box-shadow: var(--small-shadow);
  border: 1px solid rgba(235, 238, 251, .88);
  overflow: hidden;
}

.bear-wrap {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.bear-wrap img {
  width: 330px;
  max-width: none;
  transform: translateX(4px);
}

.better-content {
  min-width: 0;
}

.better h2 {
  margin-bottom: 33px;
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.72rem);
  color: #0e1164;
  font-weight: 1000;
  letter-spacing: -0.06em;
  line-height: 1.04;
}

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

.highlight {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  position: relative;
}

.highlight + .highlight::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 8px;
  width: 1px;
  height: 76px;
  background: linear-gradient(180deg, transparent, rgba(158, 164, 204, .55), transparent);
}

.highlight-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(56, 51, 124, .12);
}

.highlight-icon.search {
  background: linear-gradient(180deg, #a4b6ff, #766fe8);
  font-size: 2.25rem;
}

.highlight-icon.sparkle {
  background: linear-gradient(180deg, #a0efd7, #75d3b5);
}

.highlight-icon.heart {
  background: linear-gradient(180deg, #ff9ccf, #f56eab);
  font-size: 1.75rem;
}

.highlight h3 {
  color: #101568;
  font-size: .98rem;
  line-height: 1.15;
  font-weight: 1000;
}

.highlight p {
  margin-top: 8px;
  color: #5e658d;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .86rem;
  line-height: 1.35;
  font-weight: 600;
}

.footer {
  position: relative;
  margin-top: 46px;
  padding: 46px 32px 27px;
  color: var(--navy);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  background:
    radial-gradient(circle at 2% 80%, rgba(118, 190, 153, .45), transparent 10rem),
    radial-gradient(circle at 98% 82%, rgba(255, 207, 100, .35), transparent 10rem),
    linear-gradient(180deg, rgba(245, 244, 255, .35) 0%, rgba(239, 238, 255, .95) 45%, rgba(240, 238, 255, .98) 100%);
  border-top-left-radius: 48% 12%;
  border-top-right-radius: 48% 12%;
  z-index: -1;
}

.footer-inner {
  width: min(var(--container), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.logo-small {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
}

.email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #141862;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
}

.email-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 1000;
  box-shadow: 0 8px 18px rgba(51, 45, 128, .12);
}

.socials a:nth-child(1) { background: #2177db; }
.socials a:nth-child(2) { background: linear-gradient(135deg, #ffb442, #e63ea6 55%, #6548dc); }
.socials a:nth-child(3) { background: #2ba7e8; }
.socials a:nth-child(4) { background: #e92929; }

.copyright {
  margin: 24px 0 0;
  text-align: center;
  color: #5a5f85;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .88rem;
  font-weight: 650;
}

.copyright span {
  color: #815be6;
}

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

@media (max-width: 1050px) {
  .page-shell {
    width: min(100% - 44px, 900px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 12px;
  }

  .hero-copy {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
  }

  h1,
  .lead {
    max-width: 650px;
  }

  .hero-art-wrap {
    justify-content: center;
  }

  .hero-art {
    width: min(100%, 650px);
    margin: -16px 0 0;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 150px;
  }

  .better {
    grid-template-columns: 260px 1fr;
    padding-right: 26px;
  }

  .bear-wrap img {
    width: 280px;
  }

  .highlights {
    gap: 18px;
  }

  .highlight {
    grid-template-columns: 54px 1fr;
    gap: 12px;
  }

  .highlight-icon {
    width: 52px;
    height: 52px;
    font-size: 1.55rem;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 28px, 560px);
    padding-top: 24px;
  }

  .site-header {
    justify-content: center;
    min-height: 48px;
    margin-bottom: 28px;
  }

  .logo {
    font-size: clamp(2.15rem, 12vw, 3.3rem);
  }

  .status-pill {
    margin-bottom: 20px;
    padding: 11px 18px;
    font-size: .96rem;
  }

  h1 {
    font-size: clamp(3.1rem, 12.8vw, 4.55rem);
    letter-spacing: -0.075em;
  }

  h1 span {
    margin-inline: auto;
  }

  .lead {
    margin: 15px 0 21px;
    font-size: 1.02rem;
  }

  .actions {
    width: 100%;
    max-width: 420px;
    gap: 13px;
  }

  .button {
    flex: 1;
    min-width: 0;
    min-height: 58px;
    padding-inline: 16px;
    border-radius: 16px;
    font-size: .97rem;
  }

  .button-secondary {
    min-width: 0;
  }

  .button svg {
    width: 20px;
    height: 20px;
  }

  .email-form {
    width: 100%;
    max-width: 420px;
    grid-template-columns: 46px 1fr 62px;
    height: 57px;
  }

  .email-form button {
    width: 62px;
    height: 57px;
  }

  .micro-note {
    font-size: .84rem;
    margin-top: 16px;
  }

  .form-message {
    text-align: center;
  }

  .hero-art {
    width: min(100%, 520px);
    margin-top: -6px;
  }

  .cards {
    margin-top: 10px;
    gap: 16px;
  }

  .card {
    min-height: auto;
    padding: 18px 22px;
    border-radius: 20px;
  }

  .card img {
    width: 86px;
  }

  .card h2 {
    font-size: 1.43rem;
  }

  .card p {
    margin-top: 8px;
    font-size: .93rem;
  }

  .better {
    grid-template-columns: 1fr;
    margin-top: 28px;
    padding: 18px 20px 24px;
    text-align: center;
  }

  .bear-wrap img {
    width: 245px;
    transform: none;
    margin-top: -4px;
  }

  .better h2 {
    margin-bottom: 22px;
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .highlights {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .highlight {
    grid-template-columns: 52px 1fr;
    align-items: center;
    text-align: left;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.56);
  }

  .highlight + .highlight::before {
    display: none;
  }

  .footer {
    margin-top: 30px;
    padding: 38px 20px 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
  }

  .socials {
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .page-shell {
    width: min(100% - 22px, 390px);
  }

  h1 {
    font-size: clamp(2.8rem, 13.2vw, 3.45rem);
  }

  .actions {
    flex-direction: column;
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .card {
    gap: 15px;
    padding: 16px;
  }

  .card img {
    width: 78px;
  }

  .hero-art {
    width: 108%;
    max-width: none;
  }
}
