:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --ink: #080a12;
  --muted: #667085;
  --line: #e3e6ee;
  --line-strong: #d2d7e4;
  --indigo: #4f46e5;
  --indigo-dark: #4338ca;
  --green: #06a85f;
  --green-dark: #047a47;
  --dark: #07100d;
  --dark-soft: #0d1714;
  --shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.landing-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn[disabled],
button[disabled] {
  opacity: .62;
  cursor: not-allowed;
  transform: none;
}

body.reserve-open {
  overflow: hidden;
}

.btn-primary {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
  box-shadow: 0 14px 28px rgba(79, 70, 229, .24);
}

.btn-primary:hover {
  background: var(--indigo-dark);
  border-color: var(--indigo-dark);
}

.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: #27272a;
}

.btn-glass {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
}

.btn-glass:hover {
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .13);
}

.btn-demo {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, .34);
  background:
    linear-gradient(135deg, #22c55e 0%, #38bdf8 46%, #6366f1 100%);
  color: #fff;
  box-shadow:
    0 18px 42px rgba(56, 189, 248, .25),
    0 14px 34px rgba(99, 102, 241, .28);
}

.btn-demo::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .44) 38%, transparent 62%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

.btn-demo:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .7);
  box-shadow:
    0 20px 48px rgba(34, 197, 94, .24),
    0 18px 42px rgba(99, 102, 241, .34);
}

.btn-demo:hover::before {
  transform: translateX(120%);
}

.btn-demo {
  isolation: isolate;
}

.btn-demo > * {
  position: relative;
  z-index: 1;
}

.btn-help {
  border-color: rgba(255, 255, 255, .34);
  background:
    linear-gradient(135deg, rgba(79, 70, 229, .96), rgba(6, 168, 95, .92));
  color: #fff;
  box-shadow:
    0 18px 42px rgba(79, 70, 229, .22),
    0 14px 34px rgba(6, 168, 95, .18);
}

.btn-help:hover {
  border-color: rgba(255, 255, 255, .62);
  box-shadow:
    0 22px 52px rgba(79, 70, 229, .28),
    0 18px 44px rgba(6, 168, 95, .24);
}

.btn-large {
  min-height: 54px;
  padding-inline: 24px;
  font-size: 15px;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(226, 232, 240, .9);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
}

.landing-brand {
  width: clamp(188px, 16vw, 258px);
  height: 50px;
  display: inline-flex;
  align-items: center;
}

.landing-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.landing-nav a {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-bottom: 2px solid transparent;
  color: #667085;
  font-size: 14px;
  font-weight: 820;
  text-decoration: none;
}

.landing-nav a:hover {
  color: var(--indigo);
  border-bottom-color: var(--indigo);
}

.landing-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

main,
.landing-footer {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
}

main {
  padding: 22px 0 52px;
}

.sales-hero {
  position: relative;
  min-height: clamp(760px, 78vh, 850px);
  display: block;
  overflow: hidden;
  padding: clamp(34px, 4.4vw, 66px) clamp(24px, 5vw, 74px) 150px;
  border-radius: 0 0 28px 28px;
  background: var(--dark);
  color: #fff;
  text-align: center;
  isolation: isolate;
}

.sales-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(79, 70, 229, .34) 0%, transparent 34%),
    linear-gradient(245deg, rgba(6, 168, 95, .34) 0%, transparent 44%),
    linear-gradient(110deg, #08091c 0%, #081611 54%, #030706 100%);
}

.sales-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%);
}

.sales-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 930px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 42px);
}

.sales-hero-copy::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035)),
    rgba(3, 7, 18, .36);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .05),
    0 28px 90px rgba(0, 0, 0, .24);
  backdrop-filter: blur(14px);
}

.seller-pill {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 28px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .11);
  color: #fff;
  backdrop-filter: blur(12px);
}

.seller-pill strong,
.seller-pill em {
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  white-space: nowrap;
}

.seller-pill em {
  color: rgba(255, 255, 255, .72);
}

.seller-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(6, 168, 95, .16);
}

.sales-hero h1 {
  max-width: 15ch;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(50px, 5.5vw, 84px);
  font-weight: 920;
  line-height: .96;
  letter-spacing: 0;
  -webkit-text-stroke: .8px rgba(0, 0, 0, .82);
  paint-order: stroke fill;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, .6),
    0 18px 44px rgba(0, 0, 0, .44);
}

.sales-hero p {
  max-width: 45em;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(17px, 1.3vw, 21px);
  font-weight: 720;
  line-height: 1.48;
  -webkit-text-stroke: 0;
  paint-order: stroke fill;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .38);
}

.hero-demo-video-frame {
  width: min(820px, 100%);
  margin: clamp(18px, 2.7vw, 28px) auto 0;
}

.hero-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 920px;
  margin: 24px auto 0;
}

.hero-benefit {
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .06)),
    rgba(8, 12, 28, .42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 16px 38px rgba(0, 0, 0, .22);
  text-align: left;
  backdrop-filter: blur(12px);
}

.hero-benefit strong {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 920;
  line-height: 1.1;
  text-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}

.hero-benefit span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.32;
}

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

.reserve-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.demo-cta-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.demo-help {
  position: relative;
  z-index: 5;
}

.demo-help summary {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  list-style: none;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .16);
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.demo-help summary::-webkit-details-marker {
  display: none;
}

.demo-help summary:hover,
.demo-help[open] summary {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .2);
}

.demo-help__bubble {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: min(330px, calc(100vw - 32px));
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 18px;
  background: rgba(8, 10, 18, .92);
  color: rgba(255, 255, 255, .84);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .36);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.demo-help__bubble::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-left: 1px solid rgba(255, 255, 255, .24);
  border-top: 1px solid rgba(255, 255, 255, .24);
  background: rgba(8, 10, 18, .92);
  transform: translateX(-50%) rotate(45deg);
}

.demo-help__bubble strong,
.demo-help__bubble span {
  display: block;
}

.demo-help__bubble strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 13px;
  line-height: 1.28;
}

.demo-help__bubble span {
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .reserve-cta-actions {
    justify-content: stretch;
  }

  .reserve-cta-actions .btn,
  .hero-actions .btn-help {
    width: 100%;
  }

  .demo-cta-wrap {
    width: 100%;
  }

  .demo-cta-wrap .btn-demo {
    width: 100%;
    padding-right: 52px;
  }

  .demo-cta-wrap .demo-help {
    position: absolute;
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
  }

  .demo-cta-wrap .demo-help__bubble {
    left: auto;
    right: -2px;
    transform: none;
  }

  .demo-cta-wrap .demo-help__bubble::before {
    left: auto;
    right: 14px;
    transform: rotate(45deg);
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.hero-trust span,
.after-hero-strip span,
.section-head > div > span,
.center-title > span,
.price-card span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 850;
}

.sales-hero-visual {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 1;
  width: min(1000px, 76vw);
  min-height: 190px;
  transform: translateX(-50%);
  pointer-events: none;
}

.sales-hero-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(780px, 78%);
  height: 178px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 26px 26px 0 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(244,246,252,.92)),
    linear-gradient(90deg, rgba(79,70,229,.08), rgba(6,168,95,.07));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .34);
  transform: translateX(-50%) perspective(900px) rotateX(9deg);
}

.sales-hero-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: min(690px, 68%);
  height: 82px;
  border-radius: 18px;
  background:
    linear-gradient(#eef2ff, #eef2ff) 22px 20px / 120px 12px no-repeat,
    linear-gradient(#dcfce7, #dcfce7) 22px 46px / 210px 12px no-repeat,
    linear-gradient(#f4f5fb, #f4f5fb) 280px 20px / 110px 12px no-repeat,
    linear-gradient(#f4f5fb, #f4f5fb) 280px 46px / 270px 12px no-repeat,
    #fff;
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, .9);
  transform: translateX(-50%) perspective(900px) rotateX(9deg);
  opacity: .98;
}

.sales-hero-visual picture {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  display: block;
  transform: rotate(-1deg);
}

.sales-hero-visual img {
  width: 100%;
  display: block;
  border-radius: 28px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .38);
}

.float-card {
  position: absolute;
  z-index: 3;
  width: clamp(178px, 14.5vw, 236px);
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  color: #111827;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .20);
  transform: rotate(var(--tilt, 0deg));
  overflow-wrap: anywhere;
}

.float-card span {
  display: block;
  color: #667085;
  font-size: 12px;
  font-weight: 850;
}

.float-card strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.12;
}

.float-card small {
  display: block;
  margin-top: 8px;
  color: #667085;
  font-size: 12px;
  font-weight: 750;
}

.float-card-left {
  --tilt: -4deg;
  left: 0;
  top: 42px;
}

.float-card-right {
  --tilt: 4deg;
  right: 0;
  top: 36px;
}

.float-card-bottom {
  --tilt: -2deg;
  left: 50%;
  bottom: 116px;
  transform: translateX(-50%) rotate(var(--tilt, 0deg));
}

.after-hero-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(1120px, calc(100% - 48px));
  margin: -42px auto 0;
}

.after-hero-strip div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.after-hero-strip strong {
  display: block;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
}

.after-hero-strip span {
  width: fit-content;
  margin-top: 16px;
  border-color: #eceef5;
  background: #f7f8fb;
  color: var(--muted);
}

.landing-demo-video-section {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(260px, .64fr) minmax(0, 1.36fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  margin: 26px auto 0;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(79, 70, 229, .14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 18%, rgba(79, 70, 229, .13), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f7f8ff 100%);
  box-shadow: 0 22px 58px rgba(33, 38, 94, .1);
}

.landing-demo-video-copy {
  display: grid;
  gap: 12px;
}

.landing-demo-video-copy span {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(79, 70, 229, .18);
  border-radius: 999px;
  background: rgba(79, 70, 229, .08);
  color: var(--indigo);
  font-size: 13px;
  font-weight: 900;
}

.landing-demo-video-copy h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.landing-demo-video-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.hero-demo-video-frame,
.landing-demo-video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 24px;
  background: #060815;
  box-shadow:
    0 24px 62px rgba(15, 23, 42, .18),
    inset 0 0 0 1px rgba(255, 255, 255, .05);
}

.hero-demo-video-frame::before,
.landing-demo-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), transparent 22%);
  z-index: 1;
}

.hero-demo-video-frame video,
.landing-demo-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(68vh, 720px);
  object-fit: contain;
  background: #060815;
}

.brand-video-player {
  isolation: isolate;
}

.brand-video-player video::-webkit-media-controls {
  display: none !important;
}

.brand-video-center-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: clamp(58px, 8vw, 86px);
  height: clamp(58px, 8vw, 86px);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, .32), transparent 34%),
    linear-gradient(135deg, #6558ff, #4238e6);
  box-shadow: 0 24px 48px rgba(31, 27, 126, .44), inset 0 1px 0 rgba(255, 255, 255, .2);
  cursor: pointer;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity .18s ease, transform .18s ease;
}

.brand-video-player.is-playing .brand-video-center-play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.92);
}

.brand-video-controls {
  position: absolute;
  left: clamp(10px, 2vw, 18px);
  right: clamp(10px, 2vw, 18px);
  bottom: clamp(10px, 2vw, 18px);
  z-index: 4;
  display: grid;
  grid-template-columns: auto auto minmax(80px, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(16, 20, 44, .88), rgba(7, 9, 22, .78)),
    rgba(8, 10, 24, .82);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
}

.brand-video-btn {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.brand-video-btn:hover,
.brand-video-center-play:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .14);
}

.brand-video-center-play:hover {
  transform: translate(-50%, -50%) scale(1.03);
}

.brand-video-play {
  background: linear-gradient(135deg, #6558ff, #4338ca);
  box-shadow: 0 10px 24px rgba(67, 56, 202, .34);
}

.brand-video-play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #fff;
}

.brand-video-player.is-playing .brand-video-play-icon {
  width: 14px;
  height: 16px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(90deg, #fff 0 5px, transparent 5px 9px, #fff 9px 14px);
}

.brand-video-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 78px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.brand-video-range {
  --video-progress: 0%;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #6d5dff 0 var(--video-progress), rgba(255, 255, 255, .18) var(--video-progress) 100%);
  cursor: pointer;
  appearance: none;
}

.brand-video-range::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: #5b4bff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .32);
  appearance: none;
}

.brand-video-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: #5b4bff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .32);
}

.brand-video-volume-icon {
  position: relative;
  width: 17px;
  height: 14px;
  border-left: 7px solid #fff;
}

.brand-video-volume-icon::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 3px;
  width: 7px;
  height: 8px;
  border-radius: 2px 0 0 2px;
  background: #fff;
}

.brand-video-volume-icon::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 8px;
  height: 12px;
  border: 2px solid #fff;
  border-left: 0;
  border-radius: 0 999px 999px 0;
}

.brand-video-player.is-muted .brand-video-volume-icon::after {
  left: 5px;
  top: 6px;
  width: 13px;
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  transform: rotate(-42deg);
}

.brand-video-fullscreen-icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.brand-video-fullscreen-icon::before,
.brand-video-fullscreen-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #fff;
  border-radius: 3px;
}

.brand-video-fullscreen-icon::before {
  clip-path: polygon(0 0, 42% 0, 42% 18%, 18% 18%, 18% 42%, 0 42%, 0 0);
}

.brand-video-fullscreen-icon::after {
  clip-path: polygon(58% 82%, 82% 82%, 82% 58%, 100% 58%, 100% 100%, 58% 100%);
}

@media (max-width: 560px) {
  .brand-video-controls {
    left: 8px;
    right: 8px;
    bottom: 8px;
    grid-template-columns: auto minmax(76px, 1fr) auto auto;
    gap: 8px;
    min-height: 46px;
    padding: 7px;
    border-radius: 14px;
  }

  .brand-video-time {
    display: none;
  }

  .brand-video-btn {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .brand-video-center-play {
    width: 58px;
    height: 58px;
  }
}

.speed-proof-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 18px;
  width: min(1120px, calc(100% - 48px));
  margin: 22px auto 0;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(84, 68, 235, .14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 16% 12%, rgba(84, 68, 235, .12), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f7f8ff 100%);
  box-shadow: 0 18px 44px rgba(33, 38, 94, .08);
}

.speed-proof-copy span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(84, 68, 235, .18);
  border-radius: 999px;
  background: rgba(84, 68, 235, .08);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.speed-proof-copy h2 {
  max-width: 620px;
  margin: 16px 0 10px;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

.speed-proof-copy p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.speed-proof-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  align-self: start;
}

.speed-proof-steps article {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(84, 68, 235, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.speed-proof-steps strong {
  width: fit-content;
  padding: 8px 10px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

.speed-proof-steps span {
  display: block;
  color: var(--text);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.18;
}

.speed-proof-steps em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}

.section {
  margin-top: 34px;
  padding: clamp(26px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .05);
}

.center-title {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.center-title > span,
.section-head > div > span,
.price-card span {
  border-color: #dfe3ff;
  background: #f4f4ff;
  color: var(--indigo);
}

.center-title h2,
.section-head h2,
.final-banner h2 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 920;
  line-height: 1.04;
  letter-spacing: 0;
}

.center-title p,
.section-head p,
.final-banner p {
  max-width: 720px;
  margin: 18px auto 0;
  color: #8992a3;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.46;
}

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

.pain-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid #f0d6dc;
  border-radius: 20px;
  background: #fff8fa;
}

.pain-grid strong {
  display: block;
  font-size: 22px;
}

.pain-grid p {
  margin: 14px 0 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.5;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 460px;
  margin: 0;
  font-size: 17px;
}

.compare-board {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.compare-list {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 48px);
  border-radius: 24px;
}

.compare-list h3 {
  margin: 0 0 28px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.compare-list span {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(15, 23, 42, .08);
  color: #111827;
  font-size: 18px;
  font-weight: 850;
}

.compare-list span::before {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
}

.compare-muted {
  border: 1px solid #eceef5;
  background: #f7f8fb;
}

.compare-muted span::before {
  content: "×";
  background: #fee2e2;
  color: #ef4444;
}

.compare-accent {
  border: 1px solid rgba(79, 70, 229, .35);
  background: linear-gradient(180deg, rgba(79, 70, 229, .08), rgba(6, 168, 95, .07));
}

.compare-accent span::before {
  content: "✓";
  background: #dcfce7;
  color: var(--green);
}

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

.workflow-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fbfbfd;
}

.workflow-grid span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 14px;
  background: rgba(79, 70, 229, .1);
  color: var(--indigo);
  font-size: 13px;
  font-weight: 920;
}

.workflow-grid h3,
.result-card h3,
.result-list h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.workflow-grid p,
.result-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.visual-tour {
  display: none;
}

.showcase {
  position: relative;
}

.showcase-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  padding: 0 2px 14px;
}

.showcase-rail::-webkit-scrollbar {
  height: 10px;
}

.showcase-rail::-webkit-scrollbar-track {
  border-radius: 999px;
  background: #edf0f7;
}

.showcase-rail::-webkit-scrollbar-thumb {
  border: 2px solid #edf0f7;
  border-radius: 999px;
  background: var(--indigo);
}

.showcase-arrow {
  position: absolute;
  top: calc(50% - 32px);
  z-index: 2;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  color: var(--indigo);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .14);
}

.showcase-arrow:hover {
  border-color: var(--indigo);
  background: var(--indigo);
  color: #fff;
}

.showcase-arrow-prev {
  left: 14px;
}

.showcase-arrow-next {
  right: 14px;
}

.showcase-slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: #f6f7fb;
}

.showcase-slide picture {
  display: block;
}

.showcase-slide img {
  width: 100%;
  min-height: clamp(560px, 56vw, 820px);
  max-height: 820px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

#screen-settings img,
#screen-products img,
#screen-clusters img,
#screen-creation img,
#screen-history img {
  object-position: center top;
}

.showcase-slide figcaption {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid #eef0f4;
}

.showcase-slide figcaption span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--indigo);
  color: #fff;
  font-size: 12px;
  font-weight: 920;
}

.showcase-slide figcaption strong {
  font-size: 18px;
}

.showcase-slide figcaption em {
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.result-carousel {
  position: relative;
}

.result-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  padding: 0 2px 14px;
}

.result-rail::-webkit-scrollbar {
  height: 10px;
}

.result-rail::-webkit-scrollbar-track {
  border-radius: 999px;
  background: #edf0f7;
}

.result-rail::-webkit-scrollbar-thumb {
  border: 2px solid #edf0f7;
  border-radius: 999px;
  background: var(--indigo);
}

.result-slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  padding: clamp(18px, 2.4vw, 28px);
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fbfbfd;
}

.result-slide picture {
  display: block;
}

.result-slide img {
  width: 100%;
  min-height: clamp(360px, 47vw, 660px);
  max-height: 660px;
  display: block;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  object-fit: contain;
  object-position: center top;
}

.result-slide:not(.result-list) h3,
.result-list h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.result-slide:not(.result-list) p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.result-list {
  min-height: clamp(430px, 48vw, 700px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background:
    linear-gradient(135deg, rgba(79, 70, 229, .08), rgba(6, 168, 95, .08)),
    #fbfbfd;
}

.result-list span {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-weight: 820;
}

.result-list span::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #dcfce7;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.result-arrow {
  position: absolute;
  top: calc(50% - 28px);
  z-index: 2;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  color: var(--indigo);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .14);
}

.result-arrow:hover {
  border-color: var(--indigo);
  background: var(--indigo);
  color: #fff;
}

.result-arrow-prev {
  left: 14px;
}

.result-arrow-next {
  right: 14px;
}

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

.price-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}

.price-card strong {
  display: block;
  margin: 24px 0 12px;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.05;
}

.price-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.price-card-free {
  border-color: rgba(79, 70, 229, .5);
  box-shadow: 0 18px 38px rgba(79, 70, 229, .12);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-grid details {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfbfd;
}

.faq-grid summary {
  cursor: pointer;
  color: #111827;
  font-size: 18px;
  font-weight: 880;
}

.faq-grid summary::marker {
  color: var(--indigo);
}

.faq-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.final-banner {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 34px;
  padding: clamp(30px, 5vw, 70px);
  border-radius: 28px;
  background: var(--dark);
  color: #fff;
  text-align: center;
  isolation: isolate;
}

.final-banner-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 38% 22%, rgba(79, 70, 229, .45), transparent 34%),
    radial-gradient(circle at 70% 50%, rgba(6, 168, 95, .36), transparent 38%),
    linear-gradient(110deg, #050806, #111827);
}

.final-banner h2 {
  color: #fff;
}

.final-banner p {
  color: rgba(255, 255, 255, .8);
}

.final-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.final-banner-actions .btn {
  margin-top: 0;
}

.reserve-modal[hidden] {
  display: none;
}

.reserve-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
}

.reserve-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 7, 18, .58);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.reserve-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  display: grid;
  gap: 14px;
  padding: 30px;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 28px;
  background: #fff;
  color: #111827;
  box-shadow: 0 34px 90px rgba(15, 23, 42, .28);
}

.reserve-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #475569;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.reserve-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(79, 70, 229, .18);
  border-radius: 999px;
  background: rgba(79, 70, 229, .08);
  color: var(--indigo);
  font-size: 12px;
  font-weight: 900;
}

.reserve-dialog h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
}

.reserve-dialog p {
  margin: -4px 0 4px;
  color: var(--muted);
  line-height: 1.55;
}

.reserve-dialog label {
  display: grid;
  gap: 7px;
  color: #111827;
  font-size: 13px;
  font-weight: 850;
}

.reserve-dialog input,
.reserve-dialog select,
.reserve-dialog textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-weight: 650;
  outline: none;
}

.reserve-dialog textarea {
  min-height: 88px;
  padding-top: 12px;
  resize: vertical;
}

.reserve-dialog input:focus,
.reserve-dialog select:focus,
.reserve-dialog textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, .12);
}

.reserve-status {
  min-height: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
}

.reserve-status[data-tone="success"] {
  color: var(--green-dark);
}

.reserve-status[data-tone="error"] {
  color: #b42318;
}

.landing-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 0 34px;
  color: #667085;
  font-size: 14px;
}

.landing-footer img {
  width: 180px;
  height: auto;
  display: block;
}

.landing-footer p {
  max-width: 320px;
  margin: 12px 0 0;
  line-height: 1.5;
}

.landing-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.landing-footer a {
  text-decoration: none;
}

.landing-footer a:hover {
  color: var(--indigo);
}

@media (max-width: 1180px) {
  .landing-nav {
    display: none;
  }

  .sales-hero {
    min-height: 820px;
  }

  .sales-hero-visual {
    bottom: 22px;
    width: min(880px, 90vw);
  }

  .sales-hero-visual picture {
    right: auto;
    bottom: auto;
    width: 100%;
    transform: rotate(-1deg);
  }

  .after-hero-strip,
  .pain-grid,
  .workflow-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare-board {
    grid-template-columns: 1fr;
  }

  .compare-list {
    min-height: auto;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .landing-header {
    height: auto;
    flex-wrap: wrap;
    padding: 12px 16px;
  }

  .landing-brand {
    width: 210px;
  }

  .landing-header-actions {
    width: 100%;
  }

  .landing-header-actions .btn {
    flex: 1;
  }

  main,
  .landing-footer {
    width: min(100% - 20px, 1400px);
  }

  main {
    padding-top: 10px;
  }

  .sales-hero {
    min-height: 720px;
    padding: 24px;
    border-radius: 0 0 22px 22px;
  }

  .sales-hero h1 {
    max-width: 11ch;
    font-size: clamp(42px, 14vw, 62px);
  }

  .sales-hero p {
    font-size: 17px;
  }

  .seller-pill {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .seller-dot {
    display: none;
  }

  .hero-actions .btn,
  .final-banner .btn {
    width: 100%;
  }

  .sales-hero-visual {
    bottom: 10px;
    width: min(680px, 100%);
  }

  .float-card {
    display: none;
  }

  .after-hero-strip,
  .pain-grid,
  .workflow-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .after-hero-strip {
    width: min(100%, calc(100vw - 24px));
    margin-top: -28px;
  }

  .section,
  .final-banner {
    padding: 22px;
    border-radius: 22px;
  }

  .center-title h2,
  .section-head h2,
  .final-banner h2 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .visual-tour {
    width: min(100vw - 16px, 1500px);
  }

  .showcase-arrow {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .showcase-arrow-prev {
    left: 8px;
  }

  .showcase-arrow-next {
    right: 8px;
  }

  .result-arrow {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .result-arrow-prev {
    left: 8px;
  }

  .result-arrow-next {
    right: 8px;
  }

  .showcase-slide img {
    min-height: 360px;
    max-height: 520px;
  }

  .result-slide img {
    min-height: 280px;
    max-height: 460px;
  }

  .showcase-slide figcaption {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 12px;
  }

  .showcase-slide figcaption em {
    grid-column: 2;
  }

  .reserve-modal {
    align-items: end;
    padding: 10px;
  }

  .reserve-dialog {
    max-height: calc(100vh - 24px);
    overflow: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .landing-footer {
    flex-direction: column;
  }
}

/* Mobile hardening: keep the sales landing readable without changing desktop. */
@media (max-width: 640px) {
  html,
  body,
  .landing-shell {
    overflow-x: hidden;
  }

  .landing-header {
    gap: 10px;
    padding: 10px 12px;
  }

  .landing-brand {
    width: min(190px, 58vw);
    height: 44px;
  }

  .landing-header-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .landing-header-actions .btn {
    min-height: 42px;
    padding-inline: 10px;
    font-size: 12px;
    line-height: 1.15;
    min-width: 0;
    width: 100%;
    white-space: normal;
  }

  main,
  .landing-footer {
    width: min(100% - 16px, 1400px);
  }

  .sales-hero {
    min-height: 0;
    display: grid;
    gap: 18px;
    padding: 12px;
    border-radius: 0 0 18px 18px;
  }

  .sales-hero-copy {
    max-width: 100%;
    padding: 16px 12px;
    border-radius: 22px;
  }

  .sales-hero-copy::before {
    border-radius: 22px;
    background: radial-gradient(ellipse at center, rgba(2, 6, 23, .48) 0%, rgba(2, 6, 23, .28) 56%, transparent 100%);
  }

  .seller-pill {
    width: 100%;
    align-items: center;
    padding: 10px 12px;
    text-align: left;
  }

  .seller-pill strong,
  .seller-pill em {
    white-space: normal;
  }

  .sales-hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 9.4vw, 40px);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .sales-hero p {
    margin-top: 16px;
    font-size: 14.5px;
    line-height: 1.42;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 9px;
  }

  .hero-actions .btn {
    min-height: 48px;
    padding-inline: 14px;
    font-size: 13px;
    line-height: 1.15;
    min-width: 0;
    white-space: normal;
  }

  .hero-trust {
    justify-content: flex-start;
    gap: 7px;
    margin-top: 16px;
  }

  .hero-trust span {
    min-height: 28px;
    padding-inline: 9px;
    font-size: 11px;
  }

  .sales-hero-visual {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin: 0 auto -4px;
    transform: none;
  }

  .sales-hero-visual picture {
    transform: none;
  }

  .sales-hero-visual img {
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .32);
  }

  .after-hero-strip {
    width: 100%;
    margin-top: 12px;
    gap: 8px;
  }

  .after-hero-strip div {
    min-height: 92px;
    padding: 14px;
    border-radius: 16px;
  }

  .after-hero-strip strong {
    font-size: 26px;
  }

  .after-hero-strip span {
    margin-top: 10px;
    font-size: 11px;
  }

  .section,
  .final-banner {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
  }

  .center-title {
    margin-bottom: 18px;
  }

  .center-title h2,
  .section-head h2,
  .final-banner h2 {
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.08;
  }

  .center-title p,
  .section-head p,
  .final-banner p {
    margin-top: 12px;
    font-size: 15px;
  }

  .pain-grid article,
  .workflow-grid article,
  .price-card,
  .faq-grid details {
    min-height: 0;
    padding: 16px;
    border-radius: 16px;
  }

  .compare-list {
    padding: 18px;
    border-radius: 18px;
  }

  .compare-list h3 {
    margin-bottom: 16px;
    font-size: 26px;
  }

  .compare-list span {
    min-height: 46px;
    font-size: 15px;
  }

  .workflow-grid span {
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
  }

  .visual-tour {
    display: none;
  }

  .showcase-rail,
  .result-rail {
    gap: 10px;
    padding-bottom: 10px;
  }

  .showcase-slide,
  .result-slide {
    border-radius: 18px;
  }

  .showcase-slide img,
  .result-slide img {
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .showcase-slide picture {
    display: flex;
    justify-content: center;
    background: #f6f7fb;
  }

  .showcase-slide img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: min(620px, 78vh);
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center top;
  }

  .result-section {
    display: none;
  }

  .result-slide img {
    aspect-ratio: 16 / 11;
    margin-bottom: 12px;
  }

  .showcase-slide figcaption {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    padding: 12px;
  }

  .showcase-slide figcaption em {
    grid-column: 1 / -1;
    font-size: 12px;
  }

  .showcase-arrow,
  .result-arrow {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .showcase-arrow-prev,
  .result-arrow-prev {
    left: 6px;
  }

  .showcase-arrow-next,
  .result-arrow-next {
    right: 6px;
  }

  .final-banner {
    min-height: 0;
  }
}

@media (max-width: 420px) {
  .sales-hero {
    padding: 10px;
  }

  .sales-hero h1 {
    font-size: clamp(28px, 9.2vw, 36px);
  }

  .btn-large {
    font-size: 13px;
  }
}

/* Final mobile landing pass: real phone layout, not a squeezed desktop hero. */
@media (max-width: 720px) {
  .landing-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    align-items: stretch;
    height: auto;
    padding: 10px 12px;
  }

  .landing-brand {
    width: min(224px, 72vw);
    height: 48px;
  }

  .landing-header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
  }

  .landing-header-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding-inline: 8px;
    font-size: 12px;
    line-height: 1.1;
    white-space: normal;
    text-align: center;
  }

  main,
  .landing-footer {
    width: min(100% - 12px, 1400px);
  }

  .sales-hero {
    width: 100%;
    min-height: 0;
    padding: 10px;
    border-radius: 0 0 20px 20px;
  }

  .sales-hero-copy {
    width: 100%;
    max-width: none;
    min-width: 0;
    padding: 20px 18px;
  }

  .sales-hero-copy::before {
    inset: 0;
  }

  .seller-pill {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  .seller-pill strong,
  .seller-pill em {
    width: 100%;
    white-space: normal;
  }

  .sales-hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 9.4vw, 40px);
    line-height: 1.06;
    text-wrap: balance;
    overflow-wrap: break-word;
  }

  .sales-hero p {
    max-width: 100%;
    margin-top: 16px;
    font-size: 14.5px;
    font-weight: 720;
    line-height: 1.44;
    text-wrap: pretty;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    gap: 9px;
    margin-top: 22px;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 50px;
    padding-inline: 12px;
    overflow-wrap: anywhere;
    line-height: 1.15;
    white-space: normal;
    text-align: center;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 7px;
  }

  .hero-trust span {
    width: 100%;
    justify-content: center;
  }

  .after-hero-strip {
    margin-top: 12px;
  }
}

@media (max-width: 390px) {
  .sales-hero-copy {
    padding-inline: 14px;
  }

  .sales-hero h1 {
    font-size: clamp(28px, 9vw, 34px);
  }

  .sales-hero p {
    font-size: 13.5px;
  }
}

/* Narrow-phone QA pass: avoid clipped header buttons and oversized hero text. */
@media (max-width: 520px) {
  html,
  body,
  .landing-shell {
    max-width: 100%;
    overflow-x: hidden;
  }

  .landing-header {
    padding: 8px 10px;
    gap: 8px;
  }

  .landing-brand {
    width: min(210px, 76vw);
    height: 46px;
  }

  .landing-header-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .landing-header-actions .btn {
    min-height: 40px;
    font-size: 12px;
  }

  main,
  .landing-footer {
    width: calc(100% - 10px);
  }

  .sales-hero {
    padding: 8px;
    border-radius: 0 0 18px 18px;
  }

  .sales-hero-copy {
    padding: 18px 14px;
    border-radius: 22px;
  }

  .seller-pill {
    margin-bottom: 16px;
    padding: 8px 10px;
    font-size: 11px;
  }

  .sales-hero h1 {
    font-size: clamp(27px, 8.4vw, 34px);
    line-height: 1.08;
  }

  .sales-hero p {
    margin-top: 14px;
    font-size: 13.5px;
    font-weight: 680;
    line-height: 1.42;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-actions .btn {
    min-height: 48px;
    font-size: 13px;
  }

  .hero-trust {
    margin-top: 18px;
  }

  .after-hero-strip {
    margin-top: 10px;
  }
}

@media (max-width: 370px) {
  .sales-hero h1 {
    font-size: 26px;
  }

  .sales-hero p {
    font-size: 13px;
  }
}

/* Phone hero QA: prevent the dark first screen from clipping text or CTA labels. */
@media (max-width: 520px) {
  main {
    width: 100%;
  }

  .sales-hero {
    padding: 6px;
  }

  .sales-hero-copy {
    width: 100%;
    max-width: calc(100vw - 24px);
    padding: 16px 10px;
    overflow: hidden;
  }

  .seller-pill {
    margin-inline: auto;
    font-size: 10.5px;
  }

  .sales-hero h1 {
    font-size: clamp(24px, 7.7vw, 30px);
    line-height: 1.12;
    max-width: 12.5ch;
    overflow-wrap: normal;
  }

  .sales-hero p {
    width: 100%;
    max-width: 31ch;
    font-size: 12.8px;
    line-height: 1.42;
  }

  .hero-actions .btn {
    min-height: 46px;
    padding-inline: 8px;
    font-size: 12px;
    line-height: 1.16;
  }

  .hero-trust span {
    min-width: 0;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .hero-actions .demo-cta-wrap {
    position: relative !important;
    display: block !important;
    width: 100% !important;
  }

  .hero-actions .demo-cta-wrap .btn-demo {
    width: 100% !important;
    padding-right: 56px !important;
  }

  .hero-actions .demo-cta-wrap .demo-help {
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    z-index: 12 !important;
    display: block !important;
    transform: translateY(-50%) !important;
  }

  .hero-actions .demo-cta-wrap .demo-help summary {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media (max-width: 900px) {
  .hero-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
  }

  .hero-benefit {
    min-height: 86px;
  }

  .landing-demo-video-section {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 680px);
    margin-top: 18px;
    padding: 18px;
  }

  .landing-demo-video-copy {
    text-align: left;
  }

  .hero-demo-video-frame,
  .landing-demo-video-frame {
    border-radius: 20px;
  }

  .speed-proof-section {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 680px);
    margin-top: 14px;
    padding: 18px;
  }

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

  .speed-proof-steps article {
    min-height: 0;
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .hero-benefit-grid {
    gap: 8px;
    width: 100%;
    margin-top: 18px;
  }

  .hero-benefit {
    min-height: 78px;
    padding: 10px;
    border-radius: 14px;
  }

  .hero-benefit strong {
    font-size: 14px;
  }

  .hero-benefit span {
    margin-top: 6px;
    font-size: 11.5px;
    line-height: 1.24;
  }

  .landing-demo-video-section {
    width: calc(100% - 12px);
    gap: 14px;
    padding: 14px;
    border-radius: 20px;
  }

  .landing-demo-video-copy h2 {
    font-size: 24px;
    line-height: 1.12;
  }

  .landing-demo-video-copy p {
    font-size: 13.5px;
  }

  .hero-demo-video-frame,
  .landing-demo-video-frame {
    border-radius: 16px;
  }

  .hero-demo-video-frame video,
  .landing-demo-video-frame video {
    max-height: 58vh;
  }

  .speed-proof-section {
    border-radius: 20px;
  }

  .speed-proof-copy h2 {
    font-size: 24px;
    line-height: 1.12;
  }

  .speed-proof-copy p {
    font-size: 13.5px;
  }

  .speed-proof-steps span {
    font-size: 17px;
  }
}
