/* ═══════════════════════════════════════════════
   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: #15577f;
  --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: rgba(255, 255, 255, 0.85);
  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(21, 87, 127, 0.05),
    rgba(21, 87, 127, 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-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: .42rem .85rem;
  border-radius: 9999px;
  background: rgba(0, 84, 166, .08);
  color: var(--at-navy, #0054a6);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.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: 920px;
  margin: 0 auto;
  text-wrap: balance;
}
.hero-title em {
  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: 640px;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: clamp(8.45rem, 8.85vw, 9.85rem);
  margin-bottom: 0;
  margin-inline: auto;
}

.hero-actions {
  margin-top: 1.35rem;
  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;
  box-shadow: 0 1px 2px rgba(20, 91, 198, 0.18);
}
.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: 0;
  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-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-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(26rem, 28vw, 32rem));
  top: clamp(10.85rem, 12.1vw, 12.4rem);
  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(26rem, 28vw, 32rem));
  top: clamp(11.15rem, 12.35vw, 12.65rem);
  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-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: 1240 / 690;
  margin-top: 0;
  width: min(100%, 1080px);
  margin-inline: auto;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.09);
  background: #fff;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 18px 48px rgba(15,23,42,0.08);
}

.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 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: #f3e8ff; color: #7c3aed; 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;
}
.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(124, 58, 237, .12);
  color: #6d28d9;
  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: #6d28d9;
  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;
}
.channel-context--qr {
  background: #fffaf0;
  border-color: #fde68a;
}
.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: #10b981;
}
.channel-phone {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: .6875rem;
  color: var(--at-slate);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.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: 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);
}
/* 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: #0891b2;
  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-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, #06b6d4 0%, #0e7490 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-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-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: #0891b2;
  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 { 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;
}

/* ── Mobile hamburger menu ── */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: .375rem;
  cursor: pointer;
  color: var(--at-slate);
  border-radius: 8px;
  transition: background .15s;
}
.mobile-menu-btn:hover { background: var(--at-surface); }
.mobile-menu-btn svg { width: 22px; height: 22px; display: block; }
.mobile-nav-panel {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--at-border);
  box-shadow: 0 18px 42px rgba(18,19,23,0.12);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 1040;
  animation: fadeDown .2s ease;
}
.mobile-nav-panel.open { display: block; }
@keyframes fadeDown {
  from { transform: translateY(-8px); }
  to { transform: translateY(0); }
}
.mobile-nav-panel a {
  display: block;
  padding: .625rem 0;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--at-slate);
  text-decoration: none !important;
  border-bottom: 1px solid var(--at-border);
  letter-spacing: -0.01em;
}
.mobile-nav-panel a:last-child { border-bottom: none; }
.mobile-nav-panel a:hover { color: var(--at-navy); }
.mobile-nav-panel .mobile-nav-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 44px;
  margin-top: .9rem;
  padding: .65rem 1.05rem;
  border: 1px solid #2c77e7;
  border-radius: 8px;
  background: #2c77e7;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(20, 91, 198, 0.18);
}
.mobile-nav-panel .mobile-nav-login:hover {
  background: #2269d8;
  border-color: #2269d8;
  color: #fff;
}

/* ── 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: 9.9rem;
  }
  .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) {
  .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 {
    display: block;
    white-space: nowrap;
  }
  .hero-description {
    max-width: min(100%, 328px);
    font-size: .96rem;
    line-height: 1.43;
    margin-top: 6rem;
  }
  .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: 110px;
    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-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, #f8fbff 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: #e8f3ff;
    color: #15577f;
    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: #15577f;
    font-size: .58rem;
    font-weight: 700;
  }
  .hero-mobile-filter-row .is-active {
    padding: .2rem .42rem;
    border: 1px solid #3ba3e8;
    border-radius: 999px;
    background: #f2f9ff;
  }
  .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: #3ba3e8;
  }
  .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: #15577f;
  }
  .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: #15577f;
  }
  .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 #15577f;
    color: #3f4650;
    font-size: .68rem;
    line-height: 1.35;
  }
  .hero-mobile-response span {
    display: block;
    margin-bottom: .15rem;
    color: #15577f;
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .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;
}

/* ── 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-picture {
  display: block;
  width: 100%;
  height: 100%;
}
.b2-inbox-picture--mobile {
  display: none;
}
.b2-inbox-picture img {
  width: 100%;
  height: 100%;
}

/* ── 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, #30a46c 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%; }

/* 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 74% 40%, rgba(234, 88, 12, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0) 42%),
    linear-gradient(180deg, #f8f7f3 0%, #efede7 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: 51%;
  top: 78%;
  width: min(58%, 210px);
  height: 18px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.11);
  filter: blur(8px);
  transform: translate(-50%, -50%);
}

.b2-qr-tent-side {
  display: block;
  position: absolute;
  z-index: 1;
  left: calc(50% - min(35%, 88px));
  top: 50%;
  width: min(14%, 34px);
  height: min(66%, 170px);
  border-radius: 7px 0 0 7px;
  background: linear-gradient(90deg, rgba(185, 157, 118, .78), rgba(236, 219, 190, .92));
  clip-path: polygon(100% 0, 100% 100%, 0 91%, 0 10%);
  transform: translate(-50%, -50%) skewY(-6deg);
}

.b2-qr-tent-face {
  position: relative;
  z-index: 2;
  width: min(62%, 166px);
  aspect-ratio: .72 / 1;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: .92rem .78rem .74rem;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(252,250,245,0.98)),
    #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 12px 26px rgba(15, 23, 42, 0.10);
  transform: rotate(-2deg);
}

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

.b2-qr-print-kicker {
  font-size: clamp(.45rem, .62vw, .56rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(18, 19, 23, 0.58);
  white-space: nowrap;
}

.b2-qr-print-title {
  margin-top: .28rem;
  font-family: var(--font-display);
  font-size: clamp(.98rem, 1.4vw, 1.18rem);
  line-height: .95;
  font-weight: 650;
  letter-spacing: -0.035em;
  color: var(--at-slate);
}

.b2-qr-code-box {
  position: relative;
  width: min(68%, 92px);
  aspect-ratio: 1;
  margin-top: .62rem;
  flex: 0 0 auto;
  padding: .3rem;
  border-radius: 9px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.08),
    0 8px 18px rgba(15, 23, 42, 0.055);
}

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

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

.b2-card--qr:hover .b2-qr-tent-face {
  transform: rotate(-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, #6366f1, #4338ca);
}
.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(99,102,241,0.04), transparent 70%),
    #fff;
}
.b2-widget-mock-eyebrow {
  font-size: .5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #4338ca;
}
.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; }
}

/* 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, #34d399 0%, #059669 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: .875rem 1rem 1rem;
  gap: .5rem;
  position: relative;
  --builder-accent: #d97706;
}
/* 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: 4px;
  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: 13px;
  height: 13px;
  background: var(--builder-accent);
  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: #e5e7eb;
}
.b2-builder-mock-textarea {
  border: 1px solid var(--at-border);
  border-radius: 5px;
  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: 5px;
  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: var(--builder-accent);
  border-radius: 6px;
  color: #fff;
  font-size: .6875rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.005em;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .b2-flow {
    width: min(100%, 760px);
    margin: -1.1rem auto 1rem;
  }
  .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; }
}

@media (max-width: 575px) {
  .b2-section {
    padding-top: 4rem;
    padding-bottom: 2.75rem;
  }
  .b2-section-head {
    margin-bottom: 1.65rem;
  }
  .b2-flow {
    width: calc(100% + 1.5rem);
    margin-left: -.75rem;
    margin-right: -.75rem;
    margin-bottom: .85rem;
    overflow: hidden;
  }
  .b2-flow picture {
    width: 100%;
    max-width: none;
    margin-left: 0;
    transform: none;
  }
  .b2-flow img {
    width: 100%;
    max-width: none;
    margin-left: 0;
    transform: none;
  }
  .b2-card--hero .b2-figure--chrome {
    align-items: center;
    min-height: auto;
    height: 21rem;
    padding: 1.125rem 0;
    background:
      linear-gradient(180deg, rgba(248,250,252,0.86), rgba(255,255,255,0.96)),
      #fff;
  }
  .b2-card--hero .b2-figure--chrome::before,
  .b2-inbox-picture--desktop {
    display: none;
  }
  .b2-inbox-picture--mobile {
    display: block;
    width: min(60%, 12rem);
    height: 18.75rem;
    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-inbox-picture--mobile img {
    margin-top: 0;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

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

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