/* ═══════════════════════════════════════════════
   landing.css — Landing page specific styles
   Used by: templates/landing.html
   Loaded AFTER marketing-base.css (overrides where needed)
   ═══════════════════════════════════════════════ */

/* ── Overrides for marketing-base.css defaults ── */
:root {
  --landing-accent-ink: #0054a6;
  --landing-paper: #fbfbfa;
  --landing-paper-soft: #f6f7f8;
  --landing-border-warm: #e1e5eb;
}

.section-description {
  font-size: 1.125rem;
}
.navbar-landing .navbar-brand-text {
  gap: .55rem;
  color: #121317;
  font-weight: 560;
}
.navbar-landing .nav-link {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
}
.landing-brand-mark {
  width: 31px;
  height: 31px;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}
.landing-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.navbar-landing.scrolled {
  background: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.animate-in {
  opacity: 1;
  animation: heroSettle .6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.section-header { text-align: center; margin-bottom: 2rem; }
.cta-section { border-top: none; }

/* Landing-specific link no-underlines */
.cta-section a,
.cta-section a:hover {
  text-decoration: none !important;
}

/* Animation delays */
.delay-1 { animation-delay: 0s; }
.delay-2 { animation-delay: .04s; }
.delay-3 { animation-delay: .08s; }
.delay-4 { animation-delay: .12s; }
.delay-5 { animation-delay: .16s; }
.delay-6 { animation-delay: .2s; }
.delay-7 { animation-delay: .24s; }

/* Reveal override (landing uses simpler .visible, not .js-ready.visible) */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s cubic-bezier(0.16, 1, 0.3, 1), transform .7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.js-ready {
  opacity: 1;
  transform: translateY(0);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroSettle {
  from {
    opacity: .72;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════
   HERO
   ══════════════════════════════ */
.hero-dark {
  position: relative;
  --cx: 50%;
  --cy: 20%;
  background: var(--landing-paper);
  overflow: hidden;
  max-width: 100vw;
  padding-bottom: 0;
  isolation: isolate;
}
/* Subtle warm halo behind H1 — gives depth without grain or gradient bottom-fade */
.hero-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1100px;
  height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 60% 50% at 50% 30%,
    rgba(0, 84, 166, 0.05),
    rgba(0, 84, 166, 0.018) 40%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 991px) {
  .hero-dark::before { opacity: 0.5; }
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: 8.55rem;
  padding-bottom: 2.25rem;
}
@media (max-width: 768px) {
  .hero-content { padding-top: 8rem; }
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-items: start;
  gap: 1.35rem;
}

.hero-copy {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 980px;
}

/* ── Hero Typography ── */
.hero-kicker {
  margin: 0 auto .9rem;
  max-width: 760px;
  color: #64748b;
  font-size: .74rem;
  font-weight: 760;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero-title {
  font-family: var(--font-hero);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0;
  font-size: clamp(2.6rem, 4.45vw, 4rem);
  line-height: 1;
  color: var(--at-slate);
  max-width: 760px;
  margin: 0 auto;
  text-wrap: balance;
}
.hero-title em {
  display: block;
  font-family: inherit;
  font-style: normal;
  color: var(--landing-accent-ink);
  font-weight: 600;
}

.hero-description {
  font-size: 1rem;
  line-height: 1.48;
  color: var(--at-muted);
  max-width: 690px;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: clamp(11.85rem, 12vw, 12.8rem);
  margin-bottom: 0;
  margin-inline: auto;
}

.hero-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 820px;
  margin: 1.2rem auto 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.hero-channel-grid a {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  min-width: 0;
  padding: .78rem .95rem .8rem;
  color: var(--at-slate);
  text-align: left;
  text-decoration: none;
  border-left: 1px solid #e2e8f0;
  transition: background-color .16s ease, color .16s ease;
}

.hero-channel-grid a:first-child {
  border-left: 0;
}

.hero-channel-grid a:hover {
  color: #000;
  background: #f8fafc;
}

.hero-channel-grid span {
  color: #64748b;
  font-size: .66rem;
  font-weight: 760;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-channel-grid strong {
  color: inherit;
  font-size: .86rem;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-actions {
  margin-top: 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  align-items: center;
}

.hero-cta-row .btn-hero-primary {
  min-width: 154px;
  padding: .76rem 1.45rem;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0;
  background: var(--at-slate);
  border-color: var(--at-slate);
  color: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.16), 0 14px 28px -22px rgba(15, 23, 42, 0.55);
}
.hero-cta-row .btn-hero-primary:hover {
  background: #000;
  border-color: #000;
  color: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.18), 0 18px 34px -22px rgba(15, 23, 42, 0.65);
}
.hero-cta-row .btn-hero-outline {
  min-width: 154px;
  padding: .73rem 1.35rem;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--at-slate);
}

.hero-note {
  font-size: .8125rem;
  color: #64748b;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 0;
  text-align: center;
}

.hero-scene {
  position: absolute;
  top: 5.4rem;
  left: 0;
  width: 100%;
  height: clamp(600px, 47vw, 690px);
  margin: 0;
  transform: none;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  overflow: visible;
}
.hero-scene-item {
  position: absolute;
  display: block;
  z-index: 1;
  transform: var(--scene-transform, none);
  transform-origin: center center;
  will-change: transform;
}
.hero-scene-item img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-scene-item--email::before {
  content: '';
  position: absolute;
  right: -3%;
  top: -3%;
  width: 24%;
  height: 35%;
  background: var(--landing-paper);
  transform: rotate(4deg);
  z-index: 2;
}
.hero-scene-item--email::after {
  content: '';
  position: absolute;
  right: -2%;
  top: 0;
  width: 20%;
  height: 29%;
  background:
    linear-gradient(#2f80ed, #2f80ed) 18% 52% / 2px 63% no-repeat,
    linear-gradient(#2f80ed, #2f80ed) 52% 45% / 2px 70% no-repeat,
    linear-gradient(#2f80ed, #2f80ed) 86% 52% / 2px 63% no-repeat;
  border-radius: 999px;
  transform: rotate(58deg);
  transform-origin: 50% 88%;
  z-index: 3;
}
.hero-scene-item--inbox::before,
.hero-scene-item--inbox::after {
  content: '';
  position: absolute;
  left: 50%;
  border-radius: 999px;
  transform: translateX(-50%);
  z-index: 6;
}
.hero-scene-item--inbox::before {
  bottom: 16.4%;
  width: 22%;
  height: 7.6%;
  background: #fff;
}
.hero-scene-item--inbox::after {
  bottom: 18.8%;
  width: 14%;
  height: 2.6%;
  background: #2f80ed;
}
.hero-flow-item {
  position: absolute;
  display: block;
  z-index: 2;
  opacity: .64;
  transform: var(--scene-transform, none);
  transform-origin: center center;
  will-change: transform;
}
.hero-flow-item img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-flow-burst {
  aspect-ratio: 1.15;
  color: #2f80ed;
}
.hero-flow-burst i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 100%;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 0.5px rgba(255,255,255,0.45);
  transform-origin: 50% 92%;
}
.hero-flow-burst i:nth-child(1) {
  transform: translate(-50%, -50%) rotate(-31deg) scaleY(.82);
}
.hero-flow-burst i:nth-child(2) {
  transform: translate(-50%, -58%) rotate(0deg) scaleY(1);
}
.hero-flow-burst i:nth-child(3) {
  transform: translate(-50%, -50%) rotate(31deg) scaleY(.82);
}
.hero-flow-burst--amber {
  color: #f5a524;
}
.hero-flow-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  overflow: visible;
  pointer-events: none;
  transform: none;
}
.hero-flow-lines path {
  fill: none;
  stroke-width: 1.42;
  stroke-linecap: round;
  stroke-linejoin: round;
  shape-rendering: geometricPrecision;
  vector-effect: non-scaling-stroke;
}
.hero-flow-item--burst-qr {
  left: calc(50% - clamp(22.8rem, 23vw, 27.25rem));
  top: clamp(17.55rem, 20.1vw, 19.5rem);
  width: clamp(19px, 1.8vw, 26px);
  opacity: .82;
  z-index: 3;
  --scene-transform: rotate(28deg);
  --float-delay: .18s;
}
.hero-flow-item--burst-review {
  right: calc(50% - clamp(22.6rem, 22.8vw, 27rem));
  top: clamp(17.8rem, 20.25vw, 19.7rem);
  width: clamp(18px, 1.75vw, 25px);
  opacity: .82;
  z-index: 3;
  --scene-transform: rotate(-14deg);
  --float-delay: .58s;
}
.hero-scene-item--inbox {
  left: 50%;
  top: clamp(17.15rem, 17.6vw, 17.75rem);
  width: clamp(145px, 10.5vw, 174px);
  z-index: 5;
  --scene-transform: translateX(-50%);
  --float-delay: .1s;
}
.hero-scene-item--form {
  left: calc(50% - clamp(30rem, 33vw, 37rem));
  top: clamp(12rem, 12.8vw, 13.1rem);
  width: clamp(56px, 4.4vw, 72px);
  --scene-transform: rotate(-7deg);
  --float-delay: .25s;
}
.hero-scene-item--qr {
  left: calc(50% - clamp(22.5rem, 22.6vw, 26.5rem));
  top: clamp(17.9rem, 20.4vw, 19.75rem);
  width: clamp(44px, 3.35vw, 56px);
  --scene-transform: rotate(-4deg);
  --float-delay: .5s;
}
.hero-scene-item--bubble {
  left: 50%;
  top: clamp(15.85rem, 16.25vw, 16.55rem);
  width: clamp(46px, 3.65vw, 58px);
  z-index: 3;
  --scene-transform: translateX(-118%) rotate(2deg);
  --float-delay: .35s;
}
.hero-scene-item--email {
  right: calc(50% - clamp(30rem, 33vw, 37rem));
  top: clamp(12.15rem, 13vw, 13.25rem);
  width: clamp(82px, 6.4vw, 106px);
  --scene-transform: rotate(-4deg);
  --float-delay: .15s;
}
.hero-scene-item--review {
  right: calc(50% - clamp(22.5rem, 22.5vw, 26.2rem));
  top: clamp(18.1rem, 20.6vw, 19.95rem);
  width: clamp(50px, 3.85vw, 64px);
  --scene-transform: rotate(6deg);
  --float-delay: .65s;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-scene-item,
  .hero-flow-item {
    animation: heroSceneFloat 7s ease-in-out infinite;
    animation-delay: var(--float-delay, 0s);
  }
}

@keyframes heroSceneFloat {
  0%, 100% {
    transform: var(--scene-transform, none) translateY(0);
  }
  50% {
    transform: var(--scene-transform, none) translateY(-5px);
  }
}

.hero-proof {
  margin: clamp(1.25rem, 2vw, 2rem) 0 0;
  width: 100%;
  max-width: 1280px;
  position: relative;
  z-index: 2;
  text-align: center;
}
/* Subtle pedestal — radial glow beneath the screenshot to anchor it on the page */
.hero-proof::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -28px;
  width: 82%;
  height: 92px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 50% 100% at 50% 0%, rgba(15,23,42,0.10), transparent 70%);
  pointer-events: none;
  z-index: -1;
  filter: blur(4px);
}

.hero-proof-mobile-frame {
  display: none;
}

.hero-proof > .hero-proof-tabs,
.hero-proof > .hero-proof-stage {
  display: none;
}

.hero-product-video {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.hero-product-video__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1440 / 760;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  background: #fff;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 18px 54px rgba(15, 23, 42, 0.10);
}

.hero-product-video__poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: #fff;
}

.hero-product-video__caption {
  display: flex;
  justify-content: center;
  gap: .7rem;
  margin-top: .75rem;
  color: #6b7787;
  font-size: .76rem;
  font-weight: 650;
}

.hero-product-video__caption span + span::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: .7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.26);
  vertical-align: .12em;
}

.hero-proof-tabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0 0 .625rem;
  margin: .1rem auto .75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.10);
  background: transparent;
}
.hero-proof-tabs button {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--at-muted);
  padding: 0 0 .55rem;
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  transition: color .15s ease;
}
.hero-proof-tabs button:hover {
  color: var(--at-slate);
}
.hero-proof-tabs button.is-active {
  color: var(--at-slate);
}
.hero-proof-tabs button::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(-.625rem - 1px);
  height: 2px;
  background: transparent;
}
.hero-proof-tabs button.is-active::after {
  background: var(--at-slate);
}

.hero-proof-stage {
  position: relative;
  width: 100%;
}

.hero-proof-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1180 / 565;
  margin-top: 0;
  width: min(100%, 1120px);
  margin-inline: auto;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,0.10);
  background: #fff;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 18px 54px rgba(15,23,42,0.10);
}

.hero-proof-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  will-change: opacity;
  padding: .2rem .2rem 0;
  box-sizing: border-box;
}

.hero-proof-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: transparent;
}

.hero-mock-shell {
  display: grid;
  grid-template-columns: 208px minmax(0, 1fr);
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background: #f7f9fc;
  color: #202733;
  text-align: left;
}

.hero-mock-sidebar {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  min-width: 0;
  padding: .92rem .82rem;
  border-right: 1px solid rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.92)),
    #fff;
  box-shadow: inset -1px 0 0 rgba(255,255,255,0.72);
}

.hero-mock-brand {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: .62rem;
  margin: .02rem .02rem .2rem;
  min-width: 0;
}

.hero-mock-brand img {
  display: block;
  width: 28px;
  height: 28px;
  padding: 3px;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}

.hero-mock-brand span,
.hero-mock-sender,
.hero-mock-message {
  min-width: 0;
}

.hero-mock-brand small,
.hero-mock-topbar span,
.hero-mock-kpis span,
.hero-mock-qr-head span,
.hero-mock-qr-hero span,
.hero-mock-review-card-mini small,
.hero-mock-qr-metrics span {
  display: block;
  color: #7a8492;
  font-size: .61rem;
  font-weight: 760;
  letter-spacing: .06em;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-mock-brand strong {
  display: block;
  margin-top: .06rem;
  color: #171a20;
  font-size: .95rem;
  font-weight: 720;
  letter-spacing: -.02em;
}

.hero-mock-nav-section {
  display: grid;
  gap: .22rem;
}

.hero-mock-nav-section--compact {
  margin-top: auto;
}

.hero-mock-nav-section em {
  margin: .08rem .45rem .18rem;
  color: #8a94a3;
  font-size: .58rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-mock-nav-section span {
  position: relative;
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) auto;
  align-items: center;
  gap: .46rem;
  min-height: 39px;
  padding: .42rem .48rem;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #4b5563;
  font-size: .68rem;
  font-weight: 690;
  line-height: 1.2;
}

.hero-mock-nav-section span::before {
  content: '';
  width: 25px;
  height: 25px;
  border-radius: 7px;
  background-color: rgba(248, 250, 252, 0.96);
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5h16v14H4V5Z' stroke='%2364748b' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M4 13h5l2 3h2l2-3h5' stroke='%2364748b' stroke-width='2' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.64);
}

.hero-mock-nav-section span.is-active {
  background: rgba(44,119,231,0.10);
  border-color: rgba(44,119,231,0.18);
  color: #0f172a;
}

.hero-mock-nav-section span.is-active::after {
  content: '';
  position: absolute;
  left: -1px;
  top: 9px;
  bottom: 9px;
  width: 3px;
  border-radius: 999px;
  background: #2c77e7;
}

.hero-mock-nav-section span.is-active::before {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5h16v14H4V5Z' stroke='%232c77e7' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M4 13h5l2 3h2l2-3h5' stroke='%232c77e7' stroke-width='2' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E");
  border-color: rgba(44,119,231,0.18);
}

.hero-mock-nav-section b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 21px;
  height: 18px;
  padding: 0 .35rem;
  border-radius: 999px;
  background: #2c77e7;
  color: #fff;
  font-size: .58rem;
  font-weight: 800;
  box-shadow: none;
}

.hero-mock-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.hero-mock-topbar {
  display: flex;
  align-items: center;
  gap: .72rem;
  min-height: 54px;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255,255,255,0.88);
}

.hero-mock-topbar div:first-child {
  min-width: 0;
}

.hero-mock-topbar strong {
  display: block;
  margin-top: .05rem;
  overflow: hidden;
  color: #202733;
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-mock-topbar > em {
  padding: .28rem .52rem;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 999px;
  background: #fff;
  color: #596575;
  font-size: .62rem;
  font-style: normal;
  font-weight: 760;
}

.hero-mock-topbar-icons {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-left: auto;
}

.hero-mock-topbar-icons span {
  width: 19px;
  height: 19px;
  border: 1px solid rgba(15,23,42,0.12);
  border-radius: 999px;
  background: #fff;
}

.hero-mock-topbar-icons b,
.hero-mock-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0054a6;
  font-weight: 800;
}

.hero-mock-topbar-icons b {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f3f5f8;
  font-size: .68rem;
}

.hero-mock-page {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: .92rem 1rem 1rem;
  background:
    radial-gradient(circle at 80% 0%, rgba(47,128,237,0.07), transparent 32%),
    linear-gradient(180deg, #f8f9fc 0%, #fff 52%, #f8fafc 100%);
}

.hero-mock-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .58rem;
  margin-bottom: .72rem;
}

.hero-mock-kpis div,
.hero-mock-card,
.hero-mock-detail-main > div,
.hero-mock-detail-side,
.hero-mock-qr-hero,
.hero-mock-qr-metrics div,
.hero-mock-surface-row {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 2px rgba(15,23,42,0.035), 0 12px 26px rgba(15,23,42,0.055);
}

.hero-mock-kpis div {
  min-width: 0;
  padding: .7rem .78rem;
  border-radius: 14px;
}

.hero-mock-kpis strong {
  display: block;
  margin-top: .2rem;
  color: #171a20;
  font-size: 1.08rem;
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.hero-mock-kpis small {
  display: block;
  margin-top: .18rem;
  overflow: hidden;
  color: #7a8492;
  font-size: .58rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-mock-card {
  overflow: hidden;
  border-radius: 14px;
}

.hero-mock-card-head {
  display: flex;
  align-items: center;
  gap: .58rem;
  min-height: 46px;
  padding: 0 .85rem;
  border-bottom: 1px solid rgba(15,23,42,0.075);
}

.hero-mock-card-head div {
  display: flex;
  align-items: center;
  gap: .5rem;
  min-width: 0;
}

.hero-mock-card-head strong {
  color: #202733;
  font-size: .86rem;
  font-weight: 820;
}

.hero-mock-card-head span {
  padding: .18rem .42rem;
  border-radius: 999px;
  background: #f2f4f7;
  color: #697586;
  font-size: .59rem;
  font-weight: 760;
}

.hero-mock-card-head button,
.hero-mock-qr-head button,
.hero-mock-compose-card button,
.hero-mock-detail-side button,
.hero-mock-surface-row button {
  border: 1px solid rgba(47,128,237,0.24);
  border-radius: 999px;
  background: #f8f9fc;
  color: #0054a6;
  font: inherit;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-mock-card-head button {
  padding: .3rem .58rem;
}

.hero-mock-card-head em {
  margin-left: auto;
  color: #697586;
  font-size: .62rem;
  font-style: normal;
  font-weight: 720;
}

.hero-mock-tabs {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-height: 40px;
  padding: 0 .85rem;
  border-bottom: 1px solid rgba(15,23,42,0.065);
  color: #0054a6;
  font-size: .62rem;
  font-weight: 760;
}

.hero-mock-tabs span {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  white-space: nowrap;
}

.hero-mock-tabs .is-selected {
  padding: .2rem .45rem;
  border-radius: 999px;
  background: #f3f5f8;
}

.hero-mock-tabs i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #2f80ed;
}

.hero-mock-filterbar {
  display: flex;
  align-items: center;
  gap: .62rem;
  min-height: 46px;
  padding: 0 .85rem;
  border-bottom: 1px solid rgba(15,23,42,0.065);
  color: #8a94a6;
  font-size: .61rem;
  font-weight: 720;
}

.hero-mock-filterbar label {
  min-width: 160px;
  padding: .38rem .62rem;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 999px;
  background: #fff;
  color: #9aa4b2;
  font-weight: 650;
}

.hero-mock-row {
  display: grid;
  grid-template-columns: 20px 36px minmax(132px, .82fr) minmax(0, 1.62fr) 82px;
  align-items: center;
  gap: .62rem;
  min-height: 58px;
  padding: 0 .8rem;
  border-bottom: 1px solid rgba(15,23,42,0.06);
}

.hero-mock-row:last-child {
  border-bottom: 0;
}

.hero-mock-row--new {
  background: linear-gradient(90deg, rgba(47,128,237,0.08), rgba(255,255,255,0));
  box-shadow: inset 3px 0 0 #2f80ed;
}

.hero-mock-check {
  width: 15px;
  height: 15px;
  border: 1px solid #d7dee8;
  border-radius: 5px;
  background: #fff;
}

.hero-mock-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: #fff;
  font-size: .8rem;
  box-shadow: 0 1px 2px rgba(15,23,42,.10), inset 0 1px 0 rgba(255,255,255,.20);
}

.hero-mock-avatar--red { background: linear-gradient(135deg,#f97316,#ea580c); }
.hero-mock-avatar--blue { background: linear-gradient(135deg,#3b82f6,#1d4ed8); }
.hero-mock-avatar--dark { background: linear-gradient(135deg,#2f80ed,#0054a6); }
.hero-mock-avatar--green { background: linear-gradient(135deg,#16a34a,#15803d); }

.hero-mock-sender strong,
.hero-mock-message strong {
  display: block;
  overflow: hidden;
  color: #2f3744;
  font-size: .72rem;
  font-weight: 720;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-mock-message strong {
  font-size: .78rem;
  font-weight: 760;
}

.hero-mock-sender small,
.hero-mock-message small {
  display: block;
  margin-top: .12rem;
  overflow: hidden;
  color: #8a94a6;
  font-size: .58rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-mock-rail {
  display: grid;
  justify-items: end;
  gap: .14rem;
}

.hero-mock-rail span {
  color: #697586;
  font-size: .58rem;
  font-weight: 720;
}

.hero-mock-rail b {
  color: #2f80ed;
  font-size: .59rem;
  font-weight: 820;
  white-space: nowrap;
}

.hero-mock-row--review .hero-mock-rail b { color: #d97706; }
.hero-mock-row--planned .hero-mock-rail b { color: #0054a6; }
.hero-mock-row--resolved .hero-mock-rail b { color: #15803d; }

.hero-mock-page--detail {
  display: flex;
  flex-direction: column;
  gap: .72rem;
}

.hero-mock-detail-head {
  display: grid;
  gap: .25rem;
}

.hero-mock-detail-head > span {
  color: #607082;
  font-size: .65rem;
  font-weight: 760;
}

.hero-mock-detail-head em {
  justify-self: start;
  padding: .24rem .5rem;
  border-radius: 999px;
  background: rgba(0,84,166,0.08);
  color: #0054a6;
  font-size: .6rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .06em;
}

.hero-mock-detail-head h3,
.hero-mock-qr-head h3 {
  margin: 0;
  color: #171a20;
  font-size: 1rem;
  font-weight: 840;
  letter-spacing: -.03em;
  line-height: 1.08;
}

.hero-mock-detail-head p {
  margin: 0;
  color: #6b7785;
  font-size: .68rem;
  font-weight: 650;
}

.hero-mock-detail-head small {
  display: inline-flex;
  margin-right: .28rem;
  padding: .22rem .46rem;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: #4d5b69;
  font-size: .58rem;
  font-weight: 740;
}

.hero-mock-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: .8rem;
  min-height: 0;
}

.hero-mock-detail-main {
  display: grid;
  gap: .68rem;
  min-width: 0;
}

.hero-mock-detail-main > div,
.hero-mock-detail-side {
  border-radius: 14px;
  padding: .82rem .9rem;
}

.hero-mock-message-card > div,
.hero-mock-compose-card > div {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .52rem;
}

.hero-mock-message-card strong,
.hero-mock-compose-card strong,
.hero-mock-detail-side > strong,
.hero-mock-qr-hero strong,
.hero-mock-review-card-mini b,
.hero-mock-surface-row strong {
  color: #202733;
  font-size: .78rem;
  font-weight: 820;
}

.hero-mock-message-card span,
.hero-mock-compose-card span {
  color: #7a8492;
  font-size: .61rem;
  font-weight: 680;
}

.hero-mock-message-card p,
.hero-mock-compose-card p,
.hero-mock-qr-head p,
.hero-mock-qr-hero p {
  margin: 0;
  color: #3f4650;
  font-size: .73rem;
  line-height: 1.44;
}

.hero-mock-compose-card p {
  padding: .68rem .72rem;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 10px;
  background: #f8fafc;
}

.hero-mock-compose-card button,
.hero-mock-detail-side button {
  margin-top: .65rem;
  padding: .42rem .68rem;
  border-color: #121317;
  background: #121317;
  color: #fff;
}

.hero-mock-thread-card {
  color: #7a8492;
  font-size: .68rem;
  font-weight: 700;
  text-align: center;
}

.hero-mock-detail-side {
  display: grid;
  gap: .5rem;
  align-self: start;
}

.hero-mock-detail-side span {
  justify-self: start;
  padding: .26rem .52rem;
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 800;
}

.hero-mock-detail-side .is-blue {
  background: #f3f5f8;
  color: #0054a6;
}

.hero-mock-detail-side div {
  display: flex;
  justify-content: space-between;
  gap: .65rem;
  padding: .5rem .58rem;
  border-radius: 10px;
  background: #f6f8fb;
  color: #4b5563;
}

.hero-mock-detail-side b,
.hero-mock-detail-side small {
  font-size: .61rem;
}

.hero-mock-detail-side small {
  color: #6b7785;
  font-weight: 650;
}

.hero-mock-page--qr {
  display: flex;
  flex-direction: column;
  gap: .72rem;
}

.hero-mock-qr-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.hero-mock-qr-head h3 {
  margin-top: .16rem;
}

.hero-mock-qr-head div:last-child {
  display: flex;
  gap: .45rem;
  white-space: nowrap;
}

.hero-mock-qr-head button {
  padding: .44rem .64rem;
  border-color: rgba(15,23,42,0.13);
  background: #fff;
  color: #202733;
}

.hero-mock-qr-head button.is-primary {
  border-color: #2f80ed;
  background: #2f80ed;
  color: #fff;
}

.hero-mock-qr-hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) 260px;
  gap: 1rem;
  align-items: center;
  min-height: 150px;
  padding: .95rem 1rem;
  border-radius: 16px;
  background:
    radial-gradient(circle at 86% 16%, rgba(245,158,11,0.12), transparent 36%),
    #fff;
}

.hero-mock-qr-hero strong {
  display: block;
  margin: .32rem 0 .42rem;
  font-size: 1.05rem;
  letter-spacing: -.03em;
}

.hero-mock-review-card-mini {
  position: relative;
  overflow: hidden;
  padding: .72rem;
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 14px;
  background: #fffefb;
  box-shadow: 0 16px 32px rgba(15,23,42,0.10);
}

.hero-mock-review-card-mini > b {
  display: block;
  margin: .18rem 0 .55rem;
}

.hero-mock-review-card-mini > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem;
}

.hero-mock-review-card-mini span {
  display: grid;
  gap: .18rem;
  padding: .48rem;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 10px;
  background: #fff;
}

.hero-mock-review-card-mini strong {
  color: #202733;
  font-size: .61rem;
  font-weight: 820;
  line-height: 1.15;
}

.hero-mock-review-card-mini em {
  color: #596575;
  font-size: .56rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.18;
}

.hero-mock-review-card-mini img {
  width: 42px;
  height: 42px;
  margin-top: .18rem;
  border-radius: 4px;
}

.hero-mock-qr-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .58rem;
}

.hero-mock-qr-metrics div {
  padding: .62rem .68rem;
  border-radius: 12px;
}

.hero-mock-qr-metrics strong {
  display: block;
  margin-top: .18rem;
  color: #171a20;
  font-size: .95rem;
  font-weight: 840;
}

.hero-mock-surface-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: .62rem;
  padding: .72rem .82rem;
  border-radius: 14px;
}

.hero-mock-surface-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff7ed;
  color: #b45309;
  font-size: .62rem;
  font-weight: 860;
}

.hero-mock-surface-row small {
  display: block;
  margin-top: .1rem;
  color: #7a8492;
  font-size: .61rem;
  font-weight: 650;
}

.hero-mock-surface-row em {
  padding: .27rem .48rem;
  border-radius: 999px;
  background: #ecfdf3;
  color: #15803d;
  font-size: .58rem;
  font-style: normal;
  font-weight: 820;
  white-space: nowrap;
}

.hero-mock-surface-row em.is-ready {
  background: #f3f5f8;
  color: #0054a6;
}

.hero-mock-surface-row button {
  padding: .42rem .62rem;
  border-color: #121317;
  background: #121317;
  color: #fff;
  white-space: nowrap;
}

.hero-desktop-window {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background: #fff;
}

.hero-desktop-topbar {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-height: 64px;
  padding: 0 1.35rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(255, 255, 255, 0.96)),
    #fff;
}

.hero-desktop-brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-width: 148px;
  color: var(--at-slate);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-desktop-brand img {
  display: block;
  width: 22px;
  height: 22px;
}

.hero-desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-width: 0;
  color: #697586;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-desktop-nav span {
  position: relative;
}

.hero-desktop-nav .is-active {
  color: var(--at-slate);
}

.hero-desktop-nav .is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -21px;
  height: 2px;
  border-radius: 999px;
  background: #2f80ed;
}

.hero-desktop-account {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-left: auto;
  color: #697586;
  font-size: .72rem;
  font-weight: 600;
  white-space: nowrap;
}

.hero-desktop-account strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #e7f1ff;
  color: #0054a6;
  font-size: .68rem;
}

.hero-desktop-body {
  flex: 1;
  min-height: 0;
  padding: 1rem 1.15rem 1.2rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(244, 248, 252, 0.86), rgba(255, 255, 255, 0.88) 34%),
    #f8fafc;
}

.hero-desktop-body--theater {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(305px, .68fr);
  gap: 1rem;
  padding: 1rem;
  background:
    radial-gradient(circle at 72% 12%, rgba(47, 128, 237, 0.08), transparent 33%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 45%, #f9fafb 100%);
}

.hero-theater-list,
.hero-theater-detail,
.hero-reply-thread,
.hero-reply-side,
.hero-review-card,
.hero-review-response {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03), 0 14px 34px rgba(15, 23, 42, 0.06);
}

.hero-theater-list {
  overflow: hidden;
  min-width: 0;
}

.hero-theater-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0 1.05rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.hero-theater-head strong,
.hero-theater-detail h3 {
  display: block;
  color: var(--at-slate);
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.2;
}

.hero-theater-head span {
  display: block;
  margin-top: .22rem;
  color: #697586;
  font-size: .74rem;
  font-weight: 600;
}

.hero-theater-head button,
.hero-detail-compose button {
  border: 0;
  border-radius: 11px;
  background: #121317;
  color: #fff;
  font: inherit;
  font-size: .78rem;
  font-weight: 760;
  letter-spacing: 0;
}

.hero-theater-head button {
  padding: .55rem .75rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
}

.hero-theater-filters {
  display: flex;
  align-items: center;
  gap: .45rem;
  min-height: 48px;
  padding: 0 1.05rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.hero-theater-filters span {
  padding: .28rem .55rem;
  border-radius: 999px;
  color: #697586;
  font-size: .68rem;
  font-weight: 720;
  white-space: nowrap;
}

.hero-theater-filters .is-selected {
  background: #f3f5f8;
  color: #0054a6;
}

.hero-theater-rows {
  display: grid;
}

.hero-theater-row {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  align-items: center;
  gap: .75rem;
  min-height: 70px;
  padding: 0 1.05rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--at-slate);
}

.hero-theater-row:last-child {
  border-bottom: 0;
}

.hero-theater-row.is-selected {
  background: linear-gradient(90deg, rgba(47, 128, 237, 0.08), rgba(255, 255, 255, 0));
  box-shadow: inset 3px 0 0 #2f80ed;
}

.hero-theater-row strong {
  display: block;
  overflow: hidden;
  color: #202733;
  font-size: .82rem;
  font-weight: 760;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-theater-row small {
  display: block;
  margin-top: .18rem;
  overflow: hidden;
  color: #798494;
  font-size: .68rem;
  font-weight: 620;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-theater-row em {
  padding: .28rem .48rem;
  border-radius: 999px;
  background: #f3f6fa;
  color: #4b5563;
  font-size: .66rem;
  font-style: normal;
  font-weight: 760;
}

.hero-source-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2f80ed;
  box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.12);
}

.hero-source-dot--qr { background: #f59e0b; box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14); }
.hero-source-dot--widget { background: #2f80ed; box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.12); }
.hero-source-dot--email { background: #2f80ed; box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.12); }
.hero-source-dot--form { background: #16a34a; box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12); }

.hero-theater-detail {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.15rem;
}

.hero-detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .95rem;
  color: #697586;
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .01em;
}

.hero-theater-detail h3 {
  margin: 0 0 .65rem;
  font-size: 1.18rem;
}

.hero-theater-detail > p {
  margin: 0;
  color: #4b5563;
  font-size: .86rem;
  line-height: 1.48;
}

.hero-detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .45rem;
  margin-top: 1rem;
}

.hero-detail-meta span {
  min-width: 0;
  padding: .54rem .58rem;
  border-radius: 10px;
  background: #f6f8fb;
  color: #4b5563;
  font-size: .68rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero-detail-compose {
  margin-top: auto;
  padding: .9rem;
  border-radius: 14px;
  background: #121317;
  color: #fff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
}

.hero-detail-compose strong {
  display: block;
  font-size: .78rem;
  font-weight: 780;
}

.hero-detail-compose p {
  margin: .45rem 0 .8rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: .78rem;
  line-height: 1.45;
}

.hero-detail-compose button {
  padding: .55rem .72rem;
  background: #fff;
  color: #121317;
}

.hero-desktop-inbox-head,
.hero-desktop-filterbar,
.hero-desktop-search {
  display: flex;
  align-items: center;
  gap: .72rem;
}

.hero-desktop-inbox-head {
  height: 48px;
  padding: 0 .85rem;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 14px 14px 0 0;
  background: #fff;
}

.hero-desktop-inbox-head strong {
  color: var(--at-slate);
  font-size: .95rem;
}

.hero-desktop-inbox-head span {
  padding: .2rem .46rem;
  border-radius: 999px;
  background: #f2f4f7;
  color: #697586;
  font-size: .66rem;
  font-weight: 650;
}

.hero-desktop-inbox-head button {
  padding: .28rem .58rem;
  border: 1px solid #2f80ed;
  border-radius: 999px;
  background: #f8f9fc;
  color: #0054a6;
  font: inherit;
  font-size: .68rem;
  font-weight: 700;
}

.hero-desktop-inbox-head em {
  color: #697586;
  font-size: .68rem;
  font-style: normal;
}

.hero-desktop-filterbar {
  min-height: 49px;
  padding: 0 .85rem;
  border-right: 1px solid rgba(15, 23, 42, 0.07);
  border-left: 1px solid rgba(15, 23, 42, 0.07);
  background: #fff;
  color: #0054a6;
  font-size: .7rem;
  font-weight: 650;
}

.hero-desktop-filterbar .is-selected {
  padding: .25rem .55rem;
  border-radius: 999px;
  background: #f3f5f8;
}

.hero-desktop-search {
  min-height: 68px;
  padding: 0 .85rem;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  background: #fff;
  color: #8a94a6;
  font-size: .7rem;
  font-weight: 600;
}

.hero-desktop-search label {
  width: min(28%, 220px);
  min-width: 150px;
  padding: .48rem .72rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: #fff;
  color: #9aa4b2;
  font-weight: 500;
}

.hero-desktop-table {
  margin-top: .85rem;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 14px;
  background: #fff;
}

.hero-desktop-row {
  display: grid;
  grid-template-columns: 24px 34px minmax(120px, .78fr) minmax(0, 1.48fr) 76px;
  align-items: center;
  gap: .75rem;
  min-height: 58px;
  padding: 0 .8rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--at-slate);
}

.hero-desktop-row:last-child {
  border-bottom: 0;
}

.hero-desktop-row.is-hot {
  background: #f8f9fc;
  box-shadow: inset 3px 0 0 #2f80ed;
}

.hero-desktop-check {
  width: 16px;
  height: 16px;
  border: 1px solid #d7dee8;
  border-radius: 5px;
  background: #fff;
}

.hero-desktop-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
}

.hero-desktop-avatar--red { background: #e5484d; }
.hero-desktop-avatar--black { background: #16181d; }
.hero-desktop-avatar--blue { background: #2f80ed; }
.hero-desktop-avatar--green { background: #16a34a; }
.hero-desktop-avatar--amber { background: #f59e0b; }

.hero-desktop-row strong,
.hero-desktop-row b {
  display: block;
  overflow: hidden;
  color: #2f3744;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.24;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-desktop-row small {
  display: block;
  margin-top: .12rem;
  overflow: hidden;
  color: #8a94a6;
  font-size: .63rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-desktop-row em {
  justify-self: end;
  color: #2f80ed;
  font-size: .66rem;
  font-style: normal;
  font-weight: 750;
}

.hero-desktop-body--reply {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 245px;
  gap: 1rem;
  padding: 1rem;
  background:
    radial-gradient(circle at 18% 14%, rgba(245, 158, 11, 0.08), transparent 30%),
    linear-gradient(180deg, #f8f9fc 0%, #ffffff 44%, #f9fafb 100%);
}

.hero-reply-thread {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  min-width: 0;
  padding: 1rem;
}

.hero-reply-card,
.hero-reply-compose {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.hero-reply-card,
.hero-reply-compose {
  padding: 1rem;
}

.hero-reply-source {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .85rem;
}

.hero-reply-source span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #e27a00;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
}

.hero-reply-source strong,
.hero-reply-compose-head strong,
.hero-reply-side strong,
.hero-review-card strong,
.hero-review-response strong {
  color: var(--at-slate);
  font-size: .88rem;
}

.hero-reply-source em,
.hero-reply-compose-head span {
  color: #697586;
  font-size: .72rem;
  font-style: normal;
}

.hero-reply-card p,
.hero-reply-compose p,
.hero-review-card p,
.hero-review-response p {
  margin: 0;
  color: #3f4650;
  font-size: .88rem;
  line-height: 1.55;
}

.hero-reply-compose {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.hero-reply-compose-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .85rem;
}

.hero-reply-tools {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 1.05rem;
}

.hero-reply-tools span {
  padding: .42rem .58rem;
  border-radius: 10px;
  background: #f6f8fb;
  color: #4b5563;
  font-size: .7rem;
  font-weight: 720;
}

.hero-reply-compose button {
  align-self: flex-start;
  margin-top: auto;
  padding: .68rem .95rem;
  border: 0;
  border-radius: 11px;
  background: #121317;
  color: #fff;
  font: inherit;
  font-size: .8rem;
  font-weight: 750;
}

.hero-reply-side {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding: 1rem;
  align-self: stretch;
}

.hero-reply-side span {
  padding: .62rem .68rem;
  border-radius: 10px;
  background: #f6f8fb;
  color: #4b5563;
  font-size: .72rem;
  font-weight: 650;
}

.hero-reply-side .is-blue {
  background: #f3f5f8;
  color: #0054a6;
}

.hero-desktop-body--reviews {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  background:
    radial-gradient(circle at 76% 18%, rgba(245, 158, 11, 0.12), transparent 30%),
    radial-gradient(circle at 20% 82%, rgba(47, 128, 237, 0.08), transparent 34%),
    linear-gradient(180deg, #fbfcff 0%, #ffffff 48%, #f8fafc 100%);
}

.hero-review-card,
.hero-review-response {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 1.1rem;
  align-self: stretch;
}

.hero-review-head {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .8rem;
}

.hero-review-head em {
  margin-left: auto;
  padding: .3rem .52rem;
  border-radius: 10px;
  background: #fff7ed;
  color: #b45309;
  font-size: .66rem;
  font-style: normal;
  font-weight: 750;
}

.hero-review-stars {
  margin-bottom: .7rem;
  color: #f59e0b;
  font-size: 1.18rem;
  letter-spacing: .04em;
}

.hero-review-route {
  display: grid;
  gap: .12rem;
  margin-top: auto;
  padding: .85rem;
  border-radius: 14px;
  background: #fff7ed;
  color: #3f4650;
}

.hero-review-route span {
  color: #b45309;
  font-size: .66rem;
  font-weight: 820;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-review-route strong {
  color: var(--at-slate);
  font-size: .86rem;
  font-weight: 780;
}

.hero-review-route small {
  color: #697586;
  font-size: .7rem;
  font-weight: 650;
}

.hero-review-route--private {
  background: #f3f5f8;
}

.hero-review-route--private span {
  color: #0054a6;
}

.hero-review-mini-list {
  display: grid;
  gap: .45rem;
  margin-top: .75rem;
}

.hero-review-mini-list span {
  padding: .52rem .58rem;
  border-radius: 10px;
  background: #f6f8fb;
  color: #4b5563;
  font-size: .7rem;
  font-weight: 700;
}

.hero-review-response > .hero-review-outcome {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: .36rem .56rem;
  border-radius: 10px;
  background: #ecfdf3;
  color: #15803d;
  font-size: .68rem;
  font-weight: 800;
}

/* ── Hero Floating Cards (converging toward inbox) ── */
.hero-cards {
  display: none;
  position: absolute;
  inset: 0 0 auto 0;
  height: 430px;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
  contain: layout paint;
  transform: translateZ(0);
}
.hero-card {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 11px;
  padding: 9px 12px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 10px 28px -6px rgba(15,23,42,0.12);
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--at-slate);
  max-width: 230px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  opacity: 0;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0) scale(1);
  backface-visibility: hidden;
  pointer-events: auto;
  transition: transform .4s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow .4s ease;
}
.hero-cards:hover .hero-card {
  animation-play-state: paused;
}
.hero-cards.is-paused .hero-card {
  animation-play-state: paused;
}
.hero-card:hover {
  transform: translate3d(0, 0, 0) scale(1.08) !important;
  box-shadow: 0 2px 4px rgba(15,23,42,0.06), 0 18px 48px -10px rgba(15,23,42,0.2);
  z-index: 10;
}
.hero-card .hc-stars { color: #d97706; font-size: 0.75rem; letter-spacing: 1px; line-height: 1; }
.hero-card .hc-text {
  color: var(--at-slate);
  margin-top: 3px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 210px;
}
.hero-card .hc-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
}
.hero-card .hc-badge {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 9999px;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hc-badge--appstore { background: var(--at-navy-light); color: var(--at-navy); margin-top: 0; }
.hc-badge--form    { background: var(--at-navy-light); color: var(--at-navy); }
.hc-badge--bug     { background: #fef2f2; color: #dc2626; }
.hc-badge--feature { background: #f0fdf4; color: #16a34a; }
.hero-card .hc-time { font-size: 0.625rem; color: #94a3b8; font-weight: 500; }

/* Initial positions — cards in the gutters left/right of the hero-copy text column.
   Delays spread evenly 0→8.5s across 10s cycle so at any moment ~2 cards are visible
   (each card is visible ~30% of cycle = 3s; 3s / 1.7s stagger ≈ 1.8 cards avg). */
.hero-card-1 { top: 110px; left: 2%;   animation-delay: 0s;    animation-name: converge-L1; }
.hero-card-2 { top: 290px; left: 1%;   animation-delay: 3.4s;  animation-name: converge-L2; }
.hero-card-3 { top: 210px; left: 3%;   animation-delay: 6.8s;  animation-name: converge-L3; }
.hero-card-4 { top: 110px; right: 2%;  left: auto; animation-delay: 1.7s; animation-name: converge-R1; }
.hero-card-5 { top: 290px; right: 1%;  left: auto; animation-delay: 5.1s; animation-name: converge-R2; }
.hero-card-6 { top: 210px; right: 3%;  left: auto; animation-delay: 8.5s; animation-name: converge-R3; }

/* Cards drift inward-and-down from edges but FADE before crossing into the text column.
   The pulsing funnel dot at center provides the symbolic "destination" — cards never
   physically cross the text area. Smooth 3-stop keyframes, linear timing. */
@keyframes converge-L1 {
  0%   { opacity: 0;    transform: translate3d(0, 0, 0) scale(1); }
  22%  { opacity: 0.95; transform: translate3d(3vw, 14px, 0) scale(0.98); }
  72%  { opacity: 0.12; transform: translate3d(14vw, 90px, 0) scale(0.7); }
  100% { opacity: 0;    transform: translate3d(22vw, 160px, 0) scale(0.45); }
}
@keyframes converge-L2 {
  0%   { opacity: 0;    transform: translate3d(0, 0, 0) scale(1); }
  22%  { opacity: 0.95; transform: translate3d(3vw, -6px, 0) scale(0.98); }
  72%  { opacity: 0.12; transform: translate3d(15vw, -48px, 0) scale(0.7); }
  100% { opacity: 0;    transform: translate3d(24vw, -90px, 0) scale(0.45); }
}
@keyframes converge-L3 {
  0%   { opacity: 0;    transform: translate3d(0, 0, 0) scale(1); }
  22%  { opacity: 0.95; transform: translate3d(3vw, 6px, 0) scale(0.98); }
  72%  { opacity: 0.12; transform: translate3d(14vw, 40px, 0) scale(0.7); }
  100% { opacity: 0;    transform: translate3d(22vw, 70px, 0) scale(0.45); }
}
@keyframes converge-R1 {
  0%   { opacity: 0;    transform: translate3d(0, 0, 0) scale(1); }
  22%  { opacity: 0.95; transform: translate3d(-3vw, 14px, 0) scale(0.98); }
  72%  { opacity: 0.12; transform: translate3d(-14vw, 90px, 0) scale(0.7); }
  100% { opacity: 0;    transform: translate3d(-22vw, 160px, 0) scale(0.45); }
}
@keyframes converge-R2 {
  0%   { opacity: 0;    transform: translate3d(0, 0, 0) scale(1); }
  22%  { opacity: 0.95; transform: translate3d(-3vw, -6px, 0) scale(0.98); }
  72%  { opacity: 0.12; transform: translate3d(-15vw, -48px, 0) scale(0.7); }
  100% { opacity: 0;    transform: translate3d(-24vw, -90px, 0) scale(0.45); }
}
@keyframes converge-R3 {
  0%   { opacity: 0;    transform: translate3d(0, 0, 0) scale(1); }
  22%  { opacity: 0.95; transform: translate3d(-3vw, 6px, 0) scale(0.98); }
  72%  { opacity: 0.12; transform: translate3d(-14vw, 40px, 0) scale(0.7); }
  100% { opacity: 0;    transform: translate3d(-22vw, 70px, 0) scale(0.45); }
}

@media (max-width: 1199px) {
  .hero-cards { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-card { animation: none; display: none; }
}

/* ── How It Works ── */
.steps-section {
  padding: 5rem 0;
  border-top: 1px solid var(--at-border);
}
.step-card {
  text-align: center;
  padding: 0 1.5rem;
}
.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step-number {
  font-style: italic;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--at-navy);
  opacity: 0.2;
  margin-bottom: .75rem;
  /* Override marketing-base.css .step-number */
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  display: block;
}
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .4rem;
  letter-spacing: -0.02em;
}
.step-card p {
  color: var(--at-muted);
  font-size: .875rem;
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.step-connector {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-connector::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--at-border);
  top: 50%;
}

/* ── Detail Feature Rows ── */
.detail-feature h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.75rem;
  margin-bottom: .75rem;
  letter-spacing: -0.04em;
  line-height: 1.08;
}
.detail-feature p {
  color: var(--at-muted);
  line-height: 1.75;
  font-size: 1.125rem;
  letter-spacing: -0.005em;
}

/* ── Screenshot with browser chrome ── */
.screenshot-clean {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 28px 72px rgba(15,23,42,0.12);
  transition: box-shadow .3s cubic-bezier(0.16, 1, 0.3, 1);
  background: #fff;
}
.screenshot-clean:hover {
  box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 32px 76px rgba(15,23,42,0.14);
}
.screenshot-clean img {
  display: block;
  width: 100%;
  height: auto;
}

.landing-pricing-section {
  background: #f6f7f8 !important;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 5.75rem;
  padding-bottom: 5.75rem;
}

.landing-pricing-section .section-header {
  max-width: 720px;
  margin: 0 auto 2.25rem;
}

.landing-pricing-kicker {
  margin: 0 0 .75rem;
  color: var(--at-muted);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.landing-pricing-section .section-title {
  max-width: 660px;
  margin: 0 auto;
}

.landing-pricing-section .section-description {
  max-width: 560px;
}

.landing-pricing-section .pricing-shell {
  max-width: 1260px;
  margin-inline: auto;
}

.landing-pricing-section .pricing-microcopy {
  margin-bottom: 1rem;
  color: #4b5563;
}

.landing-pricing-section .pricing-toggle {
  margin-bottom: 1.5rem;
  background: #f6f7f8;
  border-color: #dfe4ec;
}

.landing-pricing-section .pricing {
  gap: 1rem;
}

.landing-pricing-section .pricing-card {
  padding: 1.35rem 1.45rem 1.35rem;
  border-radius: 12px;
  background: #fff;
  border-color: #e1e5eb;
  box-shadow: none;
}

.landing-pricing-section .pricing-card.featured {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.32);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 20px 40px -32px rgba(15, 23, 42, 0.28);
}

.landing-pricing-section .pricing-label {
  position: static !important;
  display: block !important;
  transform: none !important;
  width: 100%;
  text-align: left;
  margin: 0 0 .75rem;
  min-height: 1.55rem;
}

.landing-pricing-section .pricing-card:not(.featured) .pricing-label {
  display: none;
}

.landing-pricing-section .pricing-popular-badge {
  font-size: .625rem;
  padding: .26rem .65rem;
  box-shadow: none;
}

.landing-pricing-section .pricing-title,
.landing-pricing-section .pricing-price,
.landing-pricing-section .pricing-billed-note,
.landing-pricing-section .pricing-subtitle {
  text-align: left;
  justify-content: flex-start;
}

.landing-pricing-section .pricing-title {
  margin-bottom: .6rem;
}

.landing-pricing-section .pricing-price {
  margin-bottom: .45rem;
}

.landing-pricing-section .pricing-billed-note {
  min-height: 1.2em;
  margin-bottom: .85rem;
}

.landing-pricing-section .pricing-subtitle {
  min-height: 2.2em;
  margin-bottom: .65rem;
}

.landing-pricing-section .pricing-features {
  margin-top: 1rem !important;
  margin-bottom: 1.35rem !important;
}

.landing-pricing-section .pricing-features li {
  font-size: .85rem;
  line-height: 1.38;
  padding: .31rem 0;
}

.landing-pricing-section .pricing-cta-note {
  text-align: left;
}

.landing-pricing-section .pricing-card .pricing-btn .btn,
.landing-pricing-section .pricing-card .pricing-btn .btn-primary {
  border-radius: 8px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
@media (max-width: 991px) {
  .landing-pricing-section .pricing-card.featured {
    order: initial;
  }
}

@media (max-width: 575px) {
  .landing-pricing-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .landing-pricing-section .section-header {
    max-width: 330px;
    margin-bottom: 1.65rem;
  }
  .landing-pricing-kicker {
    margin-bottom: .72rem;
    font-size: .68rem;
    letter-spacing: .13em;
  }
  .landing-pricing-section .section-title {
    max-width: 330px;
    font-size: clamp(2rem, 8.45vw, 2.22rem);
    line-height: 1.07;
    letter-spacing: -0.04em;
  }
  .landing-pricing-section .section-description {
    max-width: 318px;
    margin-top: 1rem !important;
    font-size: 1.02rem;
    line-height: 1.42;
  }
  .landing-pricing-section .pricing-microcopy {
    width: fit-content;
    max-width: calc(100vw - 2rem);
    margin: 0 auto .9rem;
    justify-content: center;
    font-size: .76rem;
    line-height: 1.25;
    white-space: nowrap;
  }
  .landing-pricing-section .pricing-toggle {
    width: min(100%, 280px);
    margin-bottom: 1.25rem;
  }
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #f8f9fa;
  border-bottom: 1px solid var(--at-border);
}
.browser-chrome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}
.browser-chrome-bar {
  flex: 1;
  height: 24px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--at-border);
  margin-left: 8px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: .6875rem;
  color: #adb5bd;
  letter-spacing: -0.01em;
}

/* Pricing section CSS moved to marketing-base.css (shared with /pricing/ and marketing pages) */

/* ── Device Mockup (review protection) ── */
.device-mockup {
  width: 260px;
  margin: 0 auto;
  border: 1.5px solid var(--at-border);
  border-radius: 32px;
  padding: 2.5rem 1.75rem 2rem;
  background: #fff;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.device-mockup::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  background: var(--at-border);
  border-radius: 4px;
}
.device-app {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-bottom: 1.5rem;
}
.device-app-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--at-navy);
  flex-shrink: 0;
}
.device-app-name {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--at-slate);
  letter-spacing: -0.01em;
}
.device-prompt {
  font-size: .8125rem;
  color: var(--at-muted);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.005em;
}
.device-stars {
  text-align: center;
  font-size: 1.375rem;
  letter-spacing: .12em;
  margin-bottom: 1.25rem;
  color: #f59f00;
}
.device-stars .star-empty { color: var(--at-border); }
.device-cta {
  display: block;
  text-align: center;
  padding: .625rem 1rem;
  background: var(--at-slate);
  color: #fff;
  border-radius: 9999px;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.device-skip {
  text-align: center;
  font-size: .75rem;
  color: var(--at-muted);
  margin-top: .625rem;
  letter-spacing: -0.005em;
}

/* ── Product Showcase ── */
.product-showcase {
  padding: var(--section-pad-y) 0;
  background: #fff;
}
@media (max-width: 768px) {
  .product-showcase { padding: var(--section-pad-y-sm) 0; }
}

/* ── Product Accordion ── */
.product-showcase-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.5rem;
}
.product-showcase-intro .section-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--at-muted);
  margin-bottom: .75rem;
}
.product-showcase-intro .section-title {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: .9rem;
}
.product-showcase-intro .section-description {
  color: var(--at-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

.pa-screenshot-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.05), 0 24px 56px rgba(15,23,42,0.10);
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.98);
}
.product-accordion {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: transparent;
}
.pa-item {
  padding: 1.1rem 0 1.1rem 1.1rem;
  cursor: pointer;
  transition: background .2s, border-color .2s, box-shadow .2s, transform .2s;
  border-radius: 0;
  border: 0;
  border-left: 2px solid transparent;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}
.pa-item:last-child { border-bottom: none; }
.pa-active {
  border-left-color: var(--at-navy);
  background: transparent;
  box-shadow: none;
  transform: none;
}
.pa-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.2rem;
  color: #9ca5b3;
  letter-spacing: -0.02em;
  margin: 0;
  transition: color .2s, font-weight .2s;
}
.pa-active .pa-title {
  color: var(--at-slate);
  font-weight: 700;
}
/* "Pro+" badge inline with the Store Response accordion title — signals
   that the row is gated to the top tier without removing it from the tour. */
.pa-pro-badge {
  display: inline-flex;
  align-items: center;
  margin-left: .5rem;
  padding: .14rem .42rem;
  border-radius: 6px;
  background: rgba(44, 119, 231, .12);
  color: #0054a6;
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  vertical-align: middle;
}
/* Demoted "Store reviews" section variant — slightly smaller title +
   a Pro+-flavoured section label so it reads as supporting content, not
   the lead value-prop. */
.section-label--proplus {
  color: #0054a6;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .72rem;
}
.section-title--demoted {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
}
.demoted-band-cta {
  margin-top: 1.85rem;
}
.btn-demoted-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem .95rem .55rem 1.1rem;
  border-radius: 9999px;
  border: 1px solid rgba(15, 23, 42, .14);
  color: var(--at-slate);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  background: #fff;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.btn-demoted-link svg {
  transition: transform .2s ease;
  flex-shrink: 0;
}
.btn-demoted-link:hover {
  border-color: rgba(15, 23, 42, .28);
  background: #fff;
  color: var(--at-slate);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-demoted-link:hover svg {
  transform: translateX(2px);
}
.pa-desc {
  color: #748091;
  font-size: .92rem;
  line-height: 1.65;
  margin-top: .45rem;
  letter-spacing: -0.005em;
  transition: color .2s;
}
.pa-active .pa-desc {
  color: var(--at-muted);
}
.founder-card {
  position: relative;
  text-align: left;
  padding: 2.25rem 2.5rem;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.96));
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 16px 36px -28px rgba(15,23,42,0.22);
}
.founder-eyebrow {
  font-size: .6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #6b7280;
  margin-bottom: 1rem;
}
.founder-quote-mark {
  position: absolute;
  top: 1.75rem;
  right: 2rem;
  width: 32px;
  height: 32px;
  fill: rgba(0,84,166,0.12);
}
.founder-copy {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--at-slate);
  line-height: 1.68;
  letter-spacing: -0.01em;
  max-width: 660px;
  margin: 0 0 1.75rem;
  font-weight: 400;
  font-style: normal;
}
.founder-copy em { font-style: normal; color: var(--landing-accent-ink); font-weight: 600; }
.founder-sig {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.founder-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .02em;
  background: linear-gradient(135deg, #1b2130 0%, #384356 100%);
  box-shadow: 0 2px 8px rgba(15,23,42,0.18), inset 0 0 0 2px rgba(255,255,255,0.35);
}
.founder-sig-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}
.founder-name {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--at-slate);
  letter-spacing: -0.01em;
}
.founder-role {
  font-size: .8125rem;
  color: var(--at-muted);
}
.founder-role a {
  color: var(--at-navy);
  text-decoration: none;
}
.founder-role a:hover {
  text-decoration: underline;
}

.landing-founder-section {
  padding: calc(var(--section-pad-y) * 0.7) 0;
}
@media (max-width: 768px) {
  .landing-founder-section { padding: calc(var(--section-pad-y-sm) * 0.9) 0; }
}

@media (max-width: 768px) {
  .founder-card {
    padding: 1.75rem 1.5rem;
  }
  .founder-copy {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  .founder-quote-mark {
    top: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
  }
}

.landing-cta-shell {
  max-width: 640px;
  margin: 0 auto;
}

/* Desktop/Mobile accordion visibility */
.pa-mobile { display: none; }
.pa-desktop { display: block; }

@media (max-width: 991px) {
  .pa-desktop { display: none; }
  .pa-mobile { display: flex; flex-direction: column; gap: 0; }
}

/* Mobile accordion items */
.pa-mobile-item {
  padding: 1.1rem 0;
  cursor: pointer;
  border-bottom: 1px solid rgba(15,23,42,0.08);
  transition: background .2s;
}
.pa-mobile-item:last-child { border-bottom: none; }
.pa-mobile-active { background: transparent; }
.pa-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.pa-mobile-header .pa-title { font-size: 1.125rem; }
.pa-mobile-active .pa-title { color: var(--at-slate); }
.pa-mobile-chevron {
  flex-shrink: 0;
  color: var(--at-muted);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.pa-mobile-active .pa-mobile-chevron {
  transform: rotate(180deg);
  color: var(--at-navy);
}
.pa-mobile-item .pa-desc {
  margin-top: .25rem;
  font-size: .8125rem;
}
.pa-mobile-img {
  margin-top: .75rem;
}
.pa-mobile-screenshot {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 10px 28px rgba(15,23,42,0.10);
}

/* ── Landing form stage ── */
.landing-forms-feature {
  background:
    radial-gradient(circle at top left, rgba(32,107,196,0.08), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
}

.landing-form-stage {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  min-height: 650px;
  padding: .6rem .4rem 1.8rem 0;
}

.landing-form-shot-mobile {
  display: none;
}

.landing-form-glow {
  position: absolute;
  inset: 8% 8% 16% 0;
  border-radius: 56px;
  background:
    radial-gradient(circle at top left, rgba(32, 107, 196, 0.18), transparent 48%),
    radial-gradient(circle at 85% 28%, rgba(18, 19, 23, 0.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(232, 93, 69, 0.16), transparent 46%);
  filter: blur(56px);
  opacity: .95;
}

.landing-form-shot {
  position: relative;
}

.landing-form-shot-main {
  z-index: 3;
  width: min(100%, 590px);
  transform: rotate(-6deg);
  margin-top: 1.9rem;
  margin-left: .35rem;
}

.landing-form-shot-secondary {
  position: absolute;
  top: .25rem;
  right: .85rem;
  z-index: 2;
  width: 280px;
  transform: rotate(8deg);
}

.landing-form-shot-frame {
  display: block;
  border: 0;
  border-radius: 28px;
  background: transparent;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 38px 90px rgba(15,23,42,0.16);
}

.landing-form-shot-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.landing-form-chip {
  position: absolute;
  z-index: 4;
  padding: .65rem .95rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 14px 26px rgba(15,23,42,0.1);
  font-size: .82rem;
  font-weight: 600;
  color: var(--at-slate);
  letter-spacing: -0.01em;
}

.landing-form-chip-thread {
  left: 1.05rem;
  bottom: .75rem;
}

/* ── Channel tabs (Website / In an app / QR scan) ── */
.channel-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  background: var(--landing-paper-soft);
  border: 1px solid var(--landing-border-warm);
  border-radius: 10px;
  padding: 4px;
  max-width: 364px;
  margin: 0 auto 1rem;
}
.channel-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  padding: .45rem .5rem;
  border-radius: 7px;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--at-muted);
  cursor: pointer;
  transition: color .15s, background .15s, box-shadow .15s;
  white-space: nowrap;
}
.channel-tab svg {
  flex-shrink: 0;
  stroke-width: 2;
}
.channel-tab:hover {
  color: var(--at-slate);
}
.channel-tab.is-active {
  background: #fff;
  color: var(--at-slate);
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(15,23,42,0.06), 0 0 0 1px rgba(15,23,42,0.06);
}

/* ── Channel context strip — sits above form, changes per tab ── */
.channel-context {
  max-width: 340px;
  margin: 0 auto -1px; /* sit flush with the form card */
  background: #fff;
  border: 1px solid var(--landing-border-warm);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  height: 28px;
  display: flex;
  align-items: center;
  padding: 0 .75rem;
  position: relative;
  z-index: 2;
  transform: rotate(-0.8deg);
  transform-origin: bottom center;
  transition: max-width .28s ease, height .28s ease, border-color .2s ease, background .2s ease, transform .28s ease;
}
.channel-context--website {
  background: #fff;
}
.channel-context--app {
  max-width: 292px;
  height: 34px;
  border-color: #121317;
  border-bottom: none;
  border-radius: 28px 28px 0 0;
  background: #121317;
  color: #fff;
  transform: rotate(0deg);
}
.channel-context--qr {
  max-width: 318px;
  background: #fff8ed;
  border-color: #f5d18b;
  border-radius: 7px 7px 0 0;
}
.channel-chrome {
  display: flex;
  align-items: center;
  gap: .375rem;
  width: 100%;
}
.channel-chrome-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.channel-chrome-url {
  margin-left: .375rem;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
  background: var(--at-surface);
  border-radius: 4px;
  padding: 2px .5rem;
  font-family: ui-monospace, SF Mono, Monaco, Menlo, monospace;
  font-size: .6875rem;
  color: var(--at-muted);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
}
.channel-chrome-url svg {
  flex-shrink: 0;
  color: #16a34a;
}
.channel-phone {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: .6875rem;
  color: var(--at-slate);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.channel-context--app .channel-phone,
.channel-context--app .channel-phone-icons {
  color: #fff;
}
.channel-phone-time { flex-shrink: 0; }
.channel-phone-icons {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  color: var(--at-slate);
}
.channel-qr {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .6875rem;
  font-weight: 600;
  color: #92400e;
  letter-spacing: -0.005em;
}
.channel-qr svg { flex-shrink: 0; color: #b45309; }
.channel-qr-arrow {
  margin-left: auto;
  color: #b45309;
  font-weight: 400;
}

/* ── Live interactive form (tilted card) ── */
.live-form-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(15,23,42,0.04),
    0 24px 64px -12px rgba(15,23,42,0.18);
  max-width: 340px;
  margin: 0 auto;
  transform: rotate(-0.8deg);
  transition: max-width .28s ease, border-color .2s ease, border-radius .2s ease, transform .35s ease, box-shadow .35s ease;
}
/* When channel-context is above, square off the top corners so it reads as one piece */
.channel-context + .live-form-card {
  border-radius: 0 0 20px 20px;
}
.live-form-card:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow:
    0 1px 2px rgba(15,23,42,0.04),
    0 32px 72px -14px rgba(15,23,42,0.22);
}
.live-form-card--website {
  max-width: 340px;
}
.live-form-card--app {
  max-width: 292px;
  border-top: 0;
  border-right: 8px solid #121317;
  border-bottom: 8px solid #121317;
  border-left: 8px solid #121317;
  border-radius: 0 0 28px 28px;
  transform: rotate(0deg);
  box-shadow: 0 1px 2px rgba(15,23,42,0.05), 0 22px 56px -14px rgba(15,23,42,0.2);
}
.channel-context--app + .live-form-card--app {
  border-radius: 0 0 28px 28px;
}
.live-form-card--qr {
  max-width: 318px;
  border-color: #eadfcd;
  border-radius: 0 0 7px 7px;
  background: #fffdf8;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 22px 46px -18px rgba(120,72,16,0.2);
}
.channel-context--qr + .live-form-card--qr {
  border-radius: 0 0 7px 7px;
}
.live-form-card--app:hover {
  transform: translateY(-2px);
}
.live-form-card--qr:hover {
  transform: rotate(-0.35deg) translateY(-2px);
}
/* When the card hovers (rotation→0), align the context strip too */
.live-form-card:hover ~ .channel-context,
.col-lg-5:has(.live-form-card:hover) .channel-context {
  transform: rotate(0deg);
}
@media (max-width: 640px) {
  .channel-tab { font-size: .6875rem; padding: .375rem .375rem; }
}
.live-form-accent {
  height: 4px;
  background: #2f80ed;
  transition: background .45s cubic-bezier(0.4, 0, 0.2, 1);
}
.live-form-body {
  padding: 1.55rem 1.55rem 1.25rem;
  text-align: center;
}
.live-form-card--app .live-form-body {
  padding: 1.25rem 1.15rem 1.05rem;
}
.live-form-card--qr .live-form-body {
  padding: 1.55rem 1.35rem 1.15rem;
}
.live-form-card--qr .live-form-accent {
  height: 2px;
  background: #1f2937 !important;
}
.live-form-brand {
  transition: opacity .26s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}
.live-form-brand.is-fading { opacity: 0; }
.live-form-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  margin: 0 auto .7rem;
  background: linear-gradient(135deg, #2f80ed 0%, #0054a6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .45s cubic-bezier(0.4, 0, 0.2, 1);
}
.live-form-card--app .live-form-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
}
.live-form-card--qr .live-form-icon {
  border-radius: 14px;
}
.live-form-icon-char {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.live-form-title {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--at-slate);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.live-form-sub {
  font-size: .75rem;
  color: var(--at-muted);
  margin-bottom: .9rem;
}
.live-form-label {
  font-size: .6875rem;
  font-weight: 500;
  color: var(--at-slate);
  text-align: left;
  margin-bottom: .35rem;
}
.live-form-required { color: #dc2626; }
.live-form-optional { color: var(--at-muted); font-weight: 400; font-size: .5625rem; }
.live-form-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 3px;
}
.live-form-stars svg {
  cursor: pointer;
  transition: fill .15s ease, transform .15s ease;
}
.live-form-range {
  display: flex;
  justify-content: space-between;
  font-size: .5625rem;
  color: var(--at-muted);
  margin-bottom: .9rem;
}
.live-form-textarea {
  width: 100%;
  border: 1px solid var(--at-border);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: .75rem;
  font-family: var(--font-body);
  resize: none;
  height: 52px;
  color: var(--at-slate);
  box-sizing: border-box;
  background: #fff;
  transition: border-color .15s ease;
}
.live-form-card--app .live-form-textarea {
  height: 48px;
}
.live-form-card--qr .live-form-textarea {
  min-height: 58px;
}
.live-form-textarea:focus {
  outline: none;
  border-color: #9aa6b4;
}
.live-form-counter {
  text-align: right;
  font-size: .5625rem;
  color: var(--at-muted);
  margin: 3px 0 .7rem;
}
.live-form-input {
  width: 100%;
  border: 1px solid var(--at-border);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: .75rem;
  font-family: var(--font-body);
  color: var(--at-slate);
  box-sizing: border-box;
  margin-bottom: .9rem;
  background: #fff;
  transition: border-color .15s ease;
}
.live-form-input:focus {
  outline: none;
  border-color: #9aa6b4;
}
.live-form-submit {
  width: 100%;
  background: #2f80ed;
  color: #fff;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 8px;
  padding: 11px;
  font-size: .8125rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background .35s cubic-bezier(0.4, 0, 0.2, 1), transform .12s ease, filter .15s ease;
}
.live-form-submit:hover {
  filter: brightness(0.93);
  transform: translateY(-1px);
}
.live-form-submit.sent {
  background: #16a34a !important;
  transform: translateY(0);
}
.live-form-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 1rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.live-form-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, 0.14);
  padding: 0;
  cursor: pointer;
  transition: background .25s ease, transform .2s ease, width .3s ease;
}
.live-form-dot:hover { background: rgba(15, 23, 42, 0.32); }
.live-form-dot.active {
  background: var(--at-slate);
  width: 18px;
  border-radius: 9999px;
}
.live-form-note {
  text-align: center;
  margin-top: .95rem;
  font-size: .72rem;
  color: #94a3b8;
  letter-spacing: 0;
  font-weight: 500;
}

@media (max-width: 991px) {
  .live-form-card,
  .live-form-card--qr { transform: rotate(0deg); }
  .channel-context,
  .channel-context--qr { transform: rotate(0deg); }
}

/* ── Split Feature Sections ── */
.feature-section {
  padding: var(--section-pad-y) 0;
}
@media (max-width: 768px) {
  .feature-section { padding: var(--section-pad-y-sm) 0; }
}
.feature-section .section-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--at-muted);
  margin-bottom: .75rem;
}
.feature-section .section-title {
  margin-bottom: .85rem;
}
.feature-section .section-title em {
  color: var(--landing-accent-ink);
}
.feature-section .section-body {
  color: var(--at-muted);
  font-size: 1rem;
  line-height: 1.68;
  letter-spacing: -0.005em;
  max-width: 430px;
}
.feature-section .feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.feature-section .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .96rem;
  color: var(--at-muted);
  line-height: 1.42;
  padding: .3rem 0;
  letter-spacing: -0.005em;
}
.feature-section .feature-list li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #2fb344;
  margin-top: 2px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .hero-title { font-size: clamp(2.3rem, 5.2vw, 3rem); }
  .hero-content { padding-top: 5rem; padding-bottom: 1.9rem; }
  .hero-layout { gap: 1.35rem; }
  .hero-copy {
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
  }
  .hero-title,
  .hero-description {
    margin-inline: auto;
  }
  .hero-cta-row {
    justify-content: center;
  }
  .hero-actions {
    margin-top: 1.25rem;
  }
  .hero-description {
    margin-top: 12.35rem;
  }
  .hero-channel-grid {
    max-width: min(100%, 720px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-channel-grid a:nth-child(odd) {
    border-left: 0;
  }
  .hero-channel-grid a:nth-child(n + 3) {
    border-top: 1px solid #e2e8f0;
  }
  .hero-note {
    text-align: center;
  }
  .hero-scene {
    width: min(900px, 100vw);
    height: 430px;
  }
  .hero-flow-lines path {
    stroke-width: 1.25;
  }
  .hero-flow-item--burst-qr {
    left: 23%;
    top: 300px;
    width: 21px;
  }
  .hero-flow-item--burst-review {
    right: 23.5%;
    top: 304px;
    width: 20px;
  }
  .hero-scene-item--inbox {
    left: 50%;
    top: 276px;
    width: 130px;
  }
  .hero-scene-item--form {
    left: 18%;
    top: 192px;
    width: 50px;
  }
  .hero-scene-item--qr {
    left: 22%;
    top: 314px;
    width: 40px;
  }
  .hero-scene-item--bubble {
    left: 50%;
    top: 250px;
    width: 44px;
  }
  .hero-scene-item--email {
    right: 18%;
    top: 198px;
    width: 76px;
  }
  .hero-scene-item--review {
    right: 22%;
    top: 318px;
    width: 46px;
  }
  .hero-proof-tabs {
    margin-bottom: .7rem;
  }
  .hero-proof {
    margin-top: 1.75rem;
  }
  .product-showcase-intro {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .navbar-landing,
  .navbar-landing.scrolled {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: rgba(225, 230, 236, 0.95);
  }
  .hero-dark,
  .hero-dark .container-wide,
  .hero-layout,
  .hero-copy {
    max-width: 100%;
    overflow-x: clip;
  }
  .hero-content {
    min-height: auto;
    padding-top: 5.1rem;
    padding-bottom: 1.25rem;
  }
  .hero-copy {
    max-width: 100%;
    padding-inline: 0;
    box-sizing: border-box;
  }
  .hero-title {
    font-size: clamp(1.95rem, 8vw, 2.05rem);
    line-height: 1.05;
    letter-spacing: 0;
    max-width: min(100%, 330px);
    text-wrap: balance;
  }
  .hero-title em {
    white-space: normal;
  }
  .hero-kicker {
    max-width: min(100%, 330px);
    margin-bottom: .75rem;
    font-size: .64rem;
    letter-spacing: .09em;
  }
  .hero-description {
    max-width: min(100%, 328px);
    font-size: .96rem;
    line-height: 1.43;
    margin-top: 13.45rem;
  }
  .hero-channel-grid {
    width: min(100%, 342px);
    margin-top: 1rem;
  }
  .hero-channel-grid a {
    padding: .7rem .7rem .72rem;
  }
  .hero-channel-grid span {
    font-size: .58rem;
    letter-spacing: .08em;
  }
  .hero-channel-grid strong {
    font-size: .75rem;
    line-height: 1.22;
  }
  .hero-actions {
    margin-top: 1.25rem;
    width: min(100%, 318px, calc(100vw - 2rem));
    margin-inline: auto;
  }
  .hero-cta-row {
    gap: .6rem;
    justify-content: center;
    width: 100%;
  }
  .hero-cta-row .btn-hero-primary,
  .hero-cta-row .btn-hero-outline {
    width: 100%;
    max-width: 318px;
    box-sizing: border-box;
    white-space: nowrap;
  }
  .hero-scene {
    left: calc(50% - min(168px, calc((100vw - 32px) / 2)));
    width: min(336px, calc(100vw - 32px));
    top: 224px;
    height: 196px;
    transform: none;
    overflow: visible;
  }
  .hero-flow-lines path {
    stroke-width: 1.1;
  }
  .hero-flow-item--burst-qr {
    left: 38px;
    top: 94px;
    width: 20px;
    --scene-transform: rotate(58deg);
  }
  .hero-flow-item--burst-review {
    right: 42px;
    top: 96px;
    width: 19px;
    --scene-transform: rotate(-24deg);
  }
  .hero-scene-item--inbox {
    left: 50%;
    top: 64px;
    width: 104px;
  }
  .hero-scene-item--form {
    left: 8px;
    top: 45px;
    width: 34px;
  }
  .hero-scene-item--qr {
    left: 26px;
    top: 103px;
    width: 30px;
  }
  .hero-scene-item--bubble {
    left: 50%;
    top: 44px;
    width: 34px;
    --scene-transform: translateX(-50%) rotate(2deg);
  }
  .hero-scene-item--email {
    right: 8px;
    top: 45px;
    width: 52px;
  }
  .hero-scene-item--review {
    right: 27px;
    top: 103px;
    width: 34px;
  }
  .hero-proof {
    margin-top: 1.65rem;
  }
  .hero-product-video {
    width: min(100%, 318px);
  }
  .hero-product-video__media {
    border-radius: 16px;
    box-shadow:
      0 1px 2px rgba(15, 23, 42, 0.04),
      0 18px 42px rgba(15, 23, 42, 0.10);
  }
  .hero-product-video__poster {
    display: block;
  }
  .hero-product-video__caption {
    display: none;
  }
  .hero-proof-tabs {
    max-width: min(318px, calc(100vw - 2rem));
    width: 100%;
    box-sizing: border-box;
  }
  .hero-proof-tabs button {
    flex: 1;
    padding: 0 0 .55rem;
  }
  .hero-proof-mobile-frame {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(15,23,42,0.08);
    background: #fff;
    box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 24px 60px rgba(15,23,42,0.12);
    aspect-ratio: 0.92 / 1.04;
    margin-top: .1rem;
    padding: 0;
    box-sizing: border-box;
    max-width: min(318px, calc(100vw - 2rem));
    margin-inline: auto;
  }
  .hero-mobile-preview {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    color: var(--at-slate);
    background: linear-gradient(180deg, #f8f9fc 0%, #fff 25%);
    text-align: left;
  }
  .hero-mobile-topbar {
    display: flex;
    align-items: center;
    gap: .55rem;
    min-height: 44px;
    padding: .55rem .78rem;
    border-bottom: 1px solid rgba(15,23,42,0.08);
    font-size: .75rem;
    font-weight: 700;
  }
  .hero-mobile-menu {
    width: 12px;
    height: 8px;
    border-top: 1.5px solid rgba(15,23,42,0.45);
    border-bottom: 1.5px solid rgba(15,23,42,0.45);
    box-sizing: border-box;
  }
  .hero-mobile-brand {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
  }
  .hero-mobile-brand img {
    display: block;
  }
  .hero-mobile-badge {
    margin-left: auto;
    padding: .18rem .38rem;
    border-radius: 6px;
    background: #f3f5f8;
    color: #0054a6;
    font-size: .62rem;
    font-weight: 700;
  }
  .hero-mobile-panel {
    margin: .75rem .72rem 0;
    border: 1px solid rgba(15,23,42,0.09);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(15,23,42,0.08);
  }
  .hero-mobile-panel-head,
  .hero-mobile-filter-row {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .56rem .65rem;
    border-bottom: 1px solid rgba(15,23,42,0.07);
  }
  .hero-mobile-panel-head strong {
    font-size: .86rem;
    line-height: 1;
  }
  .hero-mobile-panel-head span {
    padding: .14rem .32rem;
    border-radius: 999px;
    background: #f3f5f7;
    color: #6b7280;
    font-size: .58rem;
    font-weight: 700;
  }
  .hero-mobile-filter-row {
    gap: .36rem;
    overflow: hidden;
  }
  .hero-mobile-filter-row span {
    white-space: nowrap;
    color: #0054a6;
    font-size: .58rem;
    font-weight: 700;
  }
  .hero-mobile-filter-row .is-active {
    padding: .2rem .42rem;
    border: 1px solid #2f80ed;
    border-radius: 999px;
    background: #f8f9fc;
  }
  .hero-mobile-list {
    display: grid;
  }
  .hero-mobile-row {
    position: relative;
    display: grid;
    gap: .18rem;
    padding: .58rem .66rem .58rem .86rem;
    border-bottom: 1px solid rgba(15,23,42,0.07);
  }
  .hero-mobile-row:last-child {
    border-bottom: none;
  }
  .hero-mobile-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: .6rem;
    bottom: .6rem;
    width: 3px;
    border-radius: 999px;
    background: #2f80ed;
  }
  .hero-mobile-row--hot::before {
    background: #e27a00;
  }
  .hero-mobile-source,
  .hero-mobile-meta {
    color: #64748b;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .02em;
  }
  .hero-mobile-row strong {
    font-size: .72rem;
    line-height: 1.28;
  }
  .hero-mobile-meta b {
    color: #0054a6;
  }
  .hero-mobile-thread,
  .hero-mobile-review-card {
    margin: .85rem .75rem;
    padding: .78rem;
    border: 1px solid rgba(15,23,42,0.09);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15,23,42,0.08);
  }
  .hero-mobile-thread-subject {
    padding-bottom: .65rem;
    border-bottom: 1px solid rgba(15,23,42,0.08);
    font-size: .78rem;
    font-weight: 800;
  }
  .hero-mobile-message {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: .55rem;
    margin-top: .7rem;
  }
  .hero-mobile-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e27a00;
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
  }
  .hero-mobile-message--you .hero-mobile-avatar {
    background: #0054a6;
  }
  .hero-mobile-message p {
    margin: 0;
    color: #3f4650;
    font-size: .72rem;
    line-height: 1.35;
  }
  .hero-mobile-send {
    margin-top: .8rem;
    padding: .55rem .75rem;
    border-radius: 10px;
    background: var(--at-slate);
    color: #fff;
    text-align: center;
    font-size: .72rem;
    font-weight: 800;
  }
  .hero-mobile-stars {
    color: #e27a00;
    letter-spacing: .04em;
    font-size: .84rem;
    margin: .4rem 0 .5rem;
  }
  .hero-mobile-review-card strong {
    display: block;
    font-size: .86rem;
    line-height: 1.25;
  }
  .hero-mobile-review-card p {
    margin: .4rem 0 .75rem;
    color: #4b5563;
    font-size: .72rem;
    line-height: 1.35;
  }
  .hero-mobile-response {
    padding-left: .65rem;
    border-left: 3px solid #0054a6;
    color: #3f4650;
    font-size: .68rem;
    line-height: 1.35;
  }
  .hero-mobile-response + .hero-mobile-response {
    margin-top: .58rem;
  }
  .hero-mobile-response--private {
    border-left-color: #e27a00;
  }
  .hero-mobile-response span {
    display: block;
    margin-bottom: .15rem;
    color: #0054a6;
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .hero-mobile-response--private span {
    color: #b45309;
  }
  .hero-proof-frame {
    display: none;
  }
  .product-showcase {
    padding-top: var(--section-pad-y-sm);
  }
  .product-showcase-intro {
    text-align: left;
    margin-bottom: 1.75rem;
  }
  .landing-form-stage {
    min-height: 0;
    padding: .15rem 0 1.35rem;
  }

  .landing-form-shot-main,
  .landing-form-shot-secondary,
  .landing-form-glow {
    display: none;
  }

  .landing-form-shot-mobile {
    display: block;
    width: 100%;
    max-width: 420px;
    padding-inline: .35rem;
    box-sizing: border-box;
    margin: 0 auto;
  }

.landing-form-shot-mobile-frame {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 28px 72px rgba(15,23,42,0.16);
  background: rgba(255,255,255,0.98);
  padding: .4rem;
}

.landing-form-shot-mobile-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

  .landing-form-shot-main {
    transform: none;
    margin-top: 0;
    width: 100%;
  }

  .landing-form-shot-frame {
    border-radius: 24px;
  }

  .landing-form-chip {
    display: none;
  }
  .navbar-landing > .container-wide {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .navbar-brand-text {
    font-size: 1rem;
  }
  .navbar-landing .nav-right {
    display: none !important;
  }
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 0;
  }
  .step-connector { display: none; }
  .device-mockup { width: 220px; padding: 2rem 1.25rem 1.5rem; }
}

/* Widget button: compact on mobile */
@media (max-width: 767.98px) {
  #at-widget-btn {
    bottom: 16px !important;
    right: 16px !important;
    font-size: .8125rem !important;
    padding: 8px 14px !important;
  }
}

/* ══════════════════════════════
   BENTO PRODUCT GRID (b2-*)
   ══════════════════════════════ */
/* Bento system: quiet product cards, restrained borders, and real UI evidence. */

.b2-section {
  padding: 5.5rem 0 3.75rem;
  background: #fafafa;
  border-top: 1px solid rgba(15, 23, 42, 0.055);
}
.b2-section + .b2-section { padding-top: 0; }
.b2-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--at-muted);
}
.b2-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--at-slate);
  margin: .875rem 0 .5rem;
  text-wrap: balance;
}
.b2-sub {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--at-muted);
  letter-spacing: -0.005em;
  max-width: 640px;
  margin: 0;
}
.b2-section-head {
  margin-bottom: 2.5rem;
  max-width: 720px;
}

.b2-flow {
  display: block;
  width: min(100%, 1180px);
  margin: -1.35rem auto 1.35rem;
  padding: 0;
}
.b2-flow picture,
.b2-flow img {
  display: block;
  width: 100%;
}
.b2-flow img {
  height: auto;
}
.b2-flow--system {
  margin: -1rem auto 1.9rem;
}
.b2-flow-diagram {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr) 44px minmax(0, 1.2fr) 44px minmax(0, 1fr);
  align-items: center;
  gap: .85rem;
}
.b2-flow-node {
  display: grid;
  align-content: start;
  gap: .48rem;
  min-width: 0;
}
.b2-flow-label {
  color: #64748b;
  font-size: .66rem;
  font-weight: 820;
  letter-spacing: .105em;
  line-height: 1.15;
  text-transform: uppercase;
}
.b2-flow-node > strong {
  color: #17191f;
  font-size: .96rem;
  font-weight: 760;
  line-height: 1.15;
  letter-spacing: -0.012em;
}
.b2-flow-qr-card,
.b2-flow-form-card,
.b2-flow-inbox-card,
.b2-flow-action-card {
  border: 1px solid #dfe4ea;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.055);
}
.b2-flow-qr-card {
  display: grid;
  justify-items: center;
  gap: .32rem;
  min-height: 150px;
  padding: .82rem .78rem .72rem;
  text-align: center;
}
.b2-flow-qr-card small,
.b2-flow-qr-card em {
  color: #64748b;
  font-size: .56rem;
  font-style: normal;
  font-weight: 760;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.b2-flow-qr-card b {
  color: #17191f;
  font-size: .82rem;
  font-weight: 820;
  line-height: 1.08;
}
.b2-flow-qr-card img {
  width: 62px;
  height: 62px;
}
.b2-flow-form-card {
  display: grid;
  gap: .5rem;
  min-height: 150px;
  padding: .86rem;
}
.b2-flow-stars {
  color: #fbbc04;
  font-size: .98rem;
  letter-spacing: .025em;
  line-height: 1;
}
.b2-flow-form-card p {
  margin: 0;
  color: #17191f;
  font-size: .86rem;
  font-weight: 680;
  line-height: 1.28;
}
.b2-flow-form-card small {
  align-self: end;
  color: #697586;
  font-size: .72rem;
  font-weight: 680;
}
.b2-flow-inbox-card {
  display: grid;
  gap: .46rem;
  min-height: 150px;
  padding: .78rem;
}
.b2-flow-inbox-card div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .18rem .5rem;
  padding: .58rem .62rem;
  border: 1px solid #e6eaf0;
  border-radius: 7px;
  background: #f8f9fc;
}
.b2-flow-inbox-card b {
  grid-row: span 2;
  align-self: center;
  min-width: 3.7rem;
  padding: .22rem .38rem;
  border-radius: 999px;
  background: #eaf2ff;
  color: #0054a6;
  font-size: .64rem;
  font-weight: 820;
  text-align: center;
}
.b2-flow-inbox-card span {
  overflow: hidden;
  color: #17191f;
  font-size: .75rem;
  font-weight: 760;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.b2-flow-inbox-card em {
  color: #697586;
  font-size: .68rem;
  font-style: normal;
  font-weight: 680;
}
.b2-flow-action-card {
  display: grid;
  gap: .48rem;
  min-height: 150px;
  padding: .78rem;
}
.b2-flow-action-card span {
  display: flex;
  align-items: center;
  gap: .46rem;
  min-height: 2.2rem;
  padding: .45rem .55rem;
  border: 1px solid #e5e9ef;
  border-radius: 7px;
  background: #fff;
  color: #2f3744;
  font-size: .76rem;
  font-weight: 760;
}
.b2-flow-action-card span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.10);
}
.b2-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #17191f;
  opacity: .48;
}
.b2-flow-arrow svg {
  display: block;
  width: 44px;
  height: 20px;
}
.b2-flow-arrow path {
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

/* ── Bento grid: 12 cols, fixed row height ── */
.b2-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 8.25rem; /* 132px row unit; tall card spans 4 rows = 528px */
  gap: 1rem;
}

/* ── Card: clean container ── */
.b2-card {
  position: relative;
  background: #fff;
  border: 1px solid #e1e5eb;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: var(--at-slate);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.b2-card:hover {
  border-color: rgba(15,23,42,0.18);
  box-shadow: 0 1px 2px rgba(15,23,42,0.03), 0 10px 24px -16px rgba(15,23,42,0.16);
  color: var(--at-slate);
}

.b2-card-head {
  padding: 1.5rem 1.625rem 0;
  display: flex;
  flex-direction: column;
  gap: .375rem;
}
.b2-card-eyebrow {
  font-size: .6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--at-muted);
  display: inline-flex;
  align-items: center;
  gap: .375rem;
}
.b2-card-eyebrow svg {
  width: 13px;
  height: 13px;
  stroke-width: 2;
  flex-shrink: 0;
  color: currentColor;
}
.b2-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0;
  color: var(--at-slate);
}
.b2-card-desc {
  font-size: .875rem;
  line-height: 1.55;
  color: var(--at-muted);
  margin: 0;
  letter-spacing: -0.005em;
  max-width: 32em;
}
.b2-card-body {
  padding: 1.5rem 1.625rem 1.25rem;
}
.b2-card-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.625rem;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f6f7f9;
  color: var(--at-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, transform .2s;
}
.b2-card:hover .b2-card-arrow {
  background: var(--at-slate);
  color: #fff;
  transform: translate(1px, -1px);
}
.b2-card-arrow svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.25;
}

/* ── Image area: framed screenshot, no full-bleed ── */
.b2-figure {
  margin: 1rem 1.625rem 1.625rem;
  border: 1px solid #e1e5eb;
  border-radius: 8px;
  background: #f6f7f8;
  overflow: hidden;
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 0;
}
.b2-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.b2-inbox-mock {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: calc(100% - 22px);
  margin-top: 22px;
  overflow: hidden;
  background: #fff;
}
.b2-inbox-mock-top {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: 34px;
  padding: 0 .72rem;
  border-bottom: 1px solid rgba(15,23,42,0.08);
  background: linear-gradient(180deg, #fff, #f8f9fc);
  color: #667085;
  font-size: .58rem;
  font-weight: 650;
  letter-spacing: 0;
  white-space: nowrap;
}
.b2-inbox-mock-brand {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  min-width: 116px;
  color: var(--at-slate);
  font-size: .66rem;
  font-weight: 800;
}
.b2-inbox-mock-brand img {
  width: 14px;
  height: 14px;
  margin: 0;
}
.b2-inbox-mock-top span {
  position: relative;
}
.b2-inbox-mock-top .is-active {
  color: var(--at-slate);
}
.b2-inbox-mock-top .is-active::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: #2f80ed;
}
.b2-inbox-mock-top em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-left: auto;
  border-radius: 7px;
  background: #e7f1ff;
  color: #0054a6;
  font-size: .55rem;
  font-style: normal;
  font-weight: 800;
}
.b2-inbox-mock-panel {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: .78rem;
  background:
    linear-gradient(180deg, rgba(244,248,252,.85), rgba(255,255,255,.96) 34%),
    #f8fafc;
}
.b2-inbox-mock-head,
.b2-inbox-mock-filters {
  display: flex;
  align-items: center;
  gap: .48rem;
  padding: 0 .62rem;
  border: 1px solid rgba(15,23,42,0.08);
  background: #fff;
}
.b2-inbox-mock-head {
  min-height: 36px;
  border-radius: 11px 11px 0 0;
}
.b2-inbox-mock-head strong {
  color: var(--at-slate);
  font-size: .72rem;
}
.b2-inbox-mock-head span {
  padding: .15rem .36rem;
  border-radius: 999px;
  background: #f2f4f7;
  color: #667085;
  font-size: .52rem;
  font-weight: 700;
}
.b2-inbox-mock-head button {
  padding: .2rem .4rem;
  border: 1px solid #2f80ed;
  border-radius: 999px;
  background: #f8f9fc;
  color: #0054a6;
  font: inherit;
  font-size: .52rem;
  font-weight: 800;
}
.b2-inbox-mock-filters {
  min-height: 42px;
  border-top: 0;
  border-radius: 0 0 11px 11px;
  color: #0054a6;
  font-size: .56rem;
  font-weight: 750;
}
.b2-inbox-mock-filters .is-selected {
  padding: .2rem .42rem;
  border-radius: 999px;
  background: #f3f5f8;
}
.b2-inbox-mock-list {
  flex: 1;
  min-height: 0;
  margin-top: .72rem;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 11px;
  background: #fff;
}
.b2-inbox-mock-row {
  display: grid;
  grid-template-columns: 30px minmax(88px, .7fr) minmax(0, 1.35fr) 56px;
  align-items: center;
  gap: .62rem;
  min-height: 48px;
  padding: 0 .7rem;
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.b2-inbox-mock-row:last-child {
  border-bottom: 0;
}
.b2-inbox-mock-row.is-hot {
  background: #f8f9fc;
  box-shadow: inset 3px 0 0 #2f80ed;
}
.b2-inbox-mock-row i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: #e5484d;
  color: #fff;
  font-size: .55rem;
  font-style: normal;
  font-weight: 800;
}
.b2-inbox-mock-row:nth-child(2) i { background: #16181d; }
.b2-inbox-mock-row:nth-child(3) i { background: #2f80ed; }
.b2-inbox-mock-row:nth-child(4) i { background: #16a34a; }
.b2-inbox-mock-row b,
.b2-inbox-mock-row strong {
  display: block;
  overflow: hidden;
  color: #2f3744;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.b2-inbox-mock-row small {
  display: block;
  margin-top: .12rem;
  overflow: hidden;
  color: #8a94a6;
  font-size: .5rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.b2-inbox-mock-row em {
  justify-self: end;
  color: #2f80ed;
  font-size: .53rem;
  font-style: normal;
  font-weight: 800;
}

/* ── Browser chrome (optional decoration on top of image) ── */
.b2-figure--chrome::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 22px;
  background: #fff;
  border-bottom: 1px solid var(--at-border);
  z-index: 2;
  background-image:
    radial-gradient(circle 4px at 10px 11px, #e5484d 50%, transparent 51%),
    radial-gradient(circle 4px at 24px 11px, #f5a524 50%, transparent 51%),
    radial-gradient(circle 4px at 38px 11px, #16a34a 50%, transparent 51%);
  background-repeat: no-repeat;
}
.b2-figure--chrome img { margin-top: 22px; }

/* ── Card span variants ── */
.b2-card--hero    { grid-column: span 7; grid-row: span 4; }
.b2-card--builder { grid-column: span 5; grid-row: span 2; }
.b2-card--qr      { grid-column: span 5; grid-row: span 2; }
.b2-card--reply   { grid-column: span 4; grid-row: span 3; }
.b2-card--widget  { grid-column: span 4; grid-row: span 3; }
.b2-card--store   { grid-column: span 4; grid-row: span 3; }

/* Hero card has bigger heading + image takes more vertical room */
.b2-card--hero .b2-card-title { font-size: 1.625rem; }
.b2-card--hero .b2-card-desc { font-size: .9375rem; max-width: 42ch; }
.b2-card--hero .b2-figure { margin-top: 1.25rem; }

/* Side-by-side cards (builder, qr) — image on right, text left */
.b2-card--side {
  flex-direction: row;
  align-items: stretch;
}
.b2-card--side .b2-card-head { padding: 1.5rem 0 1.5rem 1.625rem; flex: 1; justify-content: center; }
.b2-card--side .b2-figure { margin: 1rem 1.25rem 1rem 1rem; flex: 0 0 50%; }

/* ── Collection routes: compact body navigation for high-intent pages ── */
.collection-routes-section {
  padding: 4.25rem 0;
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.collection-routes-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.55fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.collection-routes-copy {
  position: sticky;
  top: 6.25rem;
}

.collection-routes-label {
  margin: 0 0 .85rem;
  color: var(--at-muted);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.collection-routes-copy h2 {
  margin: 0;
  color: var(--at-slate);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.collection-routes-copy p:not(.collection-routes-label) {
  margin: 1rem 0 0;
  max-width: 33rem;
  color: var(--at-muted);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: -0.005em;
}

.collection-routes-mini-flow {
  display: grid;
  gap: .65rem;
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(15, 23, 42, .10);
}

.collection-routes-mini-flow span {
  position: relative;
  display: grid;
  grid-template-columns: 1.8rem minmax(0, 1fr);
  align-items: center;
  gap: .7rem;
  color: #475569;
  font-size: .93rem;
  font-weight: 610;
  line-height: 1.35;
  letter-spacing: 0;
}

.collection-routes-mini-flow span:not(:last-child)::after {
  content: '';
  position: absolute;
  left: .825rem;
  top: 1.45rem;
  bottom: -.78rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(15, 23, 42, .14), rgba(15, 23, 42, .05));
}

.collection-routes-mini-flow i {
  display: inline-flex;
  width: 1.7rem;
  height: 1.7rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
}

.collection-routes-mini-flow i::before {
  content: '';
  width: .42rem;
  height: .42rem;
  border-radius: 999px;
  background: var(--at-slate);
  opacity: .74;
}

.collection-routes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(15, 23, 42, 0.10);
}

.collection-route-link {
  position: relative;
  display: grid;
  gap: .35rem;
  min-height: 8.35rem;
  padding: 1.15rem 1.2rem 1.15rem 0;
  color: var(--at-slate);
  text-decoration: none !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.10);
  transition: color .18s ease, background .18s ease, padding-left .18s ease;
}

.collection-route-link:nth-child(2n) {
  padding-left: 1.2rem;
  padding-right: 0;
  border-left: 1px solid rgba(15, 23, 42, 0.10);
}

.collection-route-link::after {
  content: '';
  position: absolute;
  top: 1.18rem;
  right: 1.05rem;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  opacity: 0;
  transform: translate(-4px, 4px) rotate(45deg);
  transition: opacity .18s ease, transform .18s ease;
}

.collection-route-link:nth-child(2n)::after {
  right: .05rem;
}

.collection-route-link span {
  color: var(--at-muted);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.collection-route-link strong {
  display: block;
  padding-right: 1.25rem;
  color: var(--at-slate);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.collection-route-link em {
  display: block;
  max-width: 31ch;
  color: var(--at-muted);
  font-style: normal;
  font-size: .88rem;
  line-height: 1.48;
  letter-spacing: -0.005em;
}

.collection-route-link:hover {
  color: var(--landing-accent-ink);
  background: rgba(21, 87, 127, 0.025);
  padding-left: .45rem;
}

.collection-route-link:nth-child(2n):hover {
  padding-left: 1.65rem;
}

.collection-route-link:hover::after {
  opacity: .7;
  transform: translate(0, 0) rotate(45deg);
}

/* Pro+ pill */
.b2-pro-pill {
  display: inline-flex;
  align-items: center;
  font-size: .625rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 5px;
  background: rgba(0, 84, 166, 0.08);
  color: var(--at-navy);
  letter-spacing: .04em;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: .375rem;
}

/* ── QR card — placement bullet list ── */
.b2-qr-uses {
  list-style: none;
  padding: 0;
  margin: .625rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.b2-qr-uses li {
  font-size: .8125rem;
  color: var(--at-slate);
  letter-spacing: -0.005em;
  padding-left: 1rem;
  position: relative;
  font-weight: 500;
}
.b2-qr-uses li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--at-navy);
}

/* ── QR print mock: deterministic, readable at bento size ── */
.b2-figure--qr {
  background:
    radial-gradient(circle at 72% 22%, rgba(47, 128, 237, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0) 48%),
    linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
}
.b2-figure--qr::before {
  content: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18%;
  height: 1px;
  background: rgba(92, 71, 43, 0.10);
}

.b2-qr-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.b2-qr-tent-shadow {
  display: block;
  position: absolute;
  left: 50.5%;
  top: 80%;
  width: min(48%, 172px);
  height: 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.10);
  filter: blur(10px);
  transform: translate(-50%, -50%);
}

.b2-qr-tent-side {
  display: block;
  position: absolute;
  z-index: 1;
  left: calc(50% - min(31%, 78px));
  top: 50%;
  width: min(12%, 28px);
  height: min(62%, 150px);
  border-radius: 8px 0 0 8px;
  background: linear-gradient(90deg, #d9e1ec 0%, #f4f7fb 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 92%, 0 8%);
  transform: translate(-50%, -50%) skewY(-4deg);
}

.b2-qr-tent-face {
  position: relative;
  z-index: 2;
  width: min(56%, 150px);
  aspect-ratio: .74 / 1;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: .82rem .72rem .7rem;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 18px 38px -22px rgba(15, 23, 42, 0.50),
    0 8px 18px rgba(15, 23, 42, 0.06);
  transform: rotate(-1.2deg);
}

.b2-qr-tent-face::after {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 8px;
  height: 1px;
  background: rgba(15, 23, 42, 0.10);
}

.b2-qr-print-kicker {
  max-width: 100%;
  font-size: clamp(.42rem, .54vw, .5rem);
  line-height: 1.08;
  font-weight: 760;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(18, 19, 23, 0.58);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.b2-qr-print-title {
  margin-top: .24rem;
  font-family: var(--font-display);
  font-size: clamp(.9rem, 1.18vw, 1.05rem);
  line-height: .95;
  font-weight: 720;
  letter-spacing: -0.035em;
  color: var(--at-slate);
  text-align: center;
}

.b2-qr-print-note {
  margin-top: .24rem;
  max-width: 96%;
  color: #64748b;
  font-size: clamp(.48rem, .58vw, .55rem);
  font-weight: 620;
  line-height: 1.16;
  text-align: center;
}

.b2-qr-code-box {
  position: relative;
  width: min(66%, 88px);
  aspect-ratio: 1;
  margin-top: .54rem;
  flex: 0 0 auto;
  padding: .28rem;
  border-radius: 10px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.08),
    0 8px 18px rgba(15, 23, 42, 0.05);
}

.b2-qr-code-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.b2-qr-print-foot {
  margin-top: .46rem;
  font-size: clamp(.42rem, .52vw, .48rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(18, 19, 23, 0.56);
  white-space: nowrap;
}

.b2-card--qr:hover .b2-qr-tent-face {
  transform: rotate(-1.2deg) translateY(-2px);
  transition: transform .2s ease;
}

/* Widget mock — real-looking SaaS landing inside a browser frame */
.b2-widget-mock {
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.b2-widget-mock-nav {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  border-bottom: 1px solid var(--at-border);
  background: #fff;
}
.b2-widget-mock-nav-brand {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: -0.015em;
  color: var(--at-slate);
}
.b2-widget-mock-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, #2f80ed, #0054a6);
}
.b2-widget-mock-nav-links {
  margin-left: auto;
  display: flex;
  gap: .625rem;
  font-size: .625rem;
  color: var(--at-muted);
  font-weight: 500;
}
.b2-widget-mock-body {
  flex: 1;
  padding: 1rem .875rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  position: relative;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(47,128,237,0.045), transparent 70%),
    #fff;
}
.b2-widget-mock-eyebrow {
  font-size: .5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #0054a6;
}
.b2-widget-mock-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9375rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--at-slate);
  margin: 0;
}
.b2-widget-mock-line {
  height: 4px;
  background: var(--at-surface);
  border-radius: 2px;
}
.b2-widget-mock-buttons {
  display: flex;
  gap: .375rem;
  margin-top: .25rem;
}
.b2-widget-mock-btn {
  font-size: .5625rem;
  font-weight: 600;
  padding: .25rem .5rem;
  border-radius: 4px;
  letter-spacing: -0.005em;
}
.b2-widget-mock-btn--primary {
  background: var(--at-slate);
  color: #fff;
}
.b2-widget-mock-btn--ghost {
  background: transparent;
  border: 1px solid var(--at-border);
  color: var(--at-muted);
}
.b2-widget-mock-pill {
  position: absolute;
  bottom: .75rem;
  right: .75rem;
  background: linear-gradient(135deg, #0054a6 0%, #003d7a 100%);
  color: #fff;
  font-size: .8125rem;
  font-weight: 600;
  padding: .55rem 1rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  letter-spacing: -0.005em;
  box-shadow:
    0 0 0 4px rgba(0, 84, 166, 0.08),
    0 8px 18px -8px rgba(0, 84, 166, 0.38),
    0 2px 4px rgba(15, 23, 42, 0.12);
  z-index: 2;
  animation: none;
}
@keyframes b2WidgetPulse {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(0, 84, 166, 0.12),
      0 8px 20px -4px rgba(0, 84, 166, 0.45),
      0 2px 4px rgba(15, 23, 42, 0.12);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(0, 84, 166, 0.06),
      0 10px 28px -4px rgba(0, 84, 166, 0.55),
      0 2px 4px rgba(15, 23, 42, 0.12);
  }
}
.b2-widget-mock-pill::after {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  border: 2px solid #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.2);
}
.b2-widget-mock-pill svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.25;
}
@media (prefers-reduced-motion: reduce) {
  .b2-widget-mock-pill { animation: none; }
}

/* Zone context mock — every physical QR point carries source context */
.b2-figure--zones {
  background:
    radial-gradient(circle at 18% 12%, rgba(47, 128, 237, 0.07), transparent 34%),
    linear-gradient(180deg, #fbfcfe 0%, #f6f8fb 100%);
}
.b2-zone-mock {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: .76rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.b2-zone-mock-head,
.b2-zone-mock-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.b2-zone-mock-head span {
  color: #596a82;
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.b2-zone-mock-head strong {
  padding: .18rem .42rem;
  border-radius: 999px;
  background: #f3f5f8;
  color: var(--at-navy);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: -0.005em;
}
.b2-zone-mock-list {
  display: grid;
  gap: .36rem;
}
.b2-zone-row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  align-items: center;
  gap: .5rem;
  padding: .44rem .52rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 10px 22px -20px rgba(15, 23, 42, 0.24);
}
.b2-zone-row i {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #eef5ff;
  color: var(--at-navy);
  font-style: normal;
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}
.b2-zone-row span {
  min-width: 0;
  display: grid;
  gap: .08rem;
}
.b2-zone-row b {
  color: var(--at-slate);
  font-size: .7rem;
  line-height: 1.15;
  font-weight: 750;
  letter-spacing: -0.018em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.b2-zone-row small {
  color: var(--at-muted);
  font-size: .58rem;
  line-height: 1.22;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.b2-zone-row em {
  padding: .14rem .34rem;
  border-radius: 999px;
  background: #f3f5f8;
  color: var(--at-navy);
  font-style: normal;
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: -0.005em;
}
.b2-zone-row.is-hot {
  border-color: rgba(47, 128, 237, 0.28);
  background: #f8f9fc;
}
.b2-zone-row.is-hot i {
  background: #2f80ed;
  color: #fff;
}
.b2-zone-row.is-good i {
  background: #eaf8ef;
  color: #188038;
}
.b2-zone-row.is-good em {
  background: #eaf8ef;
  color: #188038;
}
.b2-zone-mock-foot {
  margin-top: auto;
  padding-top: .44rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--at-muted);
  font-size: .6rem;
  font-weight: 650;
  letter-spacing: -0.005em;
}
.b2-card--widget .b2-zone-mock-foot {
  display: none;
}

/* Email reply mock — real email-thread look */
.b2-reply-mock {
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.b2-reply-mock-subject {
  display: flex;
  align-items: center;
  gap: .375rem;
  padding: .625rem .875rem;
  border-bottom: 1px solid var(--at-border);
  font-size: .75rem;
  color: var(--at-slate);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.b2-reply-mock-subject svg {
  width: 13px;
  height: 13px;
  color: var(--at-muted);
  flex-shrink: 0;
}
.b2-reply-mock-msgs {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: .625rem .875rem;
  gap: .625rem;
  overflow: hidden;
}
.b2-reply-msg {
  display: flex;
  gap: .5rem;
}
.b2-reply-msg-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: .5625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  letter-spacing: -0.005em;
}
.b2-reply-msg-avatar--guest { background: linear-gradient(135deg, #f59e0b, #b45309); }
.b2-reply-msg-avatar--you { background: linear-gradient(135deg, #0054a6, #003d7a); }
.b2-reply-msg-body {
  flex: 1;
  min-width: 0;
}
.b2-reply-msg-meta {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .6875rem;
  color: var(--at-muted);
  letter-spacing: -0.005em;
  margin-bottom: .125rem;
}
.b2-reply-msg-meta strong {
  color: var(--at-slate);
  font-weight: 600;
}
.b2-reply-msg-text {
  font-size: .75rem;
  line-height: 1.45;
  color: var(--at-slate);
  letter-spacing: -0.005em;
  margin: 0;
}
.b2-reply-msg-text--ghost {
  color: var(--at-muted);
}
.b2-reply-mock-tag {
  display: inline-block;
  font-size: .5625rem;
  font-weight: 600;
  padding: 0 5px;
  border-radius: 3px;
  background: var(--at-navy-light);
  color: var(--at-navy);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Store-response mock — looks like a real App Store review card */
.b2-store-mock {
  width: 100%;
  height: 100%;
  background: #fff;
  padding: .875rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.b2-store-mock-app {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--at-border);
}
.b2-store-mock-app-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(15,23,42,0.1);
}
.b2-store-mock-app-meta {
  flex: 1;
  min-width: 0;
}
.b2-store-mock-app-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8125rem;
  letter-spacing: -0.02em;
  color: var(--at-slate);
  line-height: 1.2;
}
.b2-store-mock-app-version {
  font-size: .625rem;
  color: var(--at-muted);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.b2-store-mock-platform {
  font-size: .5625rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--at-muted);
  padding: 2px 6px;
  border-radius: 3px;
  background: var(--at-surface);
  flex-shrink: 0;
}
.b2-store-mock-rating {
  display: flex;
  align-items: center;
  gap: .375rem;
}
.b2-store-mock-stars {
  color: #f59e0b;
  font-size: .9375rem;
  letter-spacing: 1px;
  line-height: 1;
}
.b2-store-mock-rating-author {
  font-size: .6875rem;
  color: var(--at-muted);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.b2-store-mock-rating-author strong {
  color: var(--at-slate);
  font-weight: 600;
}
.b2-store-mock-review {
  font-size: .8125rem;
  line-height: 1.4;
  color: var(--at-slate);
  letter-spacing: -0.005em;
  font-weight: 500;
  margin: 0;
}
.b2-store-mock-response {
  margin-top: auto;
  border-left: 2px solid var(--at-navy);
  padding: 0 0 0 .625rem;
  font-size: .75rem;
  line-height: 1.4;
  color: var(--at-muted);
  letter-spacing: -0.005em;
}
.b2-store-mock-response-label {
  display: block;
  font-size: .5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--at-navy);
  margin-bottom: 1px;
}

/* ── Builder mock — looks like a real branded feedback form ── */
.b2-builder-mock {
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: .95rem 1rem 1rem;
  gap: .5rem;
  position: relative;
  --builder-accent: #2f80ed;
  --builder-star: #fbbc04;
}
/* Top accent strip — like real form's brand bar */
.b2-builder-mock::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--builder-accent);
}
.b2-builder-mock-brand {
  display: flex;
  align-items: center;
  gap: .375rem;
  margin-bottom: .125rem;
}
.b2-builder-mock-brand-dot {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: var(--builder-accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .5625rem;
  font-weight: 700;
}
.b2-builder-mock-brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8125rem;
  letter-spacing: -0.02em;
  color: var(--at-slate);
}
.b2-builder-mock-question {
  font-size: .6875rem;
  color: var(--at-muted);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0 0 .125rem;
}
.b2-builder-mock-stars {
  display: flex;
  gap: 3px;
  margin-bottom: .25rem;
}
.b2-builder-mock-stars span {
  width: 14px;
  height: 14px;
  background: var(--builder-star);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.b2-builder-mock-stars span:nth-child(5) {
  background: #dbe2ea;
}
.b2-builder-mock-textarea {
  border: 1px solid var(--at-border);
  border-radius: 7px;
  padding: .375rem .5rem;
  font-size: .6875rem;
  color: var(--at-muted);
  letter-spacing: -0.005em;
  background: #fff;
  min-height: 2.25rem;
  line-height: 1.4;
}
.b2-builder-mock-input {
  border: 1px solid var(--at-border);
  border-radius: 7px;
  padding: .25rem .5rem;
  font-size: .625rem;
  color: var(--at-muted);
  letter-spacing: -0.005em;
  background: #fff;
  height: 1.5rem;
  display: flex;
  align-items: center;
}
.b2-builder-mock-button {
  margin-top: .25rem;
  padding: .4rem;
  background: #121317;
  border-radius: 8px;
  color: #fff;
  font-size: .6875rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.005em;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .collection-routes-section {
    padding: 3.6rem 0;
  }
  .collection-routes-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .collection-routes-copy {
    position: static;
  }
  .collection-routes-grid {
    grid-template-columns: 1fr;
  }
  .collection-route-link,
  .collection-route-link:nth-child(2n) {
    min-height: auto;
    padding: 1.05rem 2rem 1.05rem 0;
    border-left: 0;
  }
  .collection-route-link:nth-child(2n)::after {
    right: 1.05rem;
  }
  .collection-route-link:hover,
  .collection-route-link:nth-child(2n):hover {
    padding-left: .35rem;
  }
  .b2-flow {
    width: min(100%, 760px);
    margin: -1.1rem auto 1rem;
  }
  .b2-flow-diagram {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  .b2-flow-arrow {
    display: none;
  }
  .b2-flow-qr-card,
  .b2-flow-form-card,
  .b2-flow-inbox-card,
  .b2-flow-action-card {
    min-height: 136px;
  }
  .b2-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
  }
  .b2-card,
  .b2-card--hero,
  .b2-card--builder,
  .b2-card--qr,
  .b2-card--reply,
  .b2-card--widget,
  .b2-card--store {
    grid-column: span 6;
    grid-row: auto;
  }
  .b2-card--side {
    flex-direction: column;
  }
  .b2-card--side .b2-card-head { padding: 1.5rem 1.625rem 0; }
  .b2-card--side .b2-figure { margin: 1rem 1.625rem 1.625rem; flex: 1; min-height: 200px; }
  .b2-card--builder .b2-figure { min-height: 260px; }
  .b2-figure { min-height: 220px; }
  .b2-card--widget .b2-zone-mock-foot { display: flex; }
}

@media (max-width: 575px) {
  .b2-section {
    padding-top: 4rem;
    padding-bottom: 2.75rem;
  }
  .b2-section-head {
    margin-bottom: 1.65rem;
  }
  .b2-flow {
    display: none;
  }
  .b2-flow picture {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    transform: none;
  }
  .b2-flow img {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
  .b2-card--hero .b2-figure--chrome {
    align-items: center;
    min-height: auto;
    height: 21rem;
    padding: 1rem;
    background:
      linear-gradient(180deg, rgba(248,250,252,0.86), rgba(255,255,255,0.96)),
      #fff;
  }
  .b2-card--hero .b2-figure--chrome::before {
    display: none;
  }
  .b2-card--hero .b2-inbox-mock {
    display: flex;
    width: 100%;
    height: 100%;
    margin-top: 0;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: #fff;
    box-shadow:
      0 20px 44px -30px rgba(15, 23, 42, 0.35),
      0 2px 0 rgba(255,255,255,0.9) inset;
  }
  .b2-card--hero .b2-inbox-mock-top {
    min-height: 40px;
    gap: .5rem;
    padding: 0 .68rem;
  }
  .b2-card--hero .b2-inbox-mock-top > span:not(.b2-inbox-mock-brand):not(.is-active) {
    display: none;
  }
  .b2-card--hero .b2-inbox-mock-brand {
    min-width: 0;
    font-size: .62rem;
  }
  .b2-card--hero .b2-inbox-mock-panel {
    padding: .62rem;
  }
  .b2-card--hero .b2-inbox-mock-head,
  .b2-card--hero .b2-inbox-mock-filters {
    padding: 0 .5rem;
  }
  .b2-card--hero .b2-inbox-mock-head span {
    display: none;
  }
  .b2-card--hero .b2-inbox-mock-filters {
    min-height: 36px;
    gap: .38rem;
    font-size: .5rem;
  }
  .b2-card--hero .b2-inbox-mock-filters span:nth-child(n+4) {
    display: none;
  }
  .b2-card--hero .b2-inbox-mock-list {
    margin-top: .54rem;
  }
  .b2-card--hero .b2-inbox-mock-row {
    grid-template-columns: 24px minmax(0, 1fr) 44px;
    grid-template-rows: auto auto;
    gap: .12rem .48rem;
    min-height: 57px;
    padding: .48rem .56rem;
  }
  .b2-card--hero .b2-inbox-mock-row i {
    grid-row: 1 / 3;
    width: 22px;
    height: 22px;
  }
  .b2-card--hero .b2-inbox-mock-row > span {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }
  .b2-card--hero .b2-inbox-mock-row > strong {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
    font-size: .55rem;
  }
  .b2-card--hero .b2-inbox-mock-row > em {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
    font-size: .48rem;
  }
}

#forms.feature-section {
  padding-top: 4.75rem;
}

@media (max-width: 768px) {
  #forms.feature-section {
    padding-top: 3.6rem;
  }
}
