:root {
  --ink: #151519;
  --muted: #73717a;
  --line: #e8e5ee;
  --paper: #fbfaff;
  --white: #ffffff;
  --blue: #376ff2;
  --blue-dark: #1850d9;
  --pink: #e1007a;
  --violet: #871cff;
  --gold: #edae2c;
  --green: #18a779;
  --shadow: 0 24px 80px rgba(28, 24, 45, 0.14);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  --page-scroll: 0;
  position: relative;
  isolation: isolate;
  margin: 0;
  background: transparent;
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% calc(12% + (var(--page-scroll) * 36%)), rgba(55, 111, 242, 0.18), transparent 30%),
    radial-gradient(circle at 88% calc(20% + (var(--page-scroll) * 42%)), rgba(225, 0, 122, 0.16), transparent 28%),
    radial-gradient(circle at 48% calc(78% - (var(--page-scroll) * 28%)), rgba(24, 167, 121, 0.12), transparent 34%),
    linear-gradient(180deg, #fbfaff 0%, #f4f7ff 28%, #fff6fb 58%, #f7fbf7 100%);
  transform: translateY(calc(var(--page-scroll) * -18px));
  transition: transform 120ms linear;
}

body[data-vertical]::before {
  display: block;
  background:
    radial-gradient(circle at 10% calc(10% + (var(--page-scroll) * 34%)), color-mix(in srgb, var(--vertical-accent, var(--blue)) 18%, transparent), transparent 30%),
    radial-gradient(circle at 88% calc(18% + (var(--page-scroll) * 44%)), color-mix(in srgb, var(--vertical-mid, var(--blue)) 34%, transparent), transparent 30%),
    radial-gradient(circle at 50% calc(84% - (var(--page-scroll) * 30%)), color-mix(in srgb, var(--vertical-soft, var(--paper)) 72%, transparent), transparent 36%),
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--vertical-soft, var(--paper)) 82%, white 18%) 0%,
      color-mix(in srgb, var(--vertical-mid, var(--paper)) 24%, white 76%) 34%,
      #fffafc 66%,
      color-mix(in srgb, var(--vertical-soft, var(--paper)) 58%, white 42%) 100%
    );
}

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

.notice {
  background: var(--blue);
  color: white;
  font-weight: 800;
  text-align: center;
  padding: 15px 20px;
  font-size: 15px;
}

.notice a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px clamp(20px, 5vw, 56px);
  background: rgba(251, 250, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-flex;
  min-width: 52px;
  height: 31px;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, var(--pink), #b40058);
  border-radius: 7px;
  transform: rotate(-2deg);
  margin-right: 3px;
}

.nav,
.header-actions,
.footer__links nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 700;
}

.login {
  color: #2e2c34;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  padding: 0 25px;
  font-weight: 900;
  border: 1.5px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-outline,
.button-light {
  border-color: var(--ink);
  background: white;
}

.button-dark {
  color: white;
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(21, 21, 25, 0.18);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: white;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 780px;
  place-items: center;
  padding: 110px 0 60px;
  text-align: center;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 14px;
  color: #86838d;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 900;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(54px, 7.2vw, 94px);
}

.hero-text {
  max-width: 760px;
  margin: 24px auto 0;
  color: #5d5a64;
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-stage {
  position: relative;
  width: min(850px, 100%);
  min-height: 420px;
  margin-top: 42px;
}

.floaty {
  animation: floatPhone 6s ease-in-out infinite;
}

.phone {
  position: absolute;
  left: 50%;
  width: 250px;
  height: 500px;
  padding: 13px;
  border: 4px solid #111;
  border-radius: 42px;
  background: #17171b;
  box-shadow: var(--shadow);
  transform: translateX(-50%) rotate(-5deg);
}

.hero-phone-image {
  position: absolute;
  left: 50%;
  top: -18px;
  width: min(430px, 58vw);
  max-height: 580px;
  object-fit: contain;
  filter: drop-shadow(0 32px 54px rgba(21, 21, 25, 0.2));
  transform: translateX(-50%) rotate(-4deg);
}

.phone::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  width: 78px;
  height: 22px;
  border-radius: 0 0 16px 16px;
  background: #08080a;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  height: 100%;
  border-radius: 31px;
  padding: 58px 15px 20px;
  background: linear-gradient(180deg, #292a30, #0e0f13);
}

.pass {
  min-height: 300px;
  border-radius: 22px;
  padding: 20px;
  color: white;
  text-align: left;
}

.pass-gold {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(145deg, #121318 0%, #0d1020 46%, #d89723 100%);
}

.pass-top,
.pass p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  font-weight: 900;
}

.pass-title {
  margin: 42px 0 18px;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

.stamp-row {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.stamp-row i {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
}

.stamp-row .empty {
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
}

.qr {
  width: 86px;
  height: 86px;
  border: 8px solid white;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #111 10px, transparent 10px 18px, #111 18px 28px, transparent 28px),
    linear-gradient(#111 10px, transparent 10px 18px, #111 18px 28px, transparent 28px),
    white;
  background-size: 28px 28px;
}

.pass p {
  display: block;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

.stat-card {
  position: absolute;
  top: 86px;
  width: 170px;
  text-align: left;
}

.stat-left {
  left: 8%;
}

.stat-right {
  right: 4%;
}

.stat-card span,
.stat-card small {
  display: block;
  color: #77737f;
  font-size: 20px;
  font-weight: 800;
}

.stat-card strong {
  display: block;
  color: var(--pink);
  font-size: 84px;
  line-height: 0.9;
  font-weight: 900;
}

.platform-tabs,
.billing-toggle {
  display: flex;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}

.platform-tabs button,
.billing-toggle button {
  appearance: none;
  border: 0;
  border-bottom: 4px solid transparent;
  background: transparent;
  padding: 20px 22px;
  color: #56535d;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.platform-tabs .active,
.billing-toggle .active {
  color: var(--ink);
  border-color: var(--pink);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 72px);
  padding: 92px 0 54px;
  align-items: center;
}

.section h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.3vw, 58px);
}

.split > p,
.section-heading p,
.feature-grid p,
.included-grid p,
.steps-grid p,
.faq-list p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.split > p {
  margin: 0;
}

.card-grid {
  display: grid;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 90px;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.type-card {
  position: relative;
  min-height: 462px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  background: white;
  box-shadow: 0 10px 35px rgba(23, 20, 35, 0.06);
  overflow: hidden;
  isolation: isolate;
  cursor: default;
}

.type-card__front,
.type-card__back {
  min-height: 100%;
  transition: opacity 260ms ease, transform 260ms ease;
}

.type-card__front {
  display: grid;
  align-content: start;
  text-align: center;
}

.type-card__back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 76, 133, 0.24), transparent 30%),
    radial-gradient(circle at 8% 82%, rgba(55, 111, 242, 0.24), transparent 30%),
    linear-gradient(145deg, #151519, #242432);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.card-image {
  display: grid;
  height: 308px;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: #f1eef8;
}

.card-image img {
  width: 150px;
  max-height: 285px;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(21, 21, 25, 0.16));
  transform: translateY(12px);
  transition: transform 450ms ease, filter 450ms ease;
}

.type-card:hover .card-image img {
  transform: translateY(0) scale(1.04);
  filter: drop-shadow(0 30px 34px rgba(21, 21, 25, 0.22));
}

.type-card h3 {
  margin: 24px 0 12px;
  font-size: 24px;
}

.type-card__back h3 {
  margin: 0 0 18px;
  color: white;
  font-size: 27px;
  line-height: 1.05;
}

.type-card p {
  min-height: 72px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.type-card a {
  color: var(--pink);
  font-weight: 900;
}

.type-card__back ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.type-card__back li {
  position: relative;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.38;
}

.type-card__back li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(255, 76, 133, 0.16);
  transform: translateX(-50%);
}

.type-card__back a {
  display: inline-flex;
  width: fit-content;
  margin: auto auto 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  color: white;
  background: var(--pink);
  box-shadow: 0 14px 30px rgba(255, 76, 133, 0.26);
}

.type-card:hover .type-card__front,
.type-card:focus .type-card__front,
.type-card:focus-within .type-card__front {
  opacity: 0;
  transform: translateY(-14px);
}

.type-card:hover .type-card__back,
.type-card:focus .type-card__back,
.type-card:focus-within .type-card__back {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.type-card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--pink) 70%, white 30%);
  outline-offset: 4px;
}

.pass-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.pass-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.pass-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 21, 25, 0.52);
  backdrop-filter: blur(10px);
}

.pass-modal__panel {
  position: relative;
  display: grid;
  width: min(430px, 100%);
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  padding: 30px;
  background: white;
  box-shadow: 0 34px 100px rgba(21, 21, 25, 0.26);
  text-align: center;
  transform: translateY(18px) scale(0.98);
  transition: transform 220ms ease;
}

.pass-modal.is-open .pass-modal__panel {
  transform: translateY(0) scale(1);
}

.pass-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.pass-modal__copy {
  padding: 10px 18px 0;
}

.pass-modal__eyebrow {
  margin: 0 0 8px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pass-modal h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.05;
}

.pass-modal p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.pass-modal__qr {
  display: grid;
  width: 230px;
  height: 230px;
  margin: 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f8f7fc;
}

.pass-modal__qr img {
  width: 184px;
  height: 184px;
  image-rendering: crisp-edges;
}

.pass-modal__button {
  width: 100%;
}

.trusted {
  padding: 48px 0 98px;
  text-align: center;
}

.demo-page {
  display: grid;
  gap: 30px;
  padding-top: 72px;
  padding-bottom: 92px;
}

.demo-page__copy {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.demo-page h1 {
  margin: 0 auto;
  max-width: 940px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
}

.demo-page__copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.demo-video-shell {
  width: min(1040px, 100%);
  margin: 12px auto 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 14px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 76, 133, 0.16), transparent 26%),
    radial-gradient(circle at 8% 88%, rgba(55, 111, 242, 0.16), transparent 30%),
    white;
  box-shadow: 0 28px 90px rgba(21, 21, 25, 0.12);
}

.demo-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #151519;
}

.demo-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.trusted p {
  color: #77737f;
  font-weight: 900;
}

.trusted-map {
  display: block;
  width: min(980px, 96%);
  margin: 30px auto 0;
  border-radius: 24px;
  opacity: 0.98;
  filter: drop-shadow(0 22px 44px rgba(21, 21, 25, 0.1));
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.logo-row span,
.logo-row a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 22px;
  background: white;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(23, 20, 35, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.logo-row a:hover,
.logo-row a:focus-visible {
  color: white;
  border-color: var(--pink);
  background: linear-gradient(135deg, var(--pink), var(--blue));
  box-shadow: 0 18px 44px rgba(225, 0, 122, 0.18);
  transform: translateY(-3px);
}

.logo-row a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--pink) 45%, white 55%);
  outline-offset: 4px;
}

.nav a.active {
  color: var(--vertical-accent, var(--pink));
}

.vertical-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
  padding: 78px 0 58px;
  text-align: center;
}

body[data-vertical] {
  background: transparent;
}

body[data-vertical] .site-header {
  background: color-mix(in srgb, var(--vertical-soft, var(--paper)) 82%, white 18%);
}

body[data-vertical] .button-dark {
  background: var(--vertical-dark, var(--ink));
}

body[data-vertical] .button {
  text-align: center;
}

body[data-vertical] .button-light,
body[data-vertical] .button-outline {
  border-color: var(--vertical-dark, var(--ink));
}

body[data-vertical] .eyebrow {
  color: var(--vertical-accent, var(--pink));
}

.vertical-hero h1 {
  margin: 0;
  margin-inline: auto;
  max-width: 780px;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}

.vertical-hero__copy > p:not(.eyebrow) {
  max-width: 780px;
  margin-inline: auto;
}

.vertical-hero p,
.vertical-split p,
.vertical-demo p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.vertical-card-stack {
  position: relative;
  width: min(860px, 100%);
  min-height: 580px;
  justify-self: center;
}

.vertical-hero-image {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 2;
  width: min(390px, 66vw);
  max-height: 590px;
  object-fit: contain;
  filter: drop-shadow(0 34px 58px rgba(21, 21, 25, 0.2));
  transform: translateX(-50%) rotate(-4deg);
}

.vertical-pass-card {
  position: absolute;
  left: 8%;
  bottom: 70px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 214px;
  min-height: 270px;
  border-radius: 34px;
  padding: 26px;
  color: white;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(145deg, var(--vertical-dark, #14151d) 0%, #191e38 46%, var(--vertical-accent, var(--pink)) 100%);
  box-shadow: var(--shadow);
  transform: rotate(-5deg);
}

.vertical-pass-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.vertical-pass-card strong {
  font-size: 30px;
  line-height: 0.96;
}

.vertical-pass-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 800;
}

.vertical-stat-card {
  position: absolute;
  z-index: 3;
  top: 92px;
  right: 4%;
  width: 244px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: white;
  box-shadow: 0 24px 70px rgba(28, 24, 45, 0.16);
}

.vertical-stat-card strong,
.vertical-stat-card span {
  display: block;
}

.vertical-stat-card strong {
  color: var(--vertical-accent, var(--pink));
  font-size: 50px;
  line-height: 0.9;
}

.vertical-stat-card span {
  margin-top: 10px;
  color: var(--vertical-dark, var(--ink));
  font-size: 15px;
  line-height: 1.22;
  font-weight: 900;
}

.vertical-stat-card p {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.vertical-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
  padding: 38px 0 74px;
}

.vertical-split article,
.vertical-demo {
  border: 1px solid color-mix(in srgb, var(--vertical-accent, var(--line)) 22%, var(--line) 78%);
  border-radius: 26px;
  padding: clamp(28px, 3.3vw, 42px);
  background: white;
  box-shadow: 0 10px 35px rgba(23, 20, 35, 0.06);
}

.vertical-split article {
  display: flex;
  flex-direction: column;
}

.vertical-problem-card {
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(180deg, white, color-mix(in srgb, var(--vertical-soft, #f7f5fb) 46%, white 54%));
}

.vertical-split h2,
.vertical-demo h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
}

.vertical-problem-card h2 {
  max-width: 680px;
  margin-inline: auto;
}

.vertical-problem-card > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px auto 0;
  padding-top: 22px;
  border-top: 1px solid color-mix(in srgb, var(--vertical-accent, var(--line)) 18%, var(--line) 82%);
}

.vertical-pricing {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: 22px 0 70px;
}

.vertical-pricing h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
}

.vertical-pricing p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.vertical-pricing__card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  border: 1px solid color-mix(in srgb, var(--vertical-accent, var(--line)) 24%, var(--line) 76%);
  border-radius: 26px;
  padding: 28px;
  background:
    radial-gradient(circle at 88% 12%, color-mix(in srgb, var(--vertical-accent, var(--blue)) 18%, transparent), transparent 30%),
    white;
  box-shadow: 0 18px 55px rgba(23, 20, 35, 0.08);
}

.vertical-pricing__card > div {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  background: color-mix(in srgb, var(--vertical-soft, #f7f5fb) 58%, white 42%);
}

.vertical-pricing__setup {
  grid-column: span 1;
}

.vertical-pricing__monthly {
  align-self: stretch;
}

.vertical-pricing__card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.vertical-pricing__card strong {
  display: block;
  margin-top: 8px;
  color: var(--vertical-dark, var(--ink));
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.95;
}

.vertical-pricing__monthly strong {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.02;
}

.vertical-pricing__monthly strong span {
  display: inline;
  color: var(--muted);
  font-size: 0.48em;
  font-weight: 900;
  text-transform: none;
}

.vertical-pricing__card > div p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.vertical-pricing__card ul {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  margin: 8px 0 6px;
  padding: 0;
  list-style: none;
  color: #53505a;
  font-weight: 750;
}

.vertical-pricing__card li::before {
  content: "+";
  margin-right: 8px;
  color: var(--vertical-accent, var(--green));
  font-weight: 900;
}

.vertical-pricing__card .button {
  grid-column: 1 / -1;
}

.vertical-panel ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.vertical-panel li {
  position: relative;
  min-height: 74px;
  border: 1px solid color-mix(in srgb, var(--vertical-accent, var(--line)) 16%, var(--line) 84%);
  border-radius: 18px;
  padding: 18px 18px 18px 54px;
  background: color-mix(in srgb, var(--vertical-soft, #f7f5fb) 58%, white 42%);
  color: #53505a;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.vertical-panel li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 18px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--vertical-accent, var(--green)), var(--vertical-dark, var(--ink)));
}

.vertical-panel li::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 26px;
  width: 6px;
  height: 10px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(38deg);
}

.vertical-flow {
  padding: 68px 0;
}

body[data-vertical] .section-heading h2 {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
}

body[data-vertical] .section-heading p {
  font-size: 17px;
}

.vertical-flow__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.vertical-flow__grid article {
  min-height: 244px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  background: white;
  box-shadow: 0 10px 35px rgba(23, 20, 35, 0.05);
}

.vertical-flow__grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: var(--vertical-accent, var(--blue));
  font-weight: 900;
}

.vertical-flow__grid h3 {
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.18;
}

.vertical-flow__grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.vertical-demo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 40px;
  background:
    radial-gradient(circle at 88% 18%, color-mix(in srgb, var(--vertical-accent, var(--blue)) 20%, transparent), transparent 28%),
    white;
}

.vertical-image-band {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: 28px 0 76px;
}

.vertical-image-band h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.08;
}

.vertical-image-band p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.vertical-image-band figure {
  position: relative;
  margin: 0;
}

.vertical-image-band figure::before {
  content: "";
  position: absolute;
  inset: 22px -18px -18px 22px;
  border-radius: 28px;
  background: var(--vertical-mid, #d8e2ff);
  z-index: 0;
}

.vertical-image-band img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border: 1px solid color-mix(in srgb, var(--vertical-accent, var(--blue)) 28%, var(--line) 72%);
  border-radius: 26px;
  box-shadow: 0 28px 76px rgba(28, 24, 45, 0.16);
}

.vertical-demo > div {
  max-width: 760px;
}

.feature-band {
  padding: 82px 0;
  text-align: center;
}

.feature-band > h2 {
  margin-inline: auto;
}

.feature-grid,
.included-grid,
.steps-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.feature-grid article,
.included-grid article,
.steps-grid article,
.price-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  padding: 28px;
  box-shadow: 0 10px 35px rgba(23, 20, 35, 0.05);
}

.feature-grid article {
  position: relative;
  min-height: 376px;
  overflow: hidden;
  isolation: isolate;
}

.feature-card {
  cursor: default;
}

.feature-card__front,
.feature-card__back {
  min-height: 100%;
  transition: opacity 260ms ease, transform 260ms ease;
}

.feature-card__front {
  display: grid;
  align-content: start;
}

.feature-card__back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: white;
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 76, 133, 0.22), transparent 28%),
    radial-gradient(circle at 12% 84%, rgba(55, 111, 242, 0.22), transparent 30%),
    linear-gradient(145deg, #151519, #242432);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.feature-card__back .feature-icon {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.feature-card__back h3 {
  margin: 22px 0 18px;
  color: white;
  font-size: 27px;
  line-height: 1.08;
}

.feature-card__back ul {
  display: grid;
  gap: 14px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.feature-card__back li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.42;
}

.feature-card__back li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(255, 76, 133, 0.16);
}

.feature-card:hover .feature-card__front,
.feature-card:focus .feature-card__front,
.feature-card:focus-within .feature-card__front {
  opacity: 0;
  transform: translateY(-14px);
}

.feature-card:hover .feature-card__back,
.feature-card:focus .feature-card__back,
.feature-card:focus-within .feature-card__back {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.feature-card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 70%, white 30%);
  outline-offset: 4px;
}

.feature-art {
  display: block;
  width: 100%;
  height: 126px;
  margin: 18px 0 2px;
  object-fit: contain;
  border-radius: 16px;
  background: #f7f5fb;
  transition: transform 420ms ease;
}

.feature-grid article:hover .feature-art {
  transform: translateY(-4px) scale(1.03);
}

.feature-icon,
.steps-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: var(--blue);
  font-weight: 900;
}

.feature-grid h3,
.included-grid h3,
.steps-grid h3,
.price-card h3 {
  margin: 18px 0 10px;
  font-size: 23px;
  line-height: 1.14;
}

.included {
  padding: 18px 0 82px;
}

.included-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 25, 0.14);
  border-radius: 30px;
  padding: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 76, 133, 0.15), transparent 28%),
    radial-gradient(circle at 10% 88%, rgba(27, 86, 246, 0.14), transparent 32%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.included-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.included__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.included__header > div:first-child {
  max-width: 720px;
}

.included__header h2 {
  margin: 0;
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.08;
}

.included__note {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.included__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  min-width: 260px;
  padding-top: 34px;
}

.included-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  min-height: 0;
  padding: 22px;
  border-radius: 20px;
  background: color-mix(in srgb, #f7f5fb 56%, white 44%);
  box-shadow: none;
  backdrop-filter: none;
}

.included-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: white;
  background:
    linear-gradient(135deg, var(--blue), var(--pink));
  font-size: 14px;
  font-weight: 900;
}

.included-grid h3 {
  margin: 0 0 8px;
  line-height: 1.08;
}

.included-grid p {
  margin: 0;
  font-size: 16px;
}

.pricing,
.steps,
.qa {
  padding: 82px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0 auto;
}

.section-heading p {
  max-width: 620px;
  margin: 0 auto 14px;
}

.billing-toggle {
  width: fit-content;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  overflow: hidden;
}

.billing-toggle button {
  border: 0;
  padding: 13px 22px;
}

.billing-toggle .active {
  color: white;
  background: var(--ink);
}

.price-card {
  position: relative;
  min-height: 480px;
}

.price-card.featured {
  border-color: var(--ink);
  transform: translateY(-18px);
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  padding: 8px 12px;
  color: white;
  background: var(--pink);
  font-size: 12px;
  font-weight: 900;
}

.price {
  margin: 18px 0;
  font-size: 56px;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 17px;
}

.price-card ul {
  display: grid;
  gap: 13px;
  min-height: 190px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: #595661;
  font-weight: 700;
}

.price-card li::before {
  content: "+";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.steps-grid article {
  position: relative;
  overflow: hidden;
  min-height: 272px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 245, 251, 0.92));
}

.steps-grid article::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--blue) 10%, transparent);
}

.steps-grid article:nth-child(even) span {
  background: var(--pink);
}

.steps-grid article:nth-child(3) span {
  background: var(--green);
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 880px;
  margin: 42px auto 0;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 24px 28px;
  font-size: 22px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 28px 26px;
}

.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: min(1160px, calc(100% - 40px));
  margin: 30px auto 90px;
  border-radius: 30px;
  padding: 58px 48px;
  text-align: center;
  background:
    radial-gradient(circle at 85% 20%, rgba(225, 0, 122, 0.18), transparent 26%),
    linear-gradient(135deg, white, #f2f4ff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  margin: 0 auto;
  max-width: 660px;
  font-size: clamp(34px, 4.1vw, 56px);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(20px, 5vw, 56px);
  border-top: 1px solid var(--line);
  background: white;
  color: #4d4a54;
}

.footer p {
  margin: 0;
  font-weight: 700;
}

.footer__links {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.footer__links nav[aria-label="Legal navigation"] {
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.legal-page {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 96px;
}

.legal-page h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 5.2vw, 64px);
  line-height: 1.04;
}

.legal-updated {
  margin: 16px 0 46px;
  color: var(--muted);
  font-weight: 800;
}

.legal-page section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  margin: 0 0 12px;
  font-size: clamp(23px, 2.5vw, 30px);
}

.legal-page p {
  margin: 0;
  color: #595661;
  font-size: 18px;
  line-height: 1.65;
}

.legal-page a {
  color: var(--blue);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 850ms ease, transform 850ms ease;
}

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

.type-card,
.feature-grid article,
.included-grid article,
.price-card,
.steps-grid article,
.faq-list details {
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.type-card:hover,
.feature-grid article:hover,
.included-grid article:hover,
.price-card:hover,
.steps-grid article:hover,
.faq-list details:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 70px rgba(28, 24, 45, 0.12);
  border-color: rgba(21, 21, 25, 0.18);
}

@keyframes floatPhone {
  0%, 100% {
    transform: translateX(-50%) rotate(-4deg) translateY(0);
  }
  50% {
    transform: translateX(-50%) rotate(-2deg) translateY(-14px);
  }
}

@media (max-width: 960px) {
  .nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.is-open {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-header.is-open .nav,
  .site-header.is-open .header-actions {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

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

  .stat-left,
  .stat-right {
    top: 430px;
  }

  .stat-left {
    left: 7%;
  }

  .stat-right {
    right: 7%;
  }

  .split,
  .feature-grid,
  .included-grid,
  .pricing-grid,
  .steps-grid,
  .vertical-hero,
  .vertical-split,
  .vertical-pricing,
  .vertical-image-band,
  .vertical-flow__grid {
    grid-template-columns: 1fr;
  }

  .vertical-hero {
    padding-top: 58px;
  }

  .vertical-card-stack {
    width: min(620px, 100%);
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
  }

  .vertical-hero-image {
    position: relative;
    grid-column: 1 / -1;
    left: auto;
    top: auto;
    width: min(360px, 76vw);
    max-height: 540px;
    margin: 0 auto 18px;
    animation: none;
    transform: rotate(-4deg);
  }

  .vertical-pass-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    min-height: 250px;
  }

  .vertical-stat-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: auto;
  }

  .vertical-flow__grid article {
    min-height: auto;
  }

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

  .card-image {
    height: 330px;
  }

  .price-card.featured {
    transform: none;
  }

  .included__header,
  .vertical-demo,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .included__actions {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .notice {
    font-size: 13px;
  }

  .site-header {
    padding: 20px;
  }

  .brand {
    font-size: 20px;
  }

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

  .vertical-hero h1 {
    font-size: 38px;
    line-height: 1.06;
  }

  .vertical-hero p,
  .vertical-split p,
  .vertical-demo p {
    font-size: 16px;
  }

  .vertical-split h2,
  .vertical-demo h2,
  .vertical-pricing h2,
  .vertical-image-band h2 {
    font-size: 32px;
  }

  .hero-actions,
  .platform-tabs,
  .footer__links nav {
    flex-direction: column;
  }

  .hero-stage {
    margin-top: 20px;
  }

  .phone {
    width: 220px;
    height: 450px;
  }

  .hero-phone-image {
    top: 10px;
    width: min(360px, 80vw);
  }

  .stat-card {
    width: 132px;
  }

  .stat-card strong {
    font-size: 58px;
  }

  .stat-card span,
  .stat-card small {
    font-size: 15px;
  }

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

  .card-image {
    height: 300px;
  }

  .type-card__back a {
    width: 100%;
  }

  .vertical-pass-card {
    width: min(188px, 54vw);
    min-height: 230px;
    padding: 22px;
    border-radius: 28px;
  }

  .vertical-pass-card strong {
    font-size: 26px;
  }

  .vertical-pass-card p {
    font-size: 14px;
  }

  .vertical-hero-image {
    width: min(340px, 84vw);
  }

  .vertical-stat-card {
    width: auto;
    padding: 20px;
  }

  .vertical-stat-card strong {
    font-size: 42px;
  }

  .vertical-stat-card p {
    font-size: 12px;
  }

  .vertical-split article,
  .vertical-demo {
    padding: 26px;
  }

  .vertical-pricing__card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .pass-modal {
    align-items: end;
    padding: 14px;
  }

  .pass-modal__panel {
    width: 100%;
    gap: 18px;
    border-radius: 22px;
    padding: 28px 22px 22px;
  }

  .pass-modal__qr {
    display: none;
  }

  .pass-modal h2 {
    font-size: 30px;
  }

  .section h2,
  .final-cta h2 {
    font-size: 38px;
  }

  .included__header h2 {
    font-size: 36px;
  }

  .included {
    padding: 10px 0 70px;
  }

  .included-grid article {
    min-height: auto;
  }

  .included__actions .button {
    width: 100%;
  }

  .final-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .final-cta__actions .button {
    width: 100%;
  }

  .final-cta {
    padding: 32px;
  }

  .legal-page {
    padding: 70px 0 82px;
  }

  .legal-page h1 {
    font-size: 46px;
  }

  .legal-page p {
    font-size: 16px;
  }
}
