:root {
  --primary: #9d346a;
  --primary-rgb: 157 52 106;
  --primary-strong: #7f2454;
  --primary-soft: #f8e8f0;
  --primary-pale: #fcf4f8;
  --lilac: #cdb6d9;
  --ink: #36323a;
  --text: #3f3d46;
  --muted: #746e78;
  --line: #e5dde2;
  --surface: #fffefd;
  --surface-soft: #f7f2f5;
  --surface-dark-gradient: linear-gradient(145deg, #342832 0%, #2b232b 58%, #251f26 100%);
  --text-nav: 0.82rem;
  --text-label: 0.75rem;
  --text-small: 0.875rem;
  --text-body: 1rem;
  --text-lead: 1.0625rem;
  --success: #4f8f72;
  --danger: #8c2940;
  --header-height: 76px;
  --container: 76rem;
  --radius-sm: 0.75rem;
  --radius-md: 1.125rem;
  --radius-lg: 1.75rem;
  --shadow-soft: 0 18px 48px rgba(73, 39, 58, 0.1);
  --shadow-card: 0 12px 34px rgba(73, 39, 58, 0.08);
  --transition: 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  min-width: 20rem;
  padding-top: var(--header-height);
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgb(var(--primary-rgb) / 0.08), transparent 30rem),
    linear-gradient(145deg, #fffafc 0%, var(--surface-soft) 52%, #f4f0f6 100%);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: var(--text-body);
  line-height: 1.6;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgb(var(--primary-rgb) / 0.25);
  outline-offset: 4px;
}

::selection {
  color: #fff;
  background: var(--primary);
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: inherit;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.06;
  text-wrap: balance;
}

h3 {
  letter-spacing: -0.025em;
  line-height: 1.16;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(calc(100% - 4rem), var(--container));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--ink);
  border-radius: 0.75rem;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 8% -120%, rgb(var(--primary-rgb) / 0.46), transparent 28rem),
    var(--surface-dark-gradient);
  backdrop-filter: blur(20px) saturate(130%);
  transition:
    box-shadow var(--transition),
    background var(--transition);
}

.site-header.is-scrolled {
  background:
    radial-gradient(circle at 8% -120%, rgb(var(--primary-rgb) / 0.5), transparent 28rem),
    var(--surface-dark-gradient);
  box-shadow: 0 12px 34px rgba(31, 22, 30, 0.22);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.7rem;
  width: max-content;
}

.brand img {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: contain;
}

.brand .brand-symbol {
  width: 2.65rem;
  height: 2.65rem;
}

.brand .brand-wordmark {
  width: 9.9rem;
  height: auto;
  object-fit: contain;
}

.site-header .brand-wordmark,
.footer-brand .brand-wordmark {
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.brand-name {
  color: var(--primary-strong);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.site-header .brand-name {
  color: #fff;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-nav);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.main-nav a {
  position: relative;
  padding-block: 0.5rem;
  transition: color var(--transition);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: #e6a9c8;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="location"] {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="location"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.65rem;
}

.header-login {
  appearance: none;
  padding: 0.7rem 0.45rem;
  border: 0;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  transition:
    color var(--transition),
    transform var(--transition);
}

.header-login:hover {
  color: #fff;
  transform: translateY(-1px);
}

.header-login:active {
  transform: translateY(1px);
}

.site-header .header-cta {
  justify-self: end;
  color: var(--primary-strong);
  background: #fffefd;
  box-shadow: 0 10px 24px rgba(15, 9, 14, 0.18);
  font-size: 0.86rem;
}

.site-header .header-cta:hover {
  color: #65153f;
  background: #fff5fa;
  box-shadow: 0 13px 30px rgba(15, 9, 14, 0.24);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  cursor: pointer;
  place-items: center;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.menu-toggle:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.13);
}

.site-header :focus-visible,
.mobile-menu :focus-visible {
  outline-color: rgba(255, 255, 255, 0.72);
}

.menu-toggle:active {
  transform: scale(0.96);
}

.menu-toggle span {
  position: absolute;
  width: 1.15rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    width 240ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-0.22rem);
}

.menu-toggle span:last-child {
  width: 0.82rem;
  transform: translate(0.16rem, 0.22rem);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  width: 1.15rem;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

html.menu-open,
body.menu-open,
html.access-dialog-open,
body.access-dialog-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.access-dialog {
  width: min(calc(100% - 2rem), 45rem);
  max-width: none;
  max-height: calc(100dvh - 2rem);
  padding: 0;
  overflow: visible;
  border: 0;
  color: var(--text);
  background: transparent;
}

.access-dialog::backdrop {
  background: rgba(31, 22, 30, 0.76);
  backdrop-filter: blur(12px) saturate(90%);
  animation: access-backdrop-in 240ms ease both;
}

.access-dialog[open] {
  animation: access-dialog-in 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.access-dialog-panel {
  position: relative;
  padding: clamp(2rem, 5vw, 3.25rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 94% 4%, rgb(var(--primary-rgb) / 0.14), transparent 19rem),
    linear-gradient(155deg, #fffefd 0%, #fbf5f8 100%);
  box-shadow: 0 32px 90px rgba(23, 14, 22, 0.36);
}

.access-dialog-panel::before {
  position: absolute;
  top: -7rem;
  right: -6rem;
  width: 15rem;
  height: 15rem;
  border: 2.3rem solid rgb(var(--primary-rgb) / 0.045);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.access-dialog-close {
  position: absolute;
  z-index: 2;
  top: 1.15rem;
  right: 1.15rem;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  color: var(--muted);
  background: rgba(255, 254, 253, 0.82);
  cursor: pointer;
  place-items: center;
  transition:
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.access-dialog-close:hover {
  color: var(--primary);
  border-color: rgb(var(--primary-rgb) / 0.3);
  transform: rotate(4deg);
}

.access-dialog-close svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.access-dialog-heading {
  position: relative;
  max-width: 34rem;
  margin-bottom: 2rem;
  padding-right: 3rem;
}

.access-dialog-kicker {
  margin-bottom: 0.75rem;
  color: var(--primary);
  font-size: var(--text-label);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.access-dialog-heading h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 5vw, 3.15rem);
}

.access-dialog-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  text-wrap: pretty;
}

.access-options {
  position: relative;
  display: grid;
  gap: 0.75rem;
}

.access-option {
  appearance: none;
  display: grid;
  grid-template-columns: 3.1rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-height: 5.5rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  color: var(--text);
  background: rgba(255, 254, 253, 0.72);
  font-family: inherit;
  text-align: left;
}

.access-option-web {
  border-color: rgb(var(--primary-rgb) / 0.22);
  background: #fffefd;
  box-shadow: 0 14px 32px rgba(73, 39, 58, 0.09);
  cursor: pointer;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.access-option-web:hover {
  border-color: rgb(var(--primary-rgb) / 0.46);
  box-shadow: 0 18px 38px rgba(73, 39, 58, 0.14);
  transform: translateY(-2px);
}

.access-option:disabled {
  color: var(--muted);
  background: rgba(247, 242, 245, 0.64);
  cursor: not-allowed;
}

.access-option-icon {
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 0.95rem;
  place-items: center;
}

.access-option-web .access-option-icon {
  color: #fff;
  background: linear-gradient(145deg, #b5437d, var(--primary-strong));
  box-shadow: 0 10px 22px rgb(var(--primary-rgb) / 0.18);
}

.access-option-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.access-option-copy {
  display: grid;
  min-width: 0;
  line-height: 1.3;
}

.access-option-copy small {
  margin-bottom: 0.15rem;
  color: var(--primary);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.access-option:disabled .access-option-copy small {
  color: var(--muted);
}

.access-option-copy strong {
  color: var(--ink);
  font-size: 1rem;
}

.access-option-copy em {
  margin-top: 0.16rem;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.access-option-status {
  padding: 0.42rem 0.65rem;
  color: var(--muted);
  background: var(--surface-soft);
  border-radius: 0.55rem;
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.access-option-web .access-option-status {
  color: #fff;
  background: var(--primary);
}

.access-dialog-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.access-dialog-note svg {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

@keyframes access-dialog-in {
  from {
    opacity: 0;
    transform: translateY(1rem) scale(0.975);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes access-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1;
  text-align: center;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    color var(--transition);
}

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

.button:active {
  transform: translateY(1px) scale(0.985);
}

.button-primary {
  color: #fff;
  background: linear-gradient(145deg, #a83b73 0%, var(--primary) 52%, var(--primary-strong) 100%);
  box-shadow: 0 12px 26px rgb(var(--primary-rgb) / 0.22);
}

.button-primary:hover {
  background: linear-gradient(145deg, #a83b73 0%, #8f2d61 52%, #702048 100%);
  box-shadow: 0 16px 34px rgb(var(--primary-rgb) / 0.27);
}

.button-outline {
  color: var(--primary);
  border-color: rgb(var(--primary-rgb) / 0.25);
  background: rgba(255, 254, 253, 0.56);
}

.button-outline:hover {
  border-color: var(--primary);
  background: #fff;
}

.button-light {
  color: var(--primary);
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(73, 39, 58, 0.14);
}

.button-light:hover {
  background: var(--primary-pale);
}

.button-large {
  min-height: 3.6rem;
  padding-inline: 2rem;
  font-size: 0.98rem;
}

.button-block {
  width: 100%;
  margin-top: auto;
}

.hero {
  position: relative;
  min-height: 52.75rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 7%, rgb(var(--primary-rgb) / 0.15), transparent 42%),
    radial-gradient(circle at 4% 94%, rgba(205, 182, 217, 0.34), transparent 48%),
    linear-gradient(145deg, #fffafc 0%, var(--surface-soft) 54%, #f4f0f6 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-top {
  top: -13rem;
  right: -8rem;
  width: 38rem;
  height: 38rem;
  background: radial-gradient(circle, rgb(var(--primary-rgb) / 0.12), transparent 68%);
}

.hero-glow-bottom {
  bottom: -16rem;
  left: -12rem;
  width: 42rem;
  height: 42rem;
  background: radial-gradient(circle, rgba(205, 182, 217, 0.24), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(28rem, 1.04fr);
  grid-template-areas:
    "intro visual"
    "actions visual"
    "details visual";
  grid-template-rows: auto auto auto;
  align-content: center;
  align-items: start;
  column-gap: 4rem;
  row-gap: 1.45rem;
  min-height: 52.75rem;
  padding-block: 5rem;
}

.hero-copy {
  max-width: 37rem;
}

.hero-copy-intro {
  grid-area: intro;
  align-self: end;
}

.hero-copy-details {
  display: grid;
  grid-area: details;
  align-self: start;
  gap: 1.45rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.7rem;
  padding: 0.34rem 0.8rem;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 0.65rem;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.eyebrow-centered {
  display: flex;
  width: max-content;
  margin-inline: auto;
  margin-bottom: 1.2rem;
}

.hero h1 {
  max-width: 38rem;
  margin-bottom: 1.8rem;
  font-size: clamp(3.05rem, 4.25vw, 3.85rem);
  font-weight: 850;
  text-wrap: balance;
}

.hero h1 span,
.section-title span,
.final-card h2 span {
  color: var(--primary);
}

.hero-description {
  max-width: 36rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: var(--text-lead);
  line-height: 1.75;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  grid-area: actions;
  flex-wrap: wrap;
  gap: 0.8rem;
  max-width: 37rem;
  margin-bottom: 0;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 9.25rem;
  min-height: 3.25rem;
  padding: 0.55rem 1.05rem;
  border: 1px solid rgba(229, 221, 226, 0.86);
  border-radius: var(--radius-sm);
  background: rgba(255, 254, 253, 0.9);
  box-shadow: 0 8px 20px rgba(73, 39, 58, 0.07);
}

.store-badge svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.store-badge span {
  display: grid;
  line-height: 1.05;
}

.store-badge small {
  margin-bottom: 0.17rem;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
}

.store-badge strong {
  font-size: 0.85rem;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.6rem;
  max-width: 33rem;
  font-size: var(--text-small);
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.check-dot {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  box-shadow: 0 4px 9px rgb(var(--primary-rgb) / 0.2);
}

.check-dot svg {
  width: 0.78rem;
  height: 0.78rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.hero-visual {
  position: relative;
  grid-area: visual;
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 36.4rem;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  box-shadow:
    0 28px 70px rgba(73, 39, 58, 0.16),
    0 0 0 1px rgb(var(--primary-rgb) / 0.04);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(63, 61, 70, 0.08));
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.revenue-card {
  position: absolute;
  bottom: -1.4rem;
  left: -1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 13.2rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgb(var(--primary-rgb) / 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 254, 253, 0.96);
  box-shadow: 0 18px 38px rgba(73, 39, 58, 0.14);
  backdrop-filter: blur(10px);
}

.revenue-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: var(--radius-sm);
}

.revenue-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.revenue-card > span:last-child {
  display: grid;
  line-height: 1.25;
}

.revenue-card small {
  color: var(--muted);
  font-size: 0.72rem;
}

.revenue-card strong {
  font-size: 0.92rem;
}

.section {
  padding-block: 7rem;
}

.section-title {
  max-width: 50rem;
  margin-inline: auto;
  margin-bottom: 4rem;
  font-size: clamp(2.55rem, 3.9vw, 3.15rem);
  text-align: center;
  text-wrap: balance;
}

.section-subtitle {
  margin-top: -2.8rem;
  margin-bottom: 3.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  text-align: center;
}

.notification-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 36%, rgb(var(--primary-rgb) / 0.11), transparent 28rem),
    linear-gradient(180deg, #fffefd 0%, #fbf6f8 100%);
}

.notification-section::before {
  position: absolute;
  top: 12%;
  right: -7rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgb(var(--primary-rgb) / 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.notification-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(30rem, 1.14fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

.notification-copy {
  max-width: 32rem;
}

.notification-copy h2 {
  margin-bottom: 1.45rem;
  font-size: clamp(2.65rem, 4.3vw, 3.65rem);
}

.notification-copy h2 span {
  color: var(--primary);
}

.notification-lead {
  margin-bottom: 1.8rem;
  color: var(--muted);
  font-size: var(--text-lead);
  line-height: 1.75;
}

.notification-points {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.notification-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.5;
}

.notification-points li > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  margin-top: 0.05rem;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
}

.notification-points svg {
  width: 0.82rem;
  height: 0.82rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.notification-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  isolation: isolate;
}

.notification-visual::before {
  position: absolute;
  z-index: -1;
  inset: 15% 9% 9%;
  content: "";
  background: rgb(var(--primary-rgb) / 0.12);
  border-radius: 50%;
  filter: blur(3rem);
}

.notification-visual > img {
  width: 100%;
  aspect-ratio: 1.18;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center;
}

.notification-visual figcaption,
.product-showcase-caption {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 254, 253, 0.88);
  box-shadow: 0 18px 46px rgba(73, 39, 58, 0.14);
  backdrop-filter: blur(18px);
}

.notification-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 2%;
  bottom: 6%;
  max-width: 21rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.notification-visual figcaption strong {
  display: block;
  color: var(--ink);
  font-size: 0.94rem;
}

.notification-caption-icon,
.product-caption-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  color: #fff;
  background: linear-gradient(145deg, #b5437d, var(--primary-strong));
  border-radius: 0.8rem;
}

.notification-caption-icon svg,
.product-caption-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.problems {
  background: var(--surface);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 68rem;
  margin-inline: auto;
}

.problem-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 5.55rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 254, 253, 0.92);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.problem-card:hover {
  border-color: rgb(var(--primary-rgb) / 0.24);
  box-shadow: 0 16px 35px rgba(73, 39, 58, 0.11);
  transform: translateY(-3px);
}

.problem-card p {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.45;
}

.problem-x {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  color: var(--danger);
  background: #fff0f2;
  border-radius: 0.55rem;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}

.problem-x svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.problem-closing {
  max-width: 45rem;
  margin: 3.2rem auto 0;
  color: var(--ink);
  font-family: inherit;
  font-size: 1.23rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-wrap: balance;
}

.problem-closing span {
  color: var(--primary);
}

.features-section,
.pricing-section,
.testimonials-section,
.final-section {
  background:
    radial-gradient(circle at 50% 40%, rgb(var(--primary-rgb) / 0.09), transparent 58%),
    linear-gradient(180deg, #fffafc 0%, var(--surface-soft) 100%);
}

.features-section .section-title {
  margin-bottom: 4.5rem;
}

.product-showcase {
  position: relative;
  max-width: 68rem;
  margin: -1rem auto 4.5rem;
}

.product-showcase-image {
  display: block;
  width: 100%;
  border: 1px solid rgba(198, 183, 192, 0.42);
  border-radius: 2rem;
  box-shadow: 0 28px 65px rgba(73, 39, 58, 0.13);
}

.product-showcase-caption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: 29rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.product-showcase-caption strong {
  display: block;
  margin-bottom: 0.08rem;
  color: var(--ink);
  font-size: 0.98rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 27rem;
  padding: 2rem;
  border: 1px solid rgba(198, 183, 192, 0.48);
  border-radius: var(--radius-lg);
  background: rgba(255, 254, 253, 0.94);
  box-shadow: var(--shadow-card);
}

.feature-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature-heading h3 {
  margin: 0;
  font-size: 1.65rem;
}

.feature-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  color: #fff;
  background: linear-gradient(145deg, #a83b73, var(--primary-strong));
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 24px rgb(var(--primary-rgb) / 0.18);
}

.feature-icon svg,
.soft-icon svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-card > p:not(.feature-result) {
  margin-bottom: 1rem;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 0.34rem;
  margin-bottom: 1.4rem;
  font-size: 0.92rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
}

.check-list li::before {
  position: absolute;
  top: 0.32rem;
  left: 0;
  width: 0.9rem;
  height: 0.9rem;
  content: "";
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239d346a' stroke-width='2.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.2 4.2L19 7'/%3E%3C/svg%3E");
}

.feature-result {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  margin-bottom: 0;
  padding: 0.65rem 1rem;
  color: var(--primary-strong);
  background: var(--primary-soft);
  border-radius: 0.8rem;
  font-size: var(--text-small);
  font-weight: 700;
}

.feature-result svg {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.digital-section {
  background: var(--surface);
}

.product-stories {
  display: grid;
  gap: clamp(4rem, 8vw, 7rem);
}

.product-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

.product-story-reverse {
  grid-template-columns: minmax(20rem, 0.92fr) minmax(0, 1.08fr);
}

.product-story-reverse .story-visual {
  grid-column: 2;
  grid-row: 1;
}

.product-story-reverse .story-copy {
  grid-column: 1;
  grid-row: 1;
}

.story-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(198, 183, 192, 0.44);
  border-radius: 2rem;
  background: var(--surface-soft);
  box-shadow: 0 24px 58px rgba(73, 39, 58, 0.12);
}

.story-visual img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-story:hover .story-visual img {
  transform: scale(1.018);
}

.story-copy {
  max-width: 31rem;
}

.story-kicker,
.store-kicker {
  margin-bottom: 0.85rem;
  color: var(--primary);
  font-size: var(--text-label);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-copy h3 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.15rem, 3.6vw, 3rem);
}

.story-copy > p:not(.story-kicker) {
  margin-bottom: 1.6rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.story-list {
  display: grid;
  gap: 0.8rem;
}

.story-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 650;
}

.story-list svg {
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.store-band,
.imagine-section {
  color: #fff;
  background:
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.1), transparent 45%),
    linear-gradient(145deg, #a83b73 0%, var(--primary) 52%, var(--primary-strong) 100%);
}

.store-band {
  overflow: hidden;
}

.store-band-inner {
  display: grid;
  grid-template-columns: minmax(20rem, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
  min-height: 43rem;
  padding-block: 5.5rem;
}

.store-band-copy {
  max-width: 32rem;
}

.store-band h2,
.imagine-section h2 {
  margin-bottom: 0.8rem;
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 2.75rem);
}

.store-band p {
  max-width: 37rem;
  margin-bottom: 1.7rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.store-band .store-kicker {
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.66);
}

.store-band-copy .button {
  margin-top: 1.6rem;
}

.store-band-visual {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2rem;
  box-shadow: 0 30px 75px rgba(23, 14, 22, 0.35);
  transform: rotate(1.1deg);
}

.store-band-visual img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
}

.store-badges-light {
  margin-bottom: 0;
}

.store-badges-light .store-badge {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.23);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.store-badges-light .store-badge svg {
  fill: currentColor;
  stroke: currentColor;
}

.store-badges-light .store-badge small {
  color: rgba(255, 255, 255, 0.72);
}

.testimonials-section {
  overflow: hidden;
  padding-bottom: 8rem;
}

.testimonial-scroller {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding: 0.5rem max(1rem, calc((100vw - var(--container)) / 2)) 1.5rem;
  scroll-padding-inline: max(1rem, calc((100vw - var(--container)) / 2));
  scroll-snap-type: x proximity;
  scrollbar-color: rgb(var(--primary-rgb) / 0.35) transparent;
  scrollbar-width: thin;
}

.testimonial-card {
  flex: 0 0 21rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 254, 253, 0.96);
  box-shadow: var(--shadow-card);
  scroll-snap-align: start;
}

.testimonial-card header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
}

.testimonial-card header > span:nth-child(2) {
  display: grid;
  min-width: 0;
  line-height: 1.25;
}

.testimonial-card header strong {
  overflow: hidden;
  font-size: var(--text-small);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.testimonial-card header small {
  color: var(--muted);
  font-size: 0.7rem;
}

.testimonial-card header svg {
  width: 1.15rem;
  height: 1.15rem;
  margin-left: auto;
  fill: none;
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #fff;
  background: linear-gradient(145deg, #a83b73, var(--primary-strong));
  border-radius: 0.8rem;
  font-weight: 700;
}

.testimonial-card blockquote {
  min-height: 5.85rem;
  margin: 1.15rem 1.15rem 0.6rem;
  padding: 1rem;
  border-radius: 0.85rem 1.35rem 1.35rem 0.85rem;
  background: var(--primary-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.stars {
  margin: 0 1.2rem 1rem;
  color: var(--primary);
}

.stars svg {
  width: 5.5rem;
  height: 1.1rem;
  fill: currentColor;
}

.results-section {
  background: var(--surface);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.2rem;
  max-width: 68rem;
  margin-inline: auto;
}

.result-card {
  grid-column: span 2;
  min-height: 11rem;
  padding: 2rem;
  color: #fff;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.12), transparent 48%),
    linear-gradient(145deg, #a83b73, var(--primary-strong));
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 32px rgb(var(--primary-rgb) / 0.18);
}

.result-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.result-card svg {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1.8rem;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.result-card p {
  margin: 0;
  font-family: inherit;
  font-size: 1.16rem;
  font-weight: 750;
  line-height: 1.35;
  text-wrap: balance;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 38rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 254, 253, 0.95);
  box-shadow: var(--shadow-card);
}

.pricing-card-featured {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.11), transparent 40%),
    linear-gradient(155deg, #a83b73 0%, var(--primary) 54%, var(--primary-strong) 100%);
  box-shadow: 0 22px 46px rgb(var(--primary-rgb) / 0.24);
  transform: translateY(-1.5rem);
}

.pricing-top {
  min-height: 8rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.pricing-card-featured .pricing-top {
  border-color: rgba(255, 255, 255, 0.25);
}

.pricing-card h3 {
  margin-bottom: 1.1rem;
  font-size: 1.62rem;
}

.pricing-card-featured h3 {
  color: #fff;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-bottom: 0.15rem;
  white-space: nowrap;
}

.price strong {
  color: inherit;
  font-size: 2.35rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.055em;
}

.price span {
  color: var(--muted);
  font-size: 0.8rem;
}

.pricing-card-featured .price span {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-top > small {
  color: var(--primary);
  font-size: 0.75rem;
}

.pricing-card-featured .pricing-top > small {
  color: rgba(255, 255, 255, 0.8);
}

.plan-features {
  display: grid;
  gap: 1.05rem;
  margin: 1.35rem 0 1.75rem;
}

.plan-features li {
  display: grid;
  gap: 0.15rem;
}

.plan-features strong {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  font-size: 0.92rem;
  line-height: 1.35;
}

.plan-features strong svg {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.plan-features span {
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.5;
}

.pricing-card-featured .plan-features span {
  color: rgba(255, 255, 255, 0.82);
}

.pricing-card-featured .plan-features strong svg {
  stroke: #fff;
}

.plan-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  width: max-content;
  margin: 0;
  padding: 0.35rem 1.15rem;
  border-radius: 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.plan-badge-light {
  color: var(--primary);
  background: var(--surface);
  box-shadow: 0 6px 18px rgba(73, 39, 58, 0.13);
}

.plan-badge-dark {
  color: #fff;
  background: var(--ink);
}

.pricing-checkout-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  max-width: 43rem;
  margin: 3.25rem auto 0;
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.5;
  text-align: center;
}

.pricing-checkout-note svg {
  flex: 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.comparison-section {
  background: var(--surface);
}

.comparison-wrap {
  overflow-x: auto;
  max-width: 60rem;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.comparison-wrap table {
  width: 100%;
  min-width: 43rem;
  border-collapse: collapse;
  background: var(--surface);
  font-size: 0.88rem;
}

.comparison-wrap th,
.comparison-wrap td {
  height: 3.8rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.comparison-wrap tr:last-child th,
.comparison-wrap tr:last-child td {
  border-bottom: 0;
}

.comparison-wrap th:first-child {
  width: 42%;
  text-align: left;
}

.comparison-wrap thead th {
  color: var(--muted);
  background: var(--primary-pale);
  font-weight: 600;
}

.comparison-wrap tbody th {
  font-weight: 500;
}

.comparison-wrap .aura-column {
  background: #fbf1f6;
}

.comparison-wrap thead .aura-column {
  color: var(--primary-strong);
  background: var(--primary-soft);
  font-weight: 800;
}

.status {
  display: inline-grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  font-size: 1.15rem;
  line-height: 1;
}

.status.no {
  color: var(--danger);
  background: #fff0f2;
}

.status.yes {
  color: var(--success);
  background: #eaf6ef;
}

.status svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.imagine-section {
  padding-block: 8.35rem;
}

.imagine-inner {
  max-width: 58rem;
}

.imagine-section h2 {
  margin-bottom: 2.7rem;
  text-align: center;
}

.imagine-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 48rem;
  margin-inline: auto;
}

.imagine-grid li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 4rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  line-height: 1.35;
}

.imagine-grid span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  color: var(--primary);
  background: #fff;
  border-radius: 0.45rem;
  font-weight: 800;
}

.imagine-grid span svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.faq-section {
  background: var(--surface);
}

.faq-container {
  max-width: 44rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.faq-item[open] {
  border-color: rgb(var(--primary-rgb) / 0.18);
  box-shadow: 0 14px 32px rgba(73, 39, 58, 0.1);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 4rem;
  padding: 1rem 3.4rem 1rem 1.35rem;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 1.4rem;
  width: 0.65rem;
  height: 0.65rem;
  content: "";
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: translateY(-65%) rotate(45deg);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-item p {
  margin: -0.1rem 1.35rem 1.35rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.final-section {
  padding-block: 7rem;
}

.final-card {
  max-width: 52rem;
  margin-inline: auto;
  padding: 4rem 4.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 254, 253, 0.94);
  box-shadow: 0 24px 55px rgba(73, 39, 58, 0.14);
  text-align: center;
}

.final-card h2 {
  margin-bottom: 1.3rem;
  font-size: clamp(2.6rem, 4.6vw, 3.55rem);
  text-wrap: balance;
}

.final-card > p {
  max-width: 44rem;
  margin: 0 auto 0.75rem;
  color: var(--muted);
  line-height: 1.65;
}

.final-card .button {
  margin-top: 1.35rem;
}

.final-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.9rem;
}

.final-tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.4rem 0.9rem;
  color: var(--primary-strong);
  background: var(--primary-soft);
  border-radius: 0.55rem;
  font-size: var(--text-label);
  font-weight: 600;
}

.final-tags svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-block: 5rem 1.6rem;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 5% 0%, rgb(var(--primary-rgb) / 0.32), transparent 28rem),
    var(--surface-dark-gradient);
}

.site-footer::after {
  position: absolute;
  right: -10rem;
  bottom: -15rem;
  width: 32rem;
  height: 32rem;
  border: 4.5rem solid rgba(205, 182, 217, 0.035);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(15rem, 1.45fr) repeat(4, minmax(8rem, 0.75fr));
  align-items: start;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 4.5rem;
}

.footer-intro {
  display: grid;
  justify-items: start;
  gap: 1.15rem;
  max-width: 20rem;
}

.footer-brand .brand-symbol {
  width: 2.85rem;
  height: 2.85rem;
}

.footer-brand .brand-wordmark {
  width: 9.6rem;
  height: auto;
}

.footer-intro > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.footer-platform-link {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 750;
  transition:
    color var(--transition),
    gap var(--transition);
}

.footer-platform-link:hover {
  gap: 0.75rem;
  color: #ffd7e6;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  font-weight: 650;
}

.footer-status i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #72c497;
  box-shadow: 0 0 0 0.25rem rgba(114, 196, 151, 0.1);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.72rem;
}

.footer-column h2 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.84rem;
  line-height: 1.45;
  transition:
    color var(--transition),
    transform var(--transition);
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-column a[aria-current="page"] {
  color: #fff;
  transform: translateX(0.18rem);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.68rem;
}

.footer-bottom p:last-child {
  text-align: right;
}

.error-page {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at 80% 15%, rgb(var(--primary-rgb) / 0.13), transparent 38%),
    linear-gradient(180deg, #fffafc, var(--surface-soft));
}

.error-page main {
  width: min(100%, 42rem);
}

.error-card {
  padding: clamp(2rem, 7vw, 4.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 254, 253, 0.94);
  box-shadow: 0 24px 55px rgba(73, 39, 58, 0.14);
  text-align: center;
}

.error-brand {
  margin-inline: auto;
}

.error-code {
  margin: 2rem 0 0.5rem;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.error-card h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 8vw, 4rem);
}

.error-card > p:not(.error-code) {
  max-width: 34rem;
  margin: 0 auto 1.8rem;
  color: var(--muted);
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 68rem) {
  .main-nav {
    gap: 1.35rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(25rem, 0.95fr);
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 5vw, 3.6rem);
  }

  .notification-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(27rem, 1.1fr);
    gap: 3rem;
  }

  .product-showcase {
    max-width: 60rem;
  }

  .product-story,
  .product-story-reverse {
    gap: 3rem;
  }

  .store-band-inner {
    gap: 3rem;
    min-height: 39rem;
  }

  .feature-card {
    min-height: 25rem;
  }

  .pricing-card {
    padding-inline: 1.45rem;
  }

  .price strong {
    font-size: 2rem;
  }

  .footer-main {
    grid-template-columns: minmax(15rem, 1.25fr) repeat(2, minmax(9rem, 1fr));
  }

  .footer-intro {
    grid-row: span 2;
  }
}

@media (max-width: 56rem) {
  :root {
    --container: 45rem;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-header.menu-open {
    border-bottom-color: rgba(255, 255, 255, 0.08);
    background:
      radial-gradient(circle at 8% -120%, rgb(var(--primary-rgb) / 0.46), transparent 28rem),
      var(--surface-dark-gradient);
    box-shadow: none;
  }

  .mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 0;
    display: block;
    min-height: 100dvh;
    padding-top: var(--header-height);
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    background:
      radial-gradient(circle at 90% 12%, rgb(var(--primary-rgb) / 0.35), transparent 24rem),
      radial-gradient(circle at 8% 92%, rgba(205, 182, 217, 0.1), transparent 25rem),
      var(--surface-dark-gradient);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.8rem);
    transition:
      opacity 300ms ease,
      transform 460ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 460ms;
  }

  .mobile-menu::before {
    position: fixed;
    right: -8rem;
    bottom: -10rem;
    width: 28rem;
    height: 28rem;
    border: 3.5rem solid rgba(255, 255, 255, 0.025);
    border-radius: 50%;
    content: "";
    pointer-events: none;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .mobile-menu-inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: calc(100dvh - var(--header-height));
    grid-template-rows: auto auto auto 1fr;
    align-content: center;
    gap: clamp(1.35rem, 4vh, 2.7rem);
    padding-block: clamp(2rem, 7vh, 4.5rem) 1.6rem;
  }

  .mobile-menu-intro,
  .mobile-menu-link,
  .mobile-menu-actions,
  .mobile-menu-legal {
    opacity: 0;
    transform: translateY(1rem);
    transition:
      opacity 260ms ease,
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-menu.is-open .mobile-menu-intro {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 90ms;
  }

  .mobile-menu-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu-intro > span {
    color: #e6a9c8;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-menu-intro p {
    max-width: 24rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.57);
    font-size: 0.82rem;
    line-height: 1.45;
    text-align: right;
  }

  .mobile-menu-nav {
    display: grid;
  }

  .mobile-menu-link {
    display: grid;
    grid-template-columns: 2.25rem minmax(0, 1fr);
    align-items: center;
    min-height: clamp(3.65rem, 9vh, 5.1rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: clamp(1.5rem, 4.5vw, 2.05rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1;
    transition:
      color var(--transition),
      padding-left var(--transition),
      opacity 260ms ease,
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-menu-link span {
    color: #e6a9c8;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
  }

  .mobile-menu-link:hover,
  .mobile-menu-link:focus-visible,
  .mobile-menu-link[aria-current="location"] {
    padding-left: 0.4rem;
    color: #f0bad5;
  }

  .mobile-menu.is-open .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu.is-open .mobile-menu-link:nth-child(1) { transition-delay: 140ms; }
  .mobile-menu.is-open .mobile-menu-link:nth-child(2) { transition-delay: 190ms; }
  .mobile-menu.is-open .mobile-menu-link:nth-child(3) { transition-delay: 240ms; }
  .mobile-menu.is-open .mobile-menu-link:nth-child(4) { transition-delay: 290ms; }
  .mobile-menu.is-open .mobile-menu-link:nth-child(5) { transition-delay: 340ms; }

  .mobile-menu-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.8rem;
  }

  .mobile-menu.is-open .mobile-menu-actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 390ms;
  }

  .mobile-account-link {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 3.6rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: var(--radius-sm);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 750;
  }

  .mobile-menu-legal {
    display: flex;
    align-self: end;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding-top: 0.6rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.74rem;
    font-weight: 650;
  }

  .mobile-menu.is-open .mobile-menu-legal {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 440ms;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "actions"
      "visual"
      "details";
    gap: 2rem;
    padding-block: 5rem 6.5rem;
  }

  .hero-copy {
    max-width: 43rem;
  }

  .hero-visual {
    justify-self: center;
    max-width: 37rem;
  }

  .hero-photo {
    aspect-ratio: 4 / 3;
  }

  .notification-layout {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .notification-copy {
    max-width: 40rem;
  }

  .notification-visual {
    order: -1;
    width: min(100%, 42rem);
    margin-inline: auto;
  }

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

  .problem-card:last-child {
    grid-column: span 2;
  }

  .product-showcase {
    margin-bottom: 3.5rem;
  }

  .product-story,
  .product-story-reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-story-reverse .story-visual,
  .product-story-reverse .story-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .story-copy {
    max-width: 40rem;
  }

  .store-band-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
  }

  .store-band-copy {
    max-width: 40rem;
  }

  .store-band-visual {
    transform: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 34rem;
    margin-inline: auto;
  }

  .pricing-card,
  .pricing-card-featured {
    min-height: auto;
    transform: none;
  }

  .result-card {
    grid-column: span 3;
  }

  .result-card:nth-child(4) {
    grid-column: span 3;
  }

  .result-card:last-child {
    grid-column: 2 / span 4;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 2rem;
  }

  .footer-intro {
    grid-row: auto;
    grid-column: 1 / -1;
    max-width: 32rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}

@media (max-width: 42rem) {
  :root {
    --header-height: 4.5rem;
  }

  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .brand .brand-symbol {
    width: 2.3rem;
    height: 2.3rem;
  }

  .brand .brand-wordmark {
    width: 8.5rem;
    height: auto;
  }

  .header-cta {
    display: none;
  }

  .header-login {
    display: none;
  }

  .access-dialog {
    width: min(calc(100% - 1rem), 45rem);
    max-height: calc(100dvh - 1rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }

  .access-dialog-panel {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }

  .access-dialog-heading {
    margin-bottom: 1.5rem;
    padding-right: 2.5rem;
  }

  .access-dialog-heading h2 {
    font-size: clamp(2rem, 9vw, 2.4rem);
  }

  .access-option {
    grid-template-columns: 2.75rem minmax(0, 1fr);
    gap: 0.8rem;
    min-height: 0;
    padding: 0.8rem;
  }

  .access-option-icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .access-option-status {
    grid-column: 2;
    justify-self: start;
    margin-top: 0.15rem;
  }

  .access-option-copy em {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .mobile-menu-inner {
    gap: 1.35rem;
    padding-block: clamp(1.5rem, 4vh, 2.6rem) 1.25rem;
  }

  .mobile-menu-intro p {
    display: none;
  }

  .mobile-menu-link {
    min-height: clamp(3.4rem, 8.4vh, 4.35rem);
    font-size: clamp(1.4rem, 6vw, 1.75rem);
  }

  .mobile-menu-actions {
    grid-template-columns: 1fr;
  }

  .mobile-menu-actions .button,
  .mobile-account-link {
    min-height: 3.3rem;
  }

  .mobile-menu-legal {
    gap: 1rem;
  }

  .hero {
    min-height: calc(100dvh - var(--header-height));
  }

  .hero-grid {
    gap: 1.8rem;
    padding-block: 3rem 4.5rem;
  }

  .eyebrow {
    margin-bottom: 1.6rem;
    font-size: 0.68rem;
  }

  .hero h1 {
    margin-bottom: 1.55rem;
    font-size: clamp(2.3rem, 9.85vw, 2.5rem);
    line-height: 1.05;
  }

  .hero-description {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-actions,
  .store-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .button,
  .store-badge {
    width: 100%;
  }

  .hero-copy-details {
    gap: 1.2rem;
  }

  .hero-actions .button {
    min-height: 3.15rem;
    padding-inline: 0.45rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .store-badge {
    min-width: 0;
    justify-content: center;
    padding-inline: 0.75rem;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 0.85rem;
  }

  .hero-benefits li:last-child {
    grid-column: 1 / -1;
  }

  .hero-photo {
    border-radius: var(--radius-lg);
  }

  .revenue-card {
    right: 0.75rem;
    bottom: -1.4rem;
    left: auto;
  }

  .section {
    padding-block: 5rem;
  }

  .section-title {
    margin-bottom: 3rem;
    font-size: clamp(2.2rem, 10vw, 2.75rem);
  }

  .section-subtitle {
    margin-top: -2rem;
    margin-bottom: 2.8rem;
  }

  .notification-layout {
    gap: 2.25rem;
  }

  .notification-copy h2 {
    font-size: clamp(2.2rem, 10vw, 2.65rem);
  }

  .notification-lead {
    font-size: 1rem;
  }

  .notification-copy .button {
    width: 100%;
  }

  .notification-visual > img {
    border-radius: var(--radius-md);
  }

  .notification-visual figcaption,
  .product-showcase-caption {
    position: static;
    max-width: none;
    margin-top: 0.8rem;
  }

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

  .problem-card:last-child {
    grid-column: auto;
  }

  .problem-card {
    min-height: 4.8rem;
    border-radius: var(--radius-md);
  }

  .problem-closing {
    margin-top: 2.5rem;
    font-size: 1.08rem;
  }

  .features-section .section-title br,
  .digital-section .section-title br,
  .results-section .section-title br,
  .testimonials-section .section-title br {
    display: none;
  }

  .product-showcase {
    margin: 0 -0.25rem 2.5rem;
  }

  .product-showcase-image {
    border-radius: var(--radius-md);
  }

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

  .feature-card {
    min-height: auto;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
  }

  .feature-heading h3 {
    font-size: 1.4rem;
  }

  .feature-result {
    margin-top: 1rem;
    border-radius: 1rem;
  }

  .product-stories {
    gap: 4.5rem;
  }

  .story-visual {
    border-radius: var(--radius-md);
  }

  .story-copy h3 {
    font-size: clamp(2rem, 9vw, 2.45rem);
  }

  .store-band,
  .imagine-section {
    padding-block: 4.8rem;
  }

  .store-band {
    padding-block: 0;
  }

  .store-band-inner {
    gap: 2.75rem;
    padding-block: 4.8rem;
  }

  .store-band h2,
  .imagine-section h2 {
    font-size: 2.25rem;
  }

  .store-band-copy .button {
    width: 100%;
  }

  .store-band-visual {
    border-radius: var(--radius-md);
  }

  .store-badges-light {
    width: 100%;
  }

  .testimonial-scroller {
    padding-inline: 1rem;
    scroll-padding-inline: 1rem;
  }

  .testimonial-card {
    flex-basis: min(19rem, calc(100vw - 3rem));
  }

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

  .result-card,
  .result-card:nth-child(4),
  .result-card:last-child {
    grid-column: auto;
  }

  .result-card {
    min-height: 10rem;
    padding: 1.6rem;
    border-radius: var(--radius-lg);
  }

  .pricing-card {
    padding: 1.6rem;
    border-radius: var(--radius-lg);
  }

  .comparison-section .container {
    width: calc(100% - 1rem);
  }

  .comparison-wrap {
    border-radius: var(--radius-md);
  }

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

  .imagine-grid li {
    border-radius: var(--radius-sm);
  }

  .faq-item {
    border-radius: var(--radius-md);
  }

  .final-card {
    padding: 3rem 1.35rem;
    border-radius: var(--radius-lg);
  }

  .final-card h2 {
    font-size: 2.45rem;
  }

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

  .final-tags {
    display: grid;
  }

  .site-footer {
    padding-top: 4rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.3rem;
    padding-bottom: 3.2rem;
  }

  .footer-intro {
    grid-column: auto;
  }

  .footer-column {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
