:root {
  color-scheme: dark;
  --bg: #050519;
  --panel: #121026;
  --panel-strong: #1a1436;
  --line: rgba(255, 255, 255, 0.13);
  --text: #fff;
  --muted: #c9c3df;
  --pink: #ff61a8;
  --violet: #985bff;
  --blue: #5b89ff;
  --green: #43d38a;
  --amber: #ffac3f;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 70% 0%, rgba(152, 91, 255, 0.18), transparent 35rem),
    linear-gradient(180deg, #030315 0%, #07061e 46%, #050519 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

.section-shell,
.promise-strip,
.site-header {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 104px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 80px;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  width: min(1180px, calc(100% - 24px));
  margin-top: 10px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(7, 7, 28, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: block;
  width: 92px;
  height: 64px;
  overflow: hidden;
}

.brand img {
  width: 132px;
  max-width: none;
  transform: translate(-20px, -34px);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  font-size: 14px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.9);
}

.nav-links a,
.button,
.nav-cta {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 0;
  border-radius: 10px;
  color: white;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.primary,
.nav-cta {
  background: linear-gradient(100deg, var(--pink), var(--violet));
  box-shadow: 0 18px 44px rgba(152, 91, 255, 0.28);
}

.secondary {
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.045);
}

.play-dot {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid white;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  min-height: min(820px, calc(100vh - 80px));
  padding: 34px 0 54px;
  border-bottom: 1px solid var(--line);
}

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

h1 {
  max-width: 580px;
  margin-bottom: 22px;
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
}

h1 span,
h2 span {
  background: linear-gradient(95deg, var(--pink), var(--violet), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 460px;
  color: #eeeaf8;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.2;
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 28px;
}

.proof-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 38px;
  height: 38px;
  margin-right: -10px;
  border: 2px solid #15112c;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 32%, #f7ceb5 0 25%, transparent 26%),
    linear-gradient(140deg, #5f8cff, #ff65a8);
}

.avatar-stack span:nth-child(2) {
  background:
    radial-gradient(circle at 50% 32%, #ffd8c4 0 25%, transparent 26%),
    linear-gradient(140deg, #54d17a, #5f8cff);
}

.avatar-stack span:nth-child(3) {
  background:
    radial-gradient(circle at 50% 32%, #c99572 0 25%, transparent 26%),
    linear-gradient(140deg, #ffb23f, #ff65a8);
}

.avatar-stack span:nth-child(4) {
  background:
    radial-gradient(circle at 50% 32%, #f1c4a5 0 25%, transparent 26%),
    linear-gradient(140deg, #9b61ff, #54d17a);
}

.stars {
  color: #ffd84d;
  font-size: 18px;
}

.proof-row p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  overflow: hidden;
}

.hero-stage::before {
  position: absolute;
  inset: 80px 12px 0;
  content: "";
  background: radial-gradient(circle at 50% 78%, rgba(255, 97, 168, 0.24), transparent 30rem);
}

.hero-character {
  position: absolute;
  right: 8%;
  bottom: 46px;
  width: min(470px, 76%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.speech-bubble {
  position: absolute;
  top: 136px;
  right: 2%;
  z-index: 2;
  max-width: 210px;
  padding: 20px 24px;
  border: 2px solid rgba(255, 97, 168, 0.85);
  border-radius: 36px;
  color: #e9d9ff;
  font-size: 22px;
  line-height: 1.32;
  font-weight: 650;
  transform: rotate(-5deg);
  background: rgba(14, 12, 42, 0.82);
}

.speech-bubble span {
  display: block;
  margin-top: 8px;
  color: var(--pink);
  text-align: center;
}

.promise-strip {
  padding: 30px 0 34px;
  border-bottom: 1px solid var(--line);
}

.promise-strip h2,
.how > h2,
.popular > h2,
.features > h2,
.faq > h2 {
  margin-bottom: 26px;
  text-align: center;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.promise-items {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.promise-items span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  color: white;
  font-size: 14px;
  font-weight: 850;
}

.icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  font-style: normal;
}

.icon::before {
  color: white;
  font-weight: 900;
}

.heart::before {
  content: "♥";
  color: var(--pink);
}

.gift::before {
  content: "□";
  color: var(--amber);
}

.calendar::before {
  content: "▦";
  color: var(--violet);
}

.coin::before {
  content: "$";
  color: var(--green);
}

.chat::before {
  content: "…";
  color: var(--blue);
}

.awkward {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 38px;
  padding: 44px 0 54px;
  border-bottom: 1px solid var(--line);
}

.awkward-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  font-weight: 900;
}

.awkward-copy p,
.pricing p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.42;
  font-weight: 750;
}

.awkward-copy img {
  width: min(300px, 100%);
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 204px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    var(--panel);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.22);
}

.case-card img {
  position: absolute;
  inset: 12px 20px auto;
  width: calc(100% - 40px);
  height: 116px;
  object-fit: contain;
  object-position: center bottom;
}

.case-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.15;
}

.case-symbol,
.popular-symbol {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.25));
}

.case-symbol {
  top: 26px;
  width: 88px;
  height: 88px;
}

.case-symbol::before,
.case-symbol::after,
.popular-symbol::before,
.popular-symbol::after {
  position: absolute;
  content: "";
}

.gift-symbol {
  border-radius: 16px;
  background: linear-gradient(145deg, #7b4dff, #b276ff);
}

.gift-symbol::before {
  inset: 0 38px;
  background: rgba(255, 255, 255, 0.24);
}

.gift-symbol::after {
  inset: 38px 0 auto;
  height: 12px;
  background: rgba(255, 255, 255, 0.24);
}

.shop-symbol {
  border-radius: 16px 16px 10px 10px;
  background: linear-gradient(180deg, #7b4dff 0 34%, #221546 34% 100%);
}

.shop-symbol::before {
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 28px;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.16);
}

.shop-symbol::after {
  left: 10px;
  right: 10px;
  top: 26px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.money-symbol {
  border-radius: 18px;
  background: linear-gradient(145deg, #43d38a, #7b4dff);
}

.money-symbol::before {
  inset: 22px 0 0;
  color: white;
  content: "$";
  font-size: 46px;
  font-weight: 900;
  text-align: center;
}

.how,
.popular,
.features,
.pricing,
.faq {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

.step-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--violet), var(--blue));
  font-weight: 900;
}

.step h3 {
  max-width: 210px;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.12;
}

.step p {
  max-width: 230px;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 700;
}

.step img {
  position: absolute;
  right: -12px;
  bottom: -10px;
  width: 210px;
  border-radius: 20px;
}

.main-step img {
  right: 20px;
  bottom: 22px;
  width: 250px;
}

.summary-card {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.summary-card strong {
  display: block;
  margin-bottom: 10px;
  color: #f8d9ff;
  font-size: 18px;
}

.summary-card span {
  display: block;
  margin-top: 14px;
  padding: 10px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--violet), var(--blue));
  text-align: center;
  font-weight: 900;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.popular-grid article {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    var(--panel-strong);
}

.popular-grid h3 {
  margin: 18px 0 6px;
  font-size: 22px;
}

.popular-grid p {
  color: white;
  font-size: 15px;
  line-height: 1.34;
  font-weight: 650;
}

.popular-grid img {
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 210px;
  max-width: 94%;
  border-radius: 20px;
  transform: translateX(-50%);
}

.popular-symbol {
  bottom: 54px;
  width: 126px;
  height: 126px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.feature-row span {
  min-height: 106px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: #f4efff;
  text-align: center;
  font-size: 15px;
  font-weight: 850;
}

.feature-row span:last-child {
  border-right: 0;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(240px, 0.6fr) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}

.pricing img {
  width: min(360px, 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.pricing h2 {
  margin-bottom: 12px;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.faq details {
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq summary::after {
  content: "+";
  color: var(--pink);
  font-size: 28px;
}

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

.faq p {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 700;
}

.demo-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(10, 9, 31, 0.9);
  color: white;
  font-weight: 800;
  box-shadow: var(--shadow);
  transition: opacity 180ms ease, transform 180ms ease;
}

.demo-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 980px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .awkward,
  .pricing {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: 560px;
  }

  .promise-items,
  .case-grid,
  .steps,
  .popular-grid,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .promise-items span {
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
  }

  .popular-grid article {
    min-height: 280px;
  }

  .feature-row span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-row span:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .section-shell,
  .promise-strip,
  .site-header {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    min-height: 68px;
  }

  .brand {
    width: 76px;
    height: 56px;
  }

  .brand img {
    width: 112px;
    transform: translate(-18px, -30px);
  }

  .nav-cta {
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(48px, 14vw, 58px);
  }

  .hero-lede {
    max-width: 350px;
    font-size: 21px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 430px;
  }

  .hero-character {
    right: 50%;
    bottom: 18px;
    width: 82%;
    transform: translateX(50%);
  }

  .speech-bubble {
    top: 86px;
    right: 4px;
    max-width: 154px;
    padding: 14px 16px;
    font-size: 16px;
  }

  .case-card,
  .step,
  .popular-grid article {
    border-radius: 14px;
  }

  .pricing {
    text-align: center;
  }

  .pricing img {
    margin-inline: auto;
  }
}
