@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk-latin.woff2") format("woff2");
}

:root {
  --header-height: 68px;
  --motion-fast: 170ms;
  --motion-hover: 230ms;
  --motion-header: 250ms;
  --motion-reveal: 600ms;
  --motion-media: 750ms;
  --motion-stagger: 75ms;
  --motion-distance-small: 4px;
  --motion-distance-medium: 12px;
  --motion-distance-reveal: 18px;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --accent: #6ba6fd;
  --accent-strong: #2563eb;
  --accent-soft: #eff6ff;
  --heading: #111827;
  --ink: #0f172a;
  --muted: #5f6877;
  --line: #e5e7eb;
  --surface: #fff;
  --section: #f5f5f5;
  --canvas: #fff;
  --success: #10b981;
  --dark: #111827;
  --dark-soft: #1f2937;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.05);
  --radius: 16px;
  --radius-sm: 12px;
  --nail-mark: url("/assets/brand/nail-mark.svg");
  --nail-outline: url("/assets/brand/nail-outline.svg");
  --nail-trace: url("/assets/brand/nail-trace.svg");
  --nail-wash: rgba(37, 99, 235, 0.045);
  --nail-wash-soft: rgba(107, 166, 253, 0.035);
  --shell: min(1120px, calc(100% - 40px));
  --font: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "DM Sans", ui-sans-serif, system-ui, sans-serif;

  /* Compatibility aliases used by the existing templates. */
  --blue-950: var(--heading);
  --blue-900: #1e3a8a;
  --blue-800: var(--accent-strong);
  --blue-700: var(--accent-strong);
  --blue-600: var(--accent);
  --blue-100: var(--accent-soft);
  --blue-50: var(--section);
  --warm: var(--success);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: var(--accent-strong);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:focus-visible {
  color: #1e40af;
}

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

:focus-visible {
  outline: 3px solid var(--accent-strong);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--dark);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: #fff;
  border-bottom: 1px solid transparent;
  box-shadow: 0 0 0 rgba(15, 23, 42, 0);
  transition:
    background-color var(--motion-header) ease,
    border-color var(--motion-header) ease,
    box-shadow var(--motion-header) ease,
    backdrop-filter var(--motion-header) ease;
}

.header-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  transition: min-height var(--motion-header) var(--motion-ease);
}

html.is-scrolled {
  --header-height: 60px;
}

html.is-scrolled .site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(203, 213, 225, 0.72);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.045);
  backdrop-filter: blur(14px);
}

html.is-scrolled .header-inner {
  min-height: 60px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--heading);
  font-size: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand img {
  border-radius: 50%;
}

.brand span span {
  color: var(--accent-strong);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-actions .button {
  white-space: nowrap;
}

.mobile-menu-help {
  display: none;
}

.site-nav li a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 10px;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
}

.site-nav li a:focus-visible {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  gap: 5px;
  place-content: center;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--heading);
  border-radius: 2px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 19px;
  color: var(--heading);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 12px;
  box-shadow: none;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  isolation: isolate;
  transition:
    transform var(--motion-hover) var(--motion-ease),
    background-color var(--motion-hover) ease,
    border-color var(--motion-hover) ease,
    box-shadow var(--motion-hover) ease;
}

.button:not(.button-small)::after {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: -12%;
  width: 64px;
  height: 64px;
  background: currentColor;
  content: "";
  mask: var(--nail-mark) center / contain no-repeat;
  opacity: 0;
  pointer-events: none;
  transform: translate(-38%, -50%) rotate(-18deg);
  transition: opacity 0.2s ease, transform 0.28s ease;
  -webkit-mask: var(--nail-mark) center / contain no-repeat;
}

.button:not(.button-small):focus-visible::after {
  opacity: 0.13;
  transform: translate(185%, -50%) rotate(-18deg);
}

.button:focus-visible {
  color: var(--heading);
  background: #5798f5;
  border-color: #5798f5;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
  transform: translateY(-2px);
}

.button:active {
  transform: scale(0.98);
}

.button-small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 14px;
}

.button-secondary {
  color: var(--heading);
  background: #fff;
  border-color: #d1d5db;
  box-shadow: none;
}

.button-secondary:focus-visible {
  color: var(--accent-strong);
  background: var(--accent-soft);
  border-color: #93c5fd;
  box-shadow: none;
}

.button .icon {
  transition: opacity var(--motion-fast) ease, transform var(--motion-fast) var(--motion-ease);
}

.button:focus-visible .icon {
  transform: translateX(var(--motion-distance-small));
}

.button .icon {
  width: 19px;
  height: 19px;
}

.google-play-mark {
  width: auto;
  height: 20px;
  object-fit: contain;
}

.button-small .google-play-mark {
  height: 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.platform-actions.is-android [data-cta-id$="_android"] {
  order: -1;
}

.hero-scroll {
  position: relative;
  height: 135vh;
  height: 135svh;
  background: #eff6ff;
}

.hero-sticky {
  position: sticky;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  height: calc(100svh - var(--header-height));
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 38%, rgba(104, 160, 255, 0.22), transparent 34%),
    linear-gradient(110deg, #f8fbff 0%, #f9fbff 43%, #edf5ff 100%);
  container-type: size;
  isolation: isolate;
}

.hero-sticky::after {
  position: absolute;
  z-index: 2;
  top: -25%;
  right: -11%;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  background: rgba(37, 99, 235, 0.04);
  content: "";
  mask: var(--nail-outline) center / contain no-repeat;
  pointer-events: none;
  transform: rotate(-18deg);
  -webkit-mask: var(--nail-outline) center / contain no-repeat;
}

.page-hero::after,
.final-cta::after {
  position: absolute;
  z-index: 0;
  width: clamp(290px, 37vw, 540px);
  aspect-ratio: 1;
  background: var(--nail-wash);
  content: "";
  mask: var(--nail-mark) center / contain no-repeat;
  pointer-events: none;
  transform: rotate(-18deg);
  -webkit-mask: var(--nail-mark) center / contain no-repeat;
}

.hero-stage,
.hero-product-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100cqw, 169.231cqh);
  aspect-ratio: 22 / 13;
  transform: translate(-50%, -50%);
}

.hero-product-stage {
  z-index: 3;
}

.hero-art,
.hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art img {
  object-fit: fill;
}

.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 251, 255, 1) 0%,
    rgba(248, 251, 255, 0.97) 35%,
    rgba(248, 251, 255, 0.48) 57%,
    rgba(248, 251, 255, 0) 78%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  height: 100%;
  padding-top: clamp(64px, 9cqh, 108px);
}

.hero-copy {
  width: min(520px, 47vw);
}

.hero-copy .lead {
  max-width: 520px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--heading);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  text-wrap: balance;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.5vw, 4.75rem);
  letter-spacing: -0.055em;
}

h1 span {
  color: var(--accent-strong);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.05rem, 3.5vw, 3rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 670px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.6;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 26px 0 0;
  color: #4b5563;
  font-size: 14px;
  font-weight: 600;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-list .icon {
  width: 18px;
  color: var(--success);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  color: #4b5563;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-product-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-screen {
  --hero-screen-height: 28.1%;
  --hero-screen-left: 51.65%;
  --hero-screen-skew: 5deg;
  --hero-screen-top: 28.4%;
  --hero-screen-width: 7.2%;

  position: absolute;
  top: var(--hero-screen-top);
  left: var(--hero-screen-left);
  width: var(--hero-screen-width);
  height: var(--hero-screen-height);
  overflow: hidden;
  background: #fff;
  border-radius: 10% / 5%;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.12);
  transform: skewX(var(--hero-screen-skew));
  transform-origin: top left;
}

.hero-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.hero-message {
  position: absolute;
  top: 47.5%;
  left: 49%;
  width: 14.5%;
  min-width: 190px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(25, 50, 90, 0.12);
  backdrop-filter: blur(12px);
}

.hero-message::after {
  position: absolute;
  top: 22px;
  right: -9px;
  width: 16px;
  height: 16px;
  background: inherit;
  border-top: 1px solid rgba(191, 219, 254, 0.9);
  border-right: 1px solid rgba(191, 219, 254, 0.9);
  content: "";
  transform: rotate(45deg);
}

.hero-message > span {
  display: block;
  margin-bottom: 9px;
  color: var(--accent-strong);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-message p {
  margin-bottom: 12px;
  color: var(--heading);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-message div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hero-message b {
  padding: 6px 9px;
  color: #166534;
  background: #dcfce7;
  border-radius: 7px;
  font-size: 11px;
}

.home-content-sheet {
  position: relative;
  z-index: 5;
  margin-top: -18vh;
  margin-top: -18svh;
  background: #fff;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -24px 60px rgba(25, 50, 90, 0.08);
}

.home-content-sheet > .proof-bar {
  overflow: hidden;
  border-radius: 32px 32px 0 0;
}

.browser-frame {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.browser-frame img {
  width: 100%;
}

.proof-bar {
  background: #fff;
  border-block: 1px solid var(--line);
}

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

.proof-grid > * {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
  color: var(--heading);
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.proof-grid > *:last-child {
  border-right: 0;
}

.proof-grid strong {
  color: var(--heading);
  font-size: 18px;
  white-space: nowrap;
}

.proof-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.proof-grid small {
  font-size: 10px;
}

.section {
  position: relative;
  padding: 92px 0;
}

.section-tint {
  background: var(--section);
  border-block: 1px solid var(--line);
}

.brand-divider {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  height: 1px;
  margin: 0 auto;
  background: var(--line);
}

.brand-divider::after {
  position: absolute;
  top: 50%;
  left: clamp(20px, 12vw, 150px);
  width: 104px;
  height: 12px;
  background: var(--accent);
  content: "";
  mask: var(--nail-trace) center / contain no-repeat;
  opacity: 0.72;
  transform: translateY(-50%);
  -webkit-mask: var(--nail-trace) center / contain no-repeat;
}

.mel-media img {
  width: 100%;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading > p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 25px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
  transition:
    border-color var(--motion-hover) ease,
    box-shadow var(--motion-hover) ease,
    transform var(--motion-hover) var(--motion-ease);
}

.card:focus-within {
  border-color: #bfdbfe;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.card-kicker,
.store-card > span,
.plan-card > span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.card-icon {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  place-items: center;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.card-topline .card-icon {
  margin-bottom: 0;
}

.card-icon .icon {
  width: 24px;
  height: 24px;
}

.card-index {
  color: var(--accent-strong);
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.card:focus-within .card-icon {
  color: #fff;
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.store-card,
.demo-example {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.store-card::after,
.demo-example::after {
  position: absolute;
  z-index: 0;
  right: -44px;
  bottom: -44px;
  width: 150px;
  height: 150px;
  background: var(--nail-wash-soft);
  content: "";
  mask: var(--nail-mark) center / contain no-repeat;
  pointer-events: none;
  transform: rotate(-18deg);
  -webkit-mask: var(--nail-mark) center / contain no-repeat;
}

.store-card > *,
.demo-example > * {
  position: relative;
  z-index: 1;
}

.demo-example.is-selected::after {
  background: rgba(37, 99, 235, 0.07);
}

.nail-badge {
  display: none;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  color: #1d4ed8;
  background: var(--accent-soft);
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.nail-badge::before {
  display: block;
  width: 13px;
  height: 13px;
  background: currentColor;
  content: "";
  mask: var(--nail-mark) center / contain no-repeat;
  transform: rotate(-18deg);
  -webkit-mask: var(--nail-mark) center / contain no-repeat;
}

.nail-badge[data-nail-tone="recommended"] { display: inline-flex; color: #166534; background: #f0fdf4; border-color: #bbf7d0; }
.nail-badge[data-nail-tone="featured"] { color: #7e22ce; background: #faf5ff; border-color: #e9d5ff; }
.nail-badge[data-nail-tone="new"] { color: #9a3412; background: #fff7ed; border-color: #fed7aa; }
.nail-badge[data-nail-tone="guide"] { color: #1d4ed8; background: var(--accent-soft); border-color: #bfdbfe; }
.nail-badge[data-nail-tone="safe"] { color: #166534; background: #f0fdf4; border-color: #bbf7d0; }

.demo-example.is-selected .nail-badge[data-nail-tone="selected"] {
  display: inline-flex;
}

.store-card-tags {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  flex-direction: column;
}

.audience-card {
  min-height: 320px;
}

.audience-card .button {
  margin-top: 24px;
}

.guide-grid {
  display: grid;
  align-items: center;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
}

.steps {
  display: grid;
  gap: 22px;
  padding: 0;
  margin: 42px 0 36px;
  list-style: none;
}

.steps li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.steps li > span {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--accent-strong);
  border-radius: 12px;
  font-weight: 700;
  place-items: center;
}

.steps h3 {
  margin: 2px 0 5px;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.mel-panel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--accent-soft), #fafafa);
  border: 1px solid #bfdbfe;
  border-radius: 22px;
}

.home-guide-mel {
  position: absolute;
  right: -24px;
  bottom: -82px;
  width: min(112%, 360px);
}

.home-guide-mel img {
  object-fit: contain;
}

.mel-note {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 24px;
  max-width: 250px;
  padding: 17px 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.mel-note span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.help-heading {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 232px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: none;
  padding: 38px 248px 38px 42px;
  margin-bottom: 42px;
  background:
    radial-gradient(circle at 86% 38%, rgba(112, 169, 255, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(235, 245, 255, 0.92), rgba(249, 252, 255, 0.72));
  border: 1px solid rgba(76, 139, 255, 0.28);
  border-radius: 24px;
}

.help-heading::before {
  position: absolute;
  inset: -35% -4% -35% 54%;
  background: rgba(37, 99, 235, 0.9);
  content: "";
  opacity: 0.04;
  pointer-events: none;
  mask: var(--nail-outline) center / contain no-repeat;
  -webkit-mask: var(--nail-outline) center / contain no-repeat;
}

.help-heading .section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.home-help-mel {
  position: absolute;
  z-index: 1;
  right: 38px;
  bottom: -5px;
  width: 190px;
  filter: drop-shadow(0 16px 24px rgba(60, 95, 145, 0.12));
}

.home-help-mel img {
  display: block;
  width: 100%;
  height: auto;
}

.feature-card {
  min-height: 230px;
}

.feature-card .card-kicker,
.store-card .card-kicker {
  margin: 0;
  text-align: right;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.demo-callout {
  display: grid;
  align-items: center;
  gap: 32px;
  padding: clamp(28px, 5vw, 48px);
  background: #fff;
  border: 1px solid #bfdbfe;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  grid-template-columns: minmax(0, 1fr) auto;
}

.demo-callout h2 {
  margin-bottom: 12px;
}

.demo-callout p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.demo-callout-action {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.demo-callout-action .card-icon {
  margin: 0;
}

.developer-band {
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border-block: 1px solid var(--line);
}

.developer-band h2 {
  color: var(--heading);
}

.developer-band p {
  color: var(--muted);
}

.developer-band .eyebrow {
  color: var(--accent-strong);
}

.final-cta .button-secondary {
  color: var(--heading);
  border-color: rgba(17, 24, 39, 0.38);
  background: transparent;
}

.final-cta .button-secondary:focus-visible {
  color: var(--heading);
  background: #fff;
  border-color: #fff;
}

.dev-grid,
.dev-proof {
  display: grid;
  align-items: center;
  gap: 64px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

pre {
  overflow-x: auto;
  padding: 30px;
  margin: 0;
  color: #e5e7eb;
  background: var(--dark);
  border: 1px solid #374151;
  border-radius: var(--radius);
  font: 14px/1.75 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

pre span {
  color: #93c5fd;
}

.screens-grid {
  display: grid;
  align-items: start;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.screen-card {
  overflow: hidden;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.screen-wide {
  grid-column: span 2;
}

.screen-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.screen-media {
  display: block;
  overflow: hidden;
  min-height: 1px;
  background:
    linear-gradient(110deg, rgba(219, 234, 254, 0.45) 8%, rgba(255, 255, 255, 0.9) 18%, rgba(219, 234, 254, 0.45) 33%),
    #eff6ff;
  background-size: 220% 100%;
}

.screen-media img {
  display: block;
}

.screen-card.screen-mobile {
  width: min(100%, 390px);
  margin-inline: auto;
}

.screen-card.screen-mobile img {
  aspect-ratio: 390 / 844;
  object-fit: contain;
}

.screen-card figcaption {
  display: flex;
  gap: 8px;
  padding: 18px 22px;
  color: var(--muted);
  font-size: 14px;
  flex-direction: column;
}

.screen-card figcaption strong {
  color: var(--heading);
  font-size: 16px;
}

.use-cases .card {
  min-height: 200px;
  background: #fff;
}

.pricing-preview {
  color: var(--ink);
  background: var(--section);
  border-block: 1px solid var(--line);
}

.pricing-callout {
  display: grid;
  align-items: center;
  gap: 68px;
  grid-template-columns: minmax(0, 1.4fr) minmax(270px, 0.6fr);
}

.pricing-callout h2 {
  color: var(--heading);
}

.pricing-callout p {
  color: var(--muted);
}

.pricing-mini {
  display: flex;
  padding: 28px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
  flex-direction: column;
}

.pricing-mini > strong {
  margin: 10px 0;
  color: var(--heading);
  font-size: 54px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.pricing-mini > strong small {
  font-size: 15px;
  letter-spacing: 0;
}

.pricing-mini .button {
  margin-top: 20px;
}

.free-plan-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 6vw, 64px);
  text-align: center;
  background: linear-gradient(135deg, var(--accent-soft), #fff);
  border: 1px solid #bfdbfe;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.free-plan-card::after {
  position: absolute;
  z-index: 0;
  right: -90px;
  bottom: -130px;
  width: 330px;
  aspect-ratio: 1;
  background: var(--nail-wash);
  content: "";
  mask: var(--nail-mark) center / contain no-repeat;
  pointer-events: none;
  transform: rotate(-18deg);
  -webkit-mask: var(--nail-mark) center / contain no-repeat;
}

.free-plan-card > * {
  position: relative;
  z-index: 1;
}

.free-plan-card h2 {
  max-width: 650px;
  margin-inline: auto;
}

.free-plan-card > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.free-plan-card .button-row {
  justify-content: center;
}

.trust-card {
  color: inherit;
  text-decoration: none;
}

.download-band {
  background: var(--accent-soft);
  border-block: 1px solid #bfdbfe;
}

.download-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.download-grid > div:first-child {
  max-width: 680px;
}

.download-grid .button-row {
  flex: 0 0 auto;
  margin-top: 0;
  flex-direction: column;
}

.faq-layout {
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 4px;
  color: var(--heading);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.faq-item button span {
  color: var(--accent-strong);
  font-size: 28px;
  font-weight: 400;
}

.faq-item [role="region"] {
  padding: 0 38px 24px 4px;
  color: var(--muted);
}

.faq-item [role="region"] p {
  margin-bottom: 10px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  text-align: center;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.3), transparent 28%),
    linear-gradient(135deg, #6ba6fd, #8ab9fd);
  isolation: isolate;
}

.final-cta::after {
  right: -92px;
  bottom: -235px;
  background: rgba(255, 255, 255, 0.22);
}

.final-cta .shell {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  color: var(--heading);
}

.final-cta .eyebrow {
  color: #172554;
}

.final-cta .button:not(.button-secondary) {
  color: var(--accent-strong);
  background: #fff;
  border-color: #fff;
}

.final-cta .button:not(.button-secondary):focus-visible {
  color: #1e40af;
  background: var(--accent-soft);
  border-color: var(--accent-soft);
}

.final-cta .button-row {
  justify-content: center;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
  text-align: center;
  background:
    radial-gradient(circle at 50% -10%, rgba(107, 166, 253, 0.18), transparent 42%),
    #fafafa;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.page-hero::after {
  top: -245px;
  left: -165px;
  background: rgba(37, 99, 235, 0.035);
}

.page-hero .shell {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
}

.page-hero .lead {
  margin-inline: auto;
}

.page-hero .button-row {
  justify-content: center;
}

.breadcrumbs {
  margin-bottom: 34px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 8px;
  color: #9ca3af;
  content: "/";
}

.breadcrumbs a {
  color: var(--accent-strong);
  text-decoration: none;
}

.guide-hub-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 74px;
  background:
    radial-gradient(circle at 9% 10%, rgba(107, 166, 253, 0.16), transparent 32%),
    linear-gradient(180deg, #fff, #fafafa);
  isolation: isolate;
}

.guide-hub-hero::after {
  position: absolute;
  z-index: -1;
  right: -180px;
  bottom: -270px;
  width: 600px;
  height: 600px;
  background: rgba(37, 99, 235, 0.035);
  content: "";
  mask: var(--nail-mark) center / contain no-repeat;
  transform: rotate(-18deg);
  -webkit-mask: var(--nail-mark) center / contain no-repeat;
}

.guide-hub-hero-grid {
  display: grid;
  align-items: center;
  gap: 72px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
}

.guide-hub-hero h1,
.guide-page-hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
}

.guide-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0;
  margin: 28px 0 0;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.guide-promises li::before {
  margin-right: 7px;
  color: #16a34a;
  content: "✓";
}

.guide-mel {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--accent-soft), #fff);
  border: 1px solid #bfdbfe;
  border-radius: 24px;
}

.guide-mel picture img {
  position: absolute;
  right: -9%;
  bottom: -31%;
  width: 98%;
}

.guide-mel > div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 17px 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.guide-mel > div span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.guide-path {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-path-card {
  display: flex;
  min-width: 0;
  min-height: 390px;
  flex-direction: column;
}

.guide-path-card > .eyebrow {
  margin-bottom: 10px;
}

.guide-path-card h3 a {
  color: var(--heading);
  text-decoration: none;
}

.guide-card-outcome {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding-top: 18px;
  margin-top: 22px;
  color: #166534;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.45;
}

.guide-card-outcome > span {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  background: #dcfce7;
  border-radius: 50%;
  place-items: center;
}

.guide-card-outcome .icon {
  width: 16px;
  height: 16px;
}

.guide-card-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 24px;
  font-weight: 750;
}

.guide-support {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}

.guide-support > div {
  max-width: 720px;
}

.guide-support p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.guide-page-hero {
  padding: 48px 0 72px;
  background:
    radial-gradient(circle at 50% -20%, rgba(107, 166, 253, 0.16), transparent 48%),
    #fafafa;
  border-bottom: 1px solid var(--line);
}

.guide-page-hero .lead {
  max-width: 740px;
}

.guide-outcome {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 13px 16px;
  margin-top: 10px;
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 13px;
}

.guide-outcome > .icon {
  flex: 0 0 24px;
}

.guide-outcome span {
  display: grid;
}

.guide-outcome small {
  color: #15803d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.guide-outcome strong {
  color: #14532d;
}

.guide-article-section {
  background: #fff;
}

.guide-article-layout {
  display: grid;
  align-items: start;
  gap: 62px;
  grid-template-columns: 250px minmax(0, 1fr);
}

.guide-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
}

.guide-sidebar > div {
  padding: 20px;
  background: var(--section);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.guide-sidebar ol {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.guide-sidebar li {
  display: grid;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 9px;
  grid-template-columns: 28px 1fr;
}

.guide-sidebar li[aria-current="step"] {
  background: var(--accent-soft);
}

.guide-sidebar li > span {
  display: grid;
  width: 28px;
  height: 28px;
  color: var(--accent-strong);
  background: #fff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  place-items: center;
}

.guide-sidebar li a {
  color: var(--heading);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.guide-technical-link strong {
  display: block;
  margin-bottom: 8px;
  color: var(--heading);
  font-size: 13px;
}

.guide-technical-link a {
  font-size: 13px;
  font-weight: 750;
}

.guide-article {
  min-width: 0;
  max-width: 790px;
}

.guide-callout {
  margin: 0 0 38px;
}

.guide-callout a {
  display: inline-block;
  margin-top: 12px;
  font-weight: 750;
}

.guide-callout-soft {
  padding: 23px 26px;
  color: #1e3a8a;
  background: var(--accent-soft);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-sm);
}

.guide-callout-soft p {
  margin: 6px 0 0;
  color: #334155;
}

.guide-screen {
  margin-bottom: 52px;
}

.guide-screen.screen-wide {
  width: 100%;
  grid-column: auto;
}

.guide-stepper {
  padding: 0;
  margin: 0;
  list-style: none;
}

.guide-stepper > li {
  position: relative;
  display: grid;
  gap: 20px;
  padding-bottom: 52px;
  grid-template-columns: 52px minmax(0, 1fr);
}

.guide-stepper > li:not(:last-child)::after {
  position: absolute;
  top: 52px;
  bottom: 0;
  left: 25px;
  width: 2px;
  background: #dbeafe;
  content: "";
}

.guide-step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  color: #fff;
  background: var(--accent-strong);
  border: 5px solid #eff6ff;
  border-radius: 16px;
  font-weight: 800;
  place-items: center;
}

.guide-stepper h2 {
  margin: 2px 0 9px;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.guide-stepper p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.guide-step-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 750;
}

.guide-next {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 5vw, 42px);
  margin-top: 4px;
  background: linear-gradient(145deg, var(--accent-soft), #fff);
  border: 1px solid #bfdbfe;
  border-radius: 20px;
}

.guide-next::after {
  position: absolute;
  right: -58px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  background: rgba(37, 99, 235, 0.045);
  content: "";
  mask: var(--nail-mark) center / contain no-repeat;
  pointer-events: none;
  transform: rotate(-18deg);
  -webkit-mask: var(--nail-mark) center / contain no-repeat;
}

.guide-next > * {
  position: relative;
  z-index: 1;
}

.guide-next h2 {
  margin-bottom: 8px;
}

.guide-next p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.split-heading {
  display: grid;
  align-items: start;
  gap: 70px;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
}

.feature-group:nth-child(odd) {
  background: var(--section);
  border-block: 1px solid var(--line);
}

.feature-detail {
  min-height: 220px;
}

.feature-visual {
  max-width: 960px;
  margin-top: 38px;
}

.feature-companion {
  max-width: 960px;
}

.feature-companion-card {
  display: grid;
  overflow: hidden;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(76, 139, 255, 0.3);
  border-radius: 24px;
  grid-template-columns: minmax(0, 63fr) minmax(320px, 37fr);
  isolation: isolate;
}

.feature-companion-ui {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #fff;
  border-right: 1px solid #dbeafe;
}

.feature-companion-ui .screen-media {
  height: 520px;
}

.feature-companion-ui .screen-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 58%;
}

.feature-companion-ui figcaption {
  display: flex;
  min-height: 96px;
  gap: 8px;
  padding: 20px 24px;
  color: var(--muted);
  font-size: 14px;
  flex-direction: column;
}

.feature-companion-ui figcaption strong {
  color: var(--heading);
  font-size: 16px;
}

.feature-mel-panel {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background:
    radial-gradient(circle at 78% 38%, rgba(112, 169, 255, 0.24), transparent 42%),
    linear-gradient(135deg, rgba(235, 245, 255, 0.94), rgba(249, 252, 255, 0.72));
  border: 1px solid #bfdbfe;
  border-radius: 22px;
  isolation: isolate;
}

.feature-mel-panel::before {
  position: absolute;
  z-index: 0;
  inset: -20%;
  background: rgba(37, 99, 235, 0.04);
  content: "";
  mask: var(--nail-outline) 85% 50% / 65% no-repeat;
  pointer-events: none;
  -webkit-mask: var(--nail-outline) 85% 50% / 65% no-repeat;
}

.feature-message-bubbles {
  position: absolute;
  z-index: 2;
  top: 26%;
  left: 8%;
  width: 126px;
  height: 118px;
  pointer-events: none;
}

.feature-message-bubbles i {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #93c5fd;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.08);
}

.feature-message-bubbles i:nth-child(1) {
  top: 0;
  right: 0;
  width: 58px;
  height: 30px;
}

.feature-message-bubbles i:nth-child(2) {
  top: 42px;
  left: 20px;
  width: 42px;
  height: 22px;
}

.feature-message-bubbles i:nth-child(3) {
  bottom: 0;
  left: 0;
  width: 34px;
  height: 18px;
}

.feature-companion .feature-mel-panel {
  min-height: 100%;
  border: 0;
  border-radius: 0;
}

.features-messages-mel {
  position: absolute;
  z-index: 1;
  right: -12px;
  bottom: -12px;
  display: block;
  width: auto;
  height: 370px;
}

.features-messages-mel img,
.features-analytics-mel img {
  width: auto;
  height: 100%;
}

.feature-growth-layout {
  display: grid;
  align-items: start;
  gap: 30px 56px;
  grid-template-areas:
    "heading actions"
    "visual actions";
  grid-template-columns: minmax(380px, 480px) minmax(0, 1fr);
}

.feature-growth-heading {
  grid-area: heading;
}

.feature-growth-actions {
  align-content: start;
  grid-area: actions;
  grid-template-columns: 1fr;
}

.feature-growth-visual {
  position: relative;
  width: 100%;
  grid-area: visual;
}

.feature-growth-visual .feature-mel-panel {
  width: 100%;
  min-height: 370px;
}

.features-analytics-mel {
  position: absolute;
  z-index: 1;
  right: -8px;
  bottom: -105px;
  display: block;
  width: 440px;
  height: auto;
}

.features-analytics-mel img {
  width: 100%;
  height: auto;
}

.feature-growth-visual .feature-mel-panel::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 251, 255, 0.2) 0 42%, rgba(248, 251, 255, 0.08) 56%, transparent 72%);
  content: "";
  pointer-events: none;
}

.feature-detail a,
.plan-card a {
  display: inline-block;
  margin-top: 22px;
  font-weight: 700;
}

.workflow-card {
  min-height: 250px;
}

.dev-proof {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.dev-proof::after {
  position: absolute;
  z-index: 0;
  top: -145px;
  left: -130px;
  width: 330px;
  aspect-ratio: 1;
  background: rgba(37, 99, 235, 0.07);
  content: "";
  mask: var(--nail-outline) center / contain no-repeat;
  pointer-events: none;
  transform: rotate(-18deg);
  -webkit-mask: var(--nail-outline) center / contain no-repeat;
}

.dev-proof > * {
  position: relative;
  z-index: 1;
}

.dev-proof pre {
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
}

.capability-list {
  display: grid;
  gap: 18px;
}

.capability-list > div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.capability-list .icon {
  flex: 0 0 38px;
  width: 38px;
  color: var(--accent-strong);
}

.capability-list span {
  color: var(--muted);
}

.capability-list strong {
  display: block;
  color: var(--heading);
}

.source-note {
  display: grid;
  align-items: center;
  gap: 12px 22px;
  padding: 20px 24px;
  margin-bottom: 28px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  grid-template-columns: auto 1fr auto;
}

.source-note span {
  color: #713f12;
  font-size: 14px;
}

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

.plan-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
}

.plan-card > strong {
  margin-bottom: 12px;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.plan-card > strong small {
  font-size: 14px;
  letter-spacing: 0;
}

.plan-card > small {
  color: var(--muted);
}

.plan-card a {
  margin-top: auto;
}

.prose {
  color: var(--muted);
  font-size: 18px;
}

.store-intro {
  position: relative;
  display: grid;
  min-height: 305px;
  align-items: end;
  gap: 8px;
  margin-bottom: 16px;
  grid-template-columns: minmax(0, 600px) 340px;
  justify-content: start;
}

.store-intro .section-heading {
  margin-bottom: 0;
}

.store-intro-art {
  position: relative;
  overflow: hidden;
  width: 340px;
  height: 305px;
  justify-self: start;
  isolation: isolate;
}

.store-intro-art::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(circle at 72% 42%, rgba(112, 169, 255, 0.22), transparent 58%);
  content: "";
}

.store-intro-art::after {
  position: absolute;
  z-index: 0;
  right: -42px;
  bottom: -72px;
  width: 220px;
  aspect-ratio: 1;
  background: rgba(37, 99, 235, 0.04);
  content: "";
  mask: var(--nail-outline) center / contain no-repeat;
  pointer-events: none;
  transform: rotate(-16deg);
  -webkit-mask: var(--nail-outline) center / contain no-repeat;
}

.store-chooser-mel {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  display: block;
  width: auto;
  height: 305px;
}

.store-chooser-mel img {
  width: auto;
  height: 100%;
}

.store-choice-cards {
  position: absolute;
  z-index: 2;
  top: 33px;
  left: 89px;
  width: 142px;
  height: 92px;
  pointer-events: none;
}

.store-choice-cards i {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #93c5fd;
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.08);
}

.store-choice-cards i:nth-child(1) {
  top: 0;
  left: 0;
  width: 43px;
  height: 66px;
  transform: rotate(6deg);
}

.store-choice-cards i:nth-child(2) {
  top: 12px;
  left: 48px;
  width: 43px;
  height: 66px;
  transform: rotate(3deg);
}

.store-choice-cards i:nth-child(3) {
  top: 22px;
  left: 96px;
  width: 42px;
  height: 65px;
  transform: rotate(2deg);
}

.store-card {
  display: flex;
  min-height: 414px;
  flex-direction: column;
}

.store-preview {
  padding: 14px;
  margin: 4px 0 20px;
  background: linear-gradient(145deg, #f0fdf4, #fff);
  border: 1px solid #bbf7d0;
  border-radius: 12px;
}

.store-preview-label {
  display: block;
  color: #15803d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.store-preview-message {
  display: block;
  margin: 8px 0 10px;
  color: var(--heading);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.store-preview code {
  display: block;
  overflow: hidden;
  padding: 7px 8px;
  margin-bottom: 9px;
  color: #166534;
  background: #fff;
  border: 1px solid #bbf7d0;
  border-radius: 6px;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-preview-buttons,
.store-preview-next > div {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.store-preview-buttons i,
.store-preview-next i {
  display: inline-block;
  padding: 6px 8px;
  color: #166534;
  background: #dcfce7;
  border-radius: 7px;
  font-size: 11px;
  font-style: normal;
}

.store-preview-next {
  display: grid;
  gap: 7px;
  padding-top: 9px;
  margin-top: 9px;
  border-top: 1px solid #bbf7d0;
}

.store-preview-next > span {
  color: #16a34a;
  font-weight: 800;
}

.store-preview-next strong,
.store-preview > small {
  color: #166534;
  font-size: 11px;
}

.store-card small strong {
  display: block;
  margin-bottom: 4px;
  color: var(--heading);
}

.store-actions {
  margin-top: auto;
}

.store-actions .button {
  width: 100%;
  margin-top: 22px;
}

.pricing-detail {
  margin: 18px 0 0;
  font-weight: 750;
}

.store-card small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}

.install-flow {
  display: grid;
  width: min(100%, 820px);
  min-height: 310px;
  align-items: end;
  gap: 12px 34px;
  padding: 30px;
  margin-inline: auto;
  grid-column: 1 / -1;
  grid-template-areas:
    "heading heading"
    "steps art";
  grid-template-columns: minmax(0, 1fr) 240px;
  justify-self: center;
}

.install-flow > .eyebrow {
  margin: 0;
  grid-area: heading;
}

.install-flow .steps {
  grid-area: steps;
}

.install-flow-art {
  position: relative;
  overflow: hidden;
  height: 260px;
  align-self: end;
  background: radial-gradient(circle at 58% 45%, rgba(112, 169, 255, 0.2), transparent 62%);
  grid-area: art;
}

.store-recommendation-mel {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: auto;
  height: 250px;
}

.store-recommendation-mel img {
  width: auto;
  height: 100%;
}

.agency-flow {
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.agency-flow li {
  position: relative;
  padding: 0 30px;
  border-left: 1px solid var(--line);
}

.agency-flow li:first-child {
  padding-left: 0;
  border-left: 0;
}

.agency-flow li > span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--accent-strong);
  font-size: 44px;
  font-family: var(--font-display);
  font-weight: 700;
}

.agency-flow p {
  color: var(--muted);
}

.security-note {
  padding: 24px 28px;
  margin-top: 28px;
  color: #713f12;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
}

.security-note p {
  margin: 6px 0 0;
}

.demo-section {
  padding-top: 70px;
}

.demo-layout {
  display: grid;
  align-items: start;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) 290px;
}

.demo-layout > *,
.demo-main,
.demo-example {
  min-width: 0;
}

.demo-intro {
  padding: 0 4px;
}

.demo-intro-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.demo-intro h2,
.demo-example h2,
.demo-sidebar h2 {
  margin-top: 0;
}

.demo-steps {
  gap: 16px;
  margin: 26px 0 30px;
}

.demo-steps li > span {
  flex-basis: 34px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.demo-connect {
  margin-top: 28px;
}

.demo-connect label {
  display: block;
  margin-bottom: 8px;
  font-weight: 750;
}

.demo-token-row {
  display: flex;
  gap: 12px;
}

.demo-token-row input {
  min-width: 0;
  flex: 1;
  padding: 12px 14px;
  color: var(--heading);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}

.demo-token-row input:disabled {
  color: var(--muted);
  background: var(--section);
}

.demo-token-row .button {
  flex: 0 0 auto;
}

.demo-credential {
  display: grid;
  align-items: start;
  gap: 18px;
  margin-top: 20px;
  grid-template-columns: 170px minmax(0, 1fr);
}

.demo-credential-head {
  display: contents;
}

.demo-state-title {
  display: none;
}

.demo-credential-copy > p:first-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.demo-mel-slot {
  position: relative;
  overflow: hidden;
  width: 170px;
  min-height: 165px;
  background: radial-gradient(circle at 55% 42%, rgba(112, 169, 255, 0.22), transparent 62%);
}

.demo-mel-slot .mel-media {
  position: absolute;
  right: 4px;
  bottom: 0;
  display: block;
  width: auto;
  height: 160px;
  transition:
    opacity var(--motion-hover) ease,
    transform var(--motion-hover) var(--motion-ease),
    visibility var(--motion-hover);
}

.demo-mel-slot .mel-media img {
  width: auto;
  height: 100%;
}

.demo-success-mel {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}

.demo-connect.is-connected .demo-safety-mel {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
}

.demo-connect.is-connected .demo-success-mel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.demo-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 0;
  color: #4b5563;
  font-size: 12px;
  font-weight: 750;
}

.demo-status {
  margin-top: 18px;
  padding: 12px 14px;
  color: var(--heading);
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  font-size: 14px;
}

.demo-status[data-tone="error"] {
  color: #9a3412;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.demo-status[data-tone="success"] {
  color: #166534;
  background: #f0fdf4;
  border-color: #86efac;
}

.demo-session {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.demo-session > div {
  display: grid;
  gap: 4px;
}

.demo-session span {
  color: var(--muted);
  font-size: 13px;
}

.text-button {
  padding: 0;
  color: var(--accent-strong);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.demo-warning {
  margin-top: 20px;
}

.demo-examples {
  margin-top: 68px;
}

.demo-example {
  margin-top: 18px;
}

.demo-example.is-selected {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.demo-example-heading,
.demo-example-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.demo-example-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.demo-example-title .card-icon {
  margin: 0;
}

.demo-example-heading .card-kicker {
  margin-bottom: 10px;
}

.demo-example h2 {
  margin-bottom: 6px;
  font-size: 24px;
}

.demo-example > p {
  margin: 16px 0 20px;
}

.demo-example pre {
  max-width: 100%;
  padding: 20px;
  border-radius: var(--radius-sm);
}

.demo-example-footer {
  align-items: center;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.demo-sidebar {
  position: sticky;
  top: 98px;
}

.demo-sidebar .button,
.demo-sidebar > a {
  display: flex;
  width: 100%;
  margin-top: 20px;
}

.demo-sidebar > a {
  justify-content: center;
  font-weight: 700;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 62px;
  text-align: center;
  background:
    radial-gradient(circle at 50% -20%, rgba(107, 166, 253, 0.16), transparent 45%),
    var(--section);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.legal-hero::after {
  position: absolute;
  z-index: 0;
  top: -230px;
  right: -150px;
  width: 440px;
  aspect-ratio: 1;
  background: rgba(37, 99, 235, 0.065);
  content: "";
  mask: var(--nail-outline) center / contain no-repeat;
  pointer-events: none;
  transform: rotate(-18deg);
  -webkit-mask: var(--nail-outline) center / contain no-repeat;
}

.legal-hero .shell {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.5rem);
}

.legal-content {
  max-width: 880px;
  color: #4b5563;
}

.legal-content .section {
  padding: 0;
  margin-bottom: 42px;
}

.legal-content h4 {
  margin: 0 0 18px;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.25;
}

.legal-content h5 {
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.legal-content li + li,
.legal-content p + p,
.definition-item + .definition-item {
  margin-top: 12px;
}

.definition-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.not-found {
  display: grid;
  min-height: 68vh;
  align-items: center;
  padding: 80px 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(107, 166, 253, 0.2), transparent 30%),
    var(--section);
}

.not-found .shell {
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.not-found h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.not-found-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 1;
}

.not-found-code > span {
  letter-spacing: -0.12em;
}

.not-found-mel {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: clamp(360px, 34vw, 420px);
  margin-inline: -28px;
}

.not-found-mel img {
  width: auto;
  height: 100%;
}

@media (min-width: 861px) {
  .not-found .shell {
    gap: 40px;
  }

  .not-found-code {
    transform: translateX(-40px);
  }

  .not-found-code > span {
    transform: translateY(-28px);
  }

  .not-found-mel {
    height: clamp(425px, 39vw, 490px);
  }
}

.site-footer {
  padding: 78px 0 28px;
  color: #9ca3af;
  background: var(--dark);
}

.footer-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: 1.6fr repeat(4, 1fr);
}

.brand-footer {
  color: #fff;
}

.brand-footer span span {
  color: var(--accent);
}

.footer-grid p {
  max-width: 280px;
  margin: 22px 0 8px;
}

.footer-grid h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div > a:not(.brand) {
  display: block;
  margin: 10px 0;
  color: #9ca3af;
  font-size: 14px;
  text-decoration: none;
}

.footer-grid a:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 55px;
  border-top: 1px solid #374151;
  font-size: 12px;
}

.icon {
  width: 24px;
  height: 24px;
}

.legacy-anchor {
  position: absolute;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.product-shot {
  display: grid;
  overflow: hidden;
  padding: 10px;
  margin: 0;
  background: #fff;
  border: 1px solid #dbe3ef;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  place-items: center;
}

.product-shot .product-screen {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  background: #fff;
  justify-content: center;
}

.product-shot .product-screen img {
  flex: 0 1 auto;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
}

.product-shot-portrait {
  width: min(100%, 340px);
}

.product-shot-square {
  width: min(100%, 390px);
}

.product-shot-compact {
  width: min(100%, 560px);
}

.home-steps-story {
  display: grid;
  gap: 34px;
}

.home-steps-heading {
  display: grid;
  align-items: center;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.home-steps-heading .section-heading {
  margin-bottom: 0;
}

.home-steps-guide {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 190px;
  align-items: center;
  padding: 24px 150px 24px 24px;
  background:
    radial-gradient(circle at 82% 42%, rgba(112, 169, 255, 0.24), transparent 44%),
    linear-gradient(135deg, rgba(235, 245, 255, 0.96), rgba(255, 255, 255, 0.82));
  border: 1px solid #bfdbfe;
  border-radius: 22px;
}

.home-steps-guide > div {
  position: relative;
  z-index: 2;
}

.home-steps-guide strong,
.home-steps-guide span {
  display: block;
}

.home-steps-guide span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.home-steps-guide-mel {
  position: absolute;
  z-index: 1;
  right: -18px;
  bottom: -82px;
  width: 174px;
}

.home-step-cards {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-step-card {
  display: flex;
  min-width: 0;
  min-height: 690px;
  gap: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 20px;
  flex-direction: column;
}

.home-step-copy {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.home-step-copy > span {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--accent-strong);
  border-radius: 12px;
  font-weight: 800;
  place-items: center;
}

.home-step-copy h3 {
  margin: 2px 0 6px;
}

.home-step-copy p {
  margin: 0;
  color: var(--muted);
}

.home-step-shot {
  width: 100%;
  max-width: none;
  height: 520px;
  padding: 16px;
  margin-top: auto;
}

.guide-step-shot {
  margin-top: 24px;
}

.feature-proof-card {
  display: flex;
  min-height: 720px;
  flex-direction: column;
}

.feature-group-start .split-heading {
  gap: 36px;
  grid-template-columns: 1fr;
}

.feature-proof-commands,
.feature-proof-properties {
  width: 100%;
  max-width: none;
  height: 430px;
  margin-top: 24px;
}

.feature-proof-commands {
  grid-template-columns: minmax(0, 58fr) minmax(150px, 42fr);
  border-radius: 14px;
}

.feature-proof-commands .feature-companion-ui .screen-media,
.feature-proof-commands .feature-mel-panel {
  height: 430px;
  min-height: 430px;
}

.feature-proof-commands .features-messages-mel {
  right: -28px;
  bottom: -24px;
  height: 330px;
}

.feature-proof-properties {
  padding: 14px;
}

.feature-proof-card > a {
  margin-top: auto;
  padding-top: 22px;
}

.pricing-iterations-shot {
  max-width: 390px;
  margin: 30px auto 0;
  text-align: left;
}

.install-flow {
  display: block;
  width: min(100%, 900px);
  min-height: 0;
  padding: 30px;
}

.install-flow-heading {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 150px 18px 20px;
  background: linear-gradient(135deg, var(--accent-soft), #fff);
  border: 1px solid #bfdbfe;
  border-radius: 18px;
}

.install-flow-heading > .eyebrow {
  margin: 0;
}

.install-flow .steps {
  margin: 28px 0 0;
  grid-area: auto;
}

.install-flow .steps li > div {
  min-width: 0;
  flex: 1;
}

.install-flow .steps li:first-child {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
}

.install-flow .steps li:first-child > span {
  grid-column: 1;
}

.install-flow .steps li:first-child > div {
  grid-column: 2;
}

.install-flow-art {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 140px;
  height: 112px;
  grid-area: auto;
}

.store-recommendation-mel {
  bottom: -4px;
  height: 120px;
}

.install-step-shot {
  width: min(100%, 390px);
  max-width: 390px;
  height: 560px;
  margin: 22px auto 0;
  grid-column: 1 / -1;
  justify-self: center;
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 8px;
  }

  .site-nav li a {
    padding-inline: 7px;
    font-size: 13px;
  }

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

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

  .agency-flow {
    gap: 30px 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .agency-flow li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .store-intro {
    min-height: 290px;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) 290px;
  }

  .store-intro-art {
    width: 290px;
    height: 290px;
  }

  .store-chooser-mel {
    height: 290px;
  }

  .store-choice-cards {
    top: 30px;
    left: 52px;
    transform: scale(0.94);
    transform-origin: top left;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    z-index: 55;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: none;
    max-height: calc(100vh - var(--header-height) - 16px);
    overflow-y: auto;
    align-items: stretch;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
    flex-direction: column;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav ul {
    align-items: stretch;
    flex-direction: column;
  }

  .site-nav li a {
    min-height: 48px;
    padding-inline: 12px;
    font-size: 16px;
  }

  .site-nav .button {
    width: 100%;
  }

  .site-nav .nav-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mobile-menu-help {
    position: relative;
    display: grid;
    overflow: hidden;
    min-height: 116px;
    align-items: center;
    gap: 16px;
    padding: 18px 124px 18px 18px;
    margin-top: 4px;
    background: var(--accent-soft);
    border: 1px solid #bfdbfe;
    border-radius: 14px;
  }

  .mobile-menu-help > div {
    display: grid;
    gap: 4px;
  }

  .mobile-menu-help a {
    font-weight: 700;
  }

  .mobile-menu-mel {
    position: absolute;
    right: 0;
    bottom: -6px;
    width: 100px;
  }

  body.menu-open main .mel-media {
    visibility: hidden;
  }

  .guide-grid,
  .guide-hub-hero-grid,
  .guide-article-layout,
  .dev-grid,
  .dev-proof,
  .demo-callout,
  .pricing-callout,
  .faq-layout,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .guide-path {
    grid-template-columns: 1fr;
  }

  .guide-path-card {
    min-height: 0;
  }

  .guide-mel {
    width: 100%;
    max-width: 530px;
    margin-inline: auto;
  }

  .guide-support {
    align-items: flex-start;
    flex-direction: column;
  }

  .guide-sidebar {
    position: static;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.6fr);
  }

  .guide-article {
    max-width: none;
  }

  .demo-callout-action {
    justify-items: start;
  }

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

  .proof-grid > *:nth-child(2) {
    border-right: 0;
  }

  .proof-grid > *:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .audience-card {
    min-height: 250px;
  }

  .mel-panel {
    width: 100%;
    max-width: 530px;
    min-height: 360px;
    margin-inline: auto;
  }

  .home-guide-mel {
    right: -12px;
    bottom: -92px;
    width: 320px;
  }

  .store-intro {
    min-height: 290px;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) 290px;
  }

  .store-intro-art {
    width: 290px;
    height: 290px;
  }

  .store-chooser-mel {
    height: 290px;
  }

  .feature-companion {
    max-width: 720px;
  }

  .features-messages-mel {
    right: -20px;
    height: 340px;
  }

  .feature-growth-layout {
    gap: 30px;
    grid-template-areas:
      "heading"
      "actions"
      "visual";
    grid-template-columns: 1fr;
  }

  .feature-growth-visual .feature-mel-panel {
    width: min(100%, 480px);
    min-height: 320px;
  }

  .features-analytics-mel {
    bottom: -112px;
    width: 340px;
  }

  .download-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-grid .button-row {
    flex-direction: row;
  }

  .faq-layout {
    gap: 20px;
  }

  .page-hero {
    padding-block: 72px;
  }

  .guide-page-hero {
    padding-bottom: 62px;
  }

  .source-note {
    grid-template-columns: 1fr;
  }

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

  .footer-grid > div:first-child {
    grid-column: span 2;
  }

  .not-found .shell {
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .not-found-code {
    justify-content: center;
  }

  .not-found-mel {
    width: auto;
    height: 360px;
  }
}

@media (min-width: 768px) and (max-width: 900px) and (orientation: portrait) {
  .hero-stage,
  .hero-product-stage {
    top: auto;
    bottom: -8cqh;
    width: 100cqw;
    aspect-ratio: 3 / 4;
    transform: translateX(-50%);
  }

  .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(248, 251, 255, 1) 0%,
      rgba(248, 251, 255, 0.98) 24%,
      rgba(248, 251, 255, 0.7) 33%,
      rgba(248, 251, 255, 0) 48%
    );
  }

  .hero-screen {
    --hero-screen-height: 22.8%;
    --hero-screen-left: 29.6%;
    --hero-screen-skew: 5.5deg;
    --hero-screen-top: 54.9%;
    --hero-screen-width: 11.85%;
  }

  .hero-message {
    top: 78%;
    left: 8%;
    width: 36%;
    min-width: 0;
  }

  .hero-message::after {
    top: -7px;
    right: 22px;
    width: 12px;
    height: 12px;
    transform: rotate(-45deg);
  }
}

@media (max-width: 767px) {
  .store-intro {
    display: block;
    min-height: 0;
    margin-bottom: 30px;
  }

  .store-intro-art {
    width: 100%;
    height: 180px;
    margin-top: 6px;
  }

  .store-chooser-mel {
    height: 175px;
  }

  .store-choice-cards {
    display: none;
  }

  .install-flow {
    width: 100%;
    min-height: 0;
    align-items: start;
    gap: 12px 16px;
    padding: 24px;
    grid-template-areas:
      "heading art"
      "steps steps";
    grid-template-columns: minmax(0, 1fr) 120px;
  }

  .install-flow > .eyebrow {
    align-self: center;
  }

  .install-flow-art {
    width: 120px;
    height: 120px;
    justify-self: end;
  }

  .store-recommendation-mel {
    height: 116px;
  }

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

  .feature-companion-ui {
    border-right: 0;
    border-bottom: 1px solid #dbeafe;
  }

  .feature-companion-ui .screen-media {
    height: 480px;
  }

  .feature-companion .feature-mel-panel {
    min-height: 240px;
  }

  .features-messages-mel {
    right: -15px;
    bottom: -24px;
    height: 285px;
  }

  .feature-growth-visual .feature-mel-panel {
    width: 100%;
    min-height: 225px;
  }

  .features-analytics-mel {
    right: -18px;
    bottom: -115px;
    width: 340px;
  }

  .demo-credential {
    display: block;
  }

  .demo-credential-head {
    display: flex;
    min-height: 84px;
    align-items: center;
    gap: 14px;
  }

  .demo-state-title {
    display: block;
    color: var(--heading);
    font-size: 15px;
  }

  .demo-state-title span:last-child,
  .demo-connect.is-connected .demo-state-title span:first-child {
    display: none;
  }

  .demo-connect.is-connected .demo-state-title span:last-child {
    display: inline;
    color: #166534;
  }

  .demo-credential-copy {
    margin-top: 12px;
  }

  .demo-mel-slot {
    flex: 0 0 68px;
    width: 68px;
    min-height: 84px;
  }

  .demo-mel-slot .mel-media {
    right: 0;
    height: 84px;
  }
}

@media (max-width: 767px) {
  .hero-scroll {
    height: 118vh;
    height: 118svh;
  }

  .hero-sticky {
    height: calc(100vh - var(--header-height));
    height: calc(100svh - var(--header-height));
    min-height: 0;
  }

  .hero-sticky::after {
    top: -8%;
    right: -36%;
    width: 92vw;
  }

  .hero-stage,
  .hero-product-stage {
    top: auto;
    bottom: 0;
    width: 100cqw;
    aspect-ratio: 3 / 4;
    transform: translateX(-50%);
  }

  .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(248, 251, 255, 1) 0%,
      rgba(248, 251, 255, 0.98) 46%,
      rgba(248, 251, 255, 0.48) 66%,
      rgba(248, 251, 255, 0) 86%
    );
  }

  .hero-content {
    padding-top: 36px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy h1 {
    max-width: 520px;
    margin-bottom: 16px;
    font-size: clamp(2.55rem, 12vw, 3.5rem);
  }

  .hero-copy .lead {
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-content .button-row {
    align-items: stretch;
    gap: 8px;
    margin-top: 18px;
    flex-direction: column;
  }

  .hero-content .button {
    width: 100%;
    min-height: 46px;
    padding-block: 10px;
  }

  .hero-proof {
    gap: 5px 7px;
    margin-top: 14px;
    font-size: 12.5px;
  }

  .hero-screen {
    --hero-screen-height: 22.8%;
    --hero-screen-left: 29.6%;
    --hero-screen-skew: 5.5deg;
    --hero-screen-top: 54.9%;
    --hero-screen-width: 11.85%;
  }

  .hero-message {
    top: 76%;
    left: 18%;
    width: 36%;
    min-width: 0;
    padding: 10px;
    border-radius: 12px;
  }

  .hero-message::after {
    top: -7px;
    right: 22px;
    width: 12px;
    height: 12px;
    transform: rotate(-45deg);
  }

  .hero-message > span {
    margin-bottom: 5px;
    font-size: 8px;
  }

  .hero-message p {
    margin-bottom: 7px;
    font-size: 11px;
  }

  .hero-message b {
    padding: 4px 6px;
    font-size: 9px;
  }

  .home-content-sheet {
    margin-top: -9vh;
    margin-top: -9svh;
    border-radius: 24px 24px 0 0;
  }

  .home-content-sheet > .proof-bar {
    border-radius: 24px 24px 0 0;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 28px);
    --radius: 14px;
  }

  html {
    scroll-padding-top: 74px;
  }

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

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .section {
    padding: 68px 0;
  }

  .guide-hub-hero {
    padding: 38px 0 58px;
  }

  .guide-mel {
    min-height: 410px;
  }

  .guide-mel picture img {
    right: -8%;
    bottom: -27%;
  }

  .guide-promises {
    align-items: flex-start;
    flex-direction: column;
  }

  .guide-page-hero {
    padding: 36px 0 54px;
  }

  .guide-outcome {
    width: 100%;
    align-items: flex-start;
  }

  .guide-sidebar {
    grid-template-columns: 1fr;
  }

  .guide-stepper > li {
    gap: 14px;
    padding-bottom: 44px;
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .guide-step-number {
    width: 44px;
    height: 44px;
    border-width: 4px;
    border-radius: 14px;
  }

  .guide-stepper > li:not(:last-child)::after {
    top: 44px;
    left: 21px;
  }

  .guide-stepper p:not(.eyebrow) {
    font-size: 16px;
  }

  .guide-screen {
    margin-bottom: 42px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }

  h2 {
    font-size: 2.1rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    gap: 10px 16px;
  }

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

  .proof-grid > * {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .card-grid.two,
  .card-grid.four,
  .plans,
  .screens-grid {
    grid-template-columns: 1fr;
  }

  .screen-wide {
    grid-column: span 1;
  }

  .card {
    padding: 22px;
  }

  .mel-panel {
    min-height: 270px;
  }

  .home-guide-mel {
    right: -42px;
    bottom: -88px;
    width: 245px;
  }

  .mel-note {
    right: 104px;
    bottom: 18px;
    left: 18px;
    max-width: none;
    padding: 14px;
  }

  .help-heading {
    min-height: 220px;
    align-items: center;
    padding: 28px 132px 28px 24px;
    border-radius: 20px;
  }

  .home-help-mel {
    right: 14px;
    bottom: -3px;
    width: 132px;
  }

  .store-intro .section-heading {
    min-width: 0;
  }

  .store-intro-art {
    height: 170px;
  }

  .store-chooser-mel {
    height: 165px;
  }

  .install-flow {
    padding: 22px;
    grid-template-columns: minmax(0, 1fr) 112px;
  }

  .install-flow-art {
    width: 112px;
    height: 112px;
  }

  .store-recommendation-mel {
    height: 108px;
  }

  .feature-companion-ui .screen-media {
    height: 440px;
  }

  .feature-companion .feature-mel-panel {
    min-height: 230px;
  }

  .features-messages-mel {
    right: -14px;
    bottom: -28px;
    height: 275px;
  }

  .feature-growth-visual .feature-mel-panel {
    min-height: 216px;
  }

  .features-analytics-mel {
    right: -22px;
    bottom: -112px;
    width: 330px;
  }

  .demo-credential {
    display: block;
  }

  .demo-mel-slot {
    width: 68px;
    min-height: 84px;
  }

  .demo-mel-slot .mel-media {
    height: 84px;
  }

  .not-found-code {
    font-size: clamp(4.5rem, 22vw, 7rem);
  }

  .not-found-mel {
    width: auto;
    height: 300px;
    margin-inline: -18px;
  }

  .pricing-callout {
    gap: 36px;
  }

  .download-grid .button-row {
    width: 100%;
    flex-direction: column;
  }

  .faq-item button {
    min-height: 64px;
    font-size: 16px;
  }

  .agency-flow {
    grid-template-columns: 1fr;
  }

  .agency-flow li,
  .agency-flow li:nth-child(3) {
    padding: 0 0 24px;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .agency-flow li > span {
    margin-bottom: 20px;
  }

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

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

@media (max-width: 860px) {
  .demo-layout {
    grid-template-columns: 1fr;
  }

  .demo-sidebar {
    position: static;
  }
}

@media (max-width: 580px) {
  .demo-token-row,
  .demo-example-heading,
  .demo-example-footer,
  .demo-session,
  .store-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .demo-token-row .button {
    width: 100%;
  }

  .demo-example-heading .demo-run {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .home-steps-heading {
    grid-template-columns: 1fr;
  }

  .feature-group-start .card-grid.two {
    grid-template-columns: 1fr;
  }

  .home-steps-guide {
    width: min(100%, 520px);
  }

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

  .home-step-card {
    display: grid;
    min-height: 0;
    align-items: center;
    grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1.18fr);
  }

  .home-step-shot {
    height: 430px;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .feature-proof-card {
    min-height: 0;
  }

  .feature-proof-commands {
    height: auto;
    grid-template-columns: 1fr;
  }

  .feature-proof-commands .feature-companion-ui .screen-media {
    height: 350px;
    min-height: 350px;
  }

  .feature-proof-commands .feature-mel-panel {
    height: 200px;
    min-height: 200px;
  }

  .feature-proof-commands .features-messages-mel {
    right: -8px;
    bottom: -54px;
    height: 250px;
  }

  .feature-proof-properties {
    height: 390px;
  }

  .install-flow {
    display: block;
    width: 100%;
    padding: 24px;
  }

  .install-flow-heading {
    min-height: 92px;
    padding: 16px 112px 16px 16px;
  }

  .install-flow-art {
    width: 110px;
    height: 92px;
  }

  .store-recommendation-mel {
    bottom: -4px;
    height: 100px;
  }
}

@media (max-width: 580px) {
  .home-steps-heading {
    gap: 24px;
  }

  .home-steps-guide {
    min-height: 170px;
    padding: 20px 122px 20px 20px;
  }

  .home-steps-guide-mel {
    right: -30px;
    bottom: -68px;
    width: 168px;
  }

  .home-step-card {
    display: flex;
    padding: 18px;
  }

  .home-step-shot {
    height: 440px;
  }

  .feature-proof-commands .feature-companion-ui .screen-media {
    height: 310px;
    min-height: 310px;
  }

  .feature-proof-commands .feature-mel-panel {
    height: 180px;
    min-height: 180px;
  }

  .feature-proof-properties {
    height: 350px;
  }

  .install-flow {
    padding: 18px;
  }

  .install-flow-heading {
    min-height: 92px;
    padding: 16px 108px 16px 16px;
  }

  .install-flow-art {
    width: 104px;
    height: 92px;
  }

  .store-recommendation-mel {
    bottom: -4px;
    height: 100px;
  }

  .install-step-shot {
    height: 480px;
  }
}

/* Shared motion system */

.hero-art {
  transform: scale(var(--hero-scale, 1));
  transform-origin: 58% 48%;
  will-change: transform;
}

.hero-copy {
  transform: translate3d(0, var(--hero-copy-y, 0), 0);
  will-change: transform;
}

main a:not(.button, .brand, .skip-link, .text-button, .card),
.site-footer a:not(.brand) {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition:
    color var(--motion-fast) ease,
    background-size var(--motion-hover) var(--motion-ease);
}

.faq-item button {
  cursor: pointer;
}

.faq-item button span {
  transform: rotate(0);
  transition: transform var(--motion-hover) var(--motion-ease);
}

.faq-item button[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.faq-panel-inner {
  padding: 0 38px 24px 4px;
}

.faq-item [role="region"] {
  padding: 0;
}

[data-reveal] {
  --motion-x: 0px;
  --motion-y: var(--motion-distance-reveal);
  --motion-scale: 1;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

[data-reveal]:not(.is-motion-complete) {
  transition:
    opacity var(--motion-reveal) var(--motion-ease),
    transform var(--motion-reveal) var(--motion-ease);
  transition-delay: calc(var(--motion-order, 0) * var(--motion-stagger));
}

[data-reveal="left"] {
  --motion-x: calc(-1 * var(--motion-distance-reveal));
  --motion-y: 0px;
}

[data-reveal="right"] {
  --motion-x: var(--motion-distance-reveal);
  --motion-y: 0px;
}

[data-reveal^="media"] {
  --motion-scale: 0.98;
  --motion-y: var(--motion-distance-medium);
}

[data-reveal^="media"]:not(.is-motion-complete) {
  transition-duration: var(--motion-media);
}

[data-reveal="media-left"] {
  --motion-x: calc(-1 * var(--motion-distance-medium));
  --motion-y: 0px;
}

[data-reveal="media-right"] {
  --motion-x: var(--motion-distance-medium);
  --motion-y: 0px;
}

[data-reveal="footer"] {
  --motion-y: var(--motion-distance-medium);
}

[data-reveal].is-motion-pending {
  opacity: 0;
  transform: translate3d(var(--motion-x), var(--motion-y), 0) scale(var(--motion-scale));
}

.mel-media img,
.store-preview,
.card-icon {
  transition:
    transform var(--motion-hover) var(--motion-ease),
    color var(--motion-hover) ease,
    background-color var(--motion-hover) ease,
    border-color var(--motion-hover) ease,
    filter var(--motion-hover) ease;
}

.home-step-copy > span,
.home-step-copy > div,
.home-step-shot {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity var(--motion-reveal) var(--motion-ease),
    transform var(--motion-reveal) var(--motion-ease);
}

.home-step-copy > div {
  transition-delay: var(--motion-stagger);
}

.home-step-shot {
  transition-delay: calc(var(--motion-stagger) * 2);
}

.home-step-card.is-motion-pending .home-step-copy > span,
.home-step-card.is-motion-pending .home-step-copy > div,
.home-step-card.is-motion-pending .home-step-shot {
  opacity: 0;
  transform: translate3d(0, var(--motion-distance-medium), 0);
}

.install-flow .steps {
  position: relative;
}

.install-flow .steps::before {
  position: absolute;
  z-index: 0;
  top: 22px;
  bottom: 22px;
  left: 21px;
  width: 2px;
  background: #bfdbfe;
  content: "";
  transform: scaleY(1);
  transform-origin: top;
  transition: transform var(--motion-media) var(--motion-ease) 120ms;
}

.install-flow .steps li {
  position: relative;
  z-index: 1;
}

.install-flow.is-motion-pending .steps::before {
  transform: scaleY(0);
}

.code-sample {
  min-width: 0;
  border: 1px solid #374151;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
  transition: border-color var(--motion-hover) ease, box-shadow var(--motion-hover) ease;
}

.code-sample pre {
  border: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: none;
}

.code-toolbar {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 14px;
  color: #cbd5e1;
  background: #1f2937;
  border-radius: var(--radius) var(--radius) 0 0;
  font-size: 12px;
  font-weight: 700;
}

.copy-button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
}

.copy-button .icon {
  width: 17px;
  height: 17px;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity var(--motion-fast) ease, transform var(--motion-fast) var(--motion-ease);
}

.copy-button.is-copied .icon {
  opacity: 1;
  transform: scale(1);
}

.code-sample.is-copied,
.demo-example:has(.copy-button.is-copied) pre {
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.14);
}

.demo-token-row input {
  outline: 0;
  transition:
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease,
    background-color var(--motion-fast) ease;
}

.demo-token-row input:focus-visible {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.demo-token-row .button {
  min-width: 196px;
}

.demo-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(17, 24, 39, 0.28);
  border-top-color: var(--heading);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.demo-connect.is-loading [data-demo-connect-label],
.demo-connect.is-loading [data-demo-connect] > .icon {
  opacity: 0;
}

.demo-connect.is-loading .demo-spinner {
  opacity: 1;
  animation: demo-spinner 700ms linear infinite;
}

.demo-connect.has-token-error .demo-token-row input {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
  animation: demo-field-error 170ms ease-out;
}

.demo-connect.is-connected {
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.demo-connect.is-connected .demo-session {
  animation: demo-success-in 500ms var(--motion-ease) both;
}

.demo-session > .icon {
  flex: 0 0 24px;
  color: #16a34a;
}

.demo-status {
  transition:
    color var(--motion-hover) ease,
    background-color var(--motion-hover) ease,
    border-color var(--motion-hover) ease,
    box-shadow var(--motion-hover) ease;
}

.demo-example.has-result {
  border-color: #86efac;
  box-shadow: 0 0 0 3px #f0fdf4;
}

@keyframes demo-spinner {
  to { transform: translate(-50%, -50%) rotate(1turn); }
}

@keyframes demo-field-error {
  0%, 100% { transform: translateX(0); }
  35% { transform: translateX(-4px); }
  70% { transform: translateX(4px); }
}

@keyframes demo-success-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.not-found-code > span:first-child {
  animation: not-found-left 450ms var(--motion-ease) both;
}

.not-found-mel {
  animation: not-found-mel 500ms var(--motion-ease) 60ms both;
}

.not-found-code > span:last-child {
  animation: not-found-right 450ms var(--motion-ease) 120ms both;
}

.not-found .button-row {
  animation: not-found-actions 450ms var(--motion-ease) 200ms both;
}

@keyframes not-found-left {
  from { opacity: 0; translate: -18px 0; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes not-found-right {
  from { opacity: 0; translate: 18px 0; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes not-found-mel {
  from { opacity: 0; scale: 0.98; }
  to { opacity: 1; scale: 1; }
}

@keyframes not-found-actions {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: #1e40af;
  }

  .site-nav li a:hover {
    color: var(--accent-strong);
    background: var(--accent-soft);
  }

  .button:not(:disabled):hover {
    color: var(--heading);
    background: #5798f5;
    border-color: #5798f5;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
    transform: translateY(-2px);
  }

  .button:not(:disabled):hover .icon {
    transform: translateX(var(--motion-distance-small));
  }

  .button:not(:disabled):active {
    transform: scale(0.98);
  }

  .button:not(.button-small):hover::after {
    opacity: 0.13;
    transform: translate(185%, -50%) rotate(-18deg);
  }

  .button-secondary:not(:disabled):hover,
  .final-cta .button-secondary:not(:disabled):hover {
    color: var(--accent-strong);
    background: var(--accent-soft);
    border-color: #93c5fd;
    box-shadow: none;
  }

  a.card:hover,
  button.card:hover {
    border-color: #93c5fd;
    box-shadow: var(--shadow-soft);
    transform: translateY(calc(-1 * var(--motion-distance-small)));
  }

  a.card:hover .card-icon,
  button.card:hover .card-icon,
  .card:not(a, button):hover .card-icon {
    color: #fff;
    background: var(--accent-strong);
    border-color: var(--accent-strong);
    transform: scale(1.04);
  }

  .card:not(a, button):hover {
    border-color: #bfdbfe;
  }

  .store-card:hover .store-preview,
  .store-card:focus-within .store-preview {
    background: linear-gradient(145deg, #e8fbea, #fff);
    transform: scale(1.012);
  }

  .store-card:hover .store-actions .button {
    background: #5798f5;
    border-color: #5798f5;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.14);
  }

  main a:not(.button, .brand, .skip-link, .text-button, .card):hover,
  .site-footer a:not(.brand):hover {
    background-size: 100% 1px;
  }

  .footer-grid a:hover {
    color: #fff;
  }

  .proof-grid a:hover {
    background-color: rgba(239, 246, 255, 0.72);
  }

  .home-steps-guide:hover .mel-media img,
  .store-intro-art:hover .mel-media img,
  .install-flow-heading:hover .mel-media img,
  .feature-mel-panel:hover .mel-media img {
    filter: drop-shadow(0 12px 20px rgba(37, 99, 235, 0.12));
    transform: scale(1.01);
  }
}

@media (max-width: 767px) {
  [data-reveal] {
    --motion-x: 0px;
    --motion-y: 12px;
  }

  [data-reveal^="media"] {
    --motion-y: 8px;
  }

  .demo-token-row .button {
    min-width: 0;
  }
}

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

  [data-reveal].is-motion-pending {
    opacity: 1;
    transform: none;
  }

  .hero-art,
  .hero-copy {
    transform: none;
  }

  .button:not(.button-small):is(:hover, :focus-visible)::after {
    transform: translate(-38%, -50%) rotate(-18deg);
  }
}

@media (forced-colors: active) {
  .button {
    border: 2px solid ButtonText;
  }
}
