/* Keep the existing site identity; give the first screen to the swipe demo. */
.hero-interactive { padding: 34px 0 44px; scroll-margin-top: 64px; }
.hero-interactive .container {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  grid-template-areas: "intro demo" "details demo";
  column-gap: 56px;
  row-gap: 12px;
}
.hero-interactive .hero-copy { grid-area: intro; align-self: end; }
.hero-interactive .hero-copy .lead { margin-bottom: 8px; }
.hero-playground { grid-area: demo; min-width: 0; text-align: center; }
.hero-details { grid-area: details; align-self: start; }
.hero-details .check-list { font-size: 15px; gap: 9px; }
.hero-details .hero-ctas { margin-top: 24px; }
.hero-details .chip { font-size: 12px; }
.hero-playground .phone { width: min(292px, 100%); border-radius: 48px; }
.hero-playground .screen { aspect-ratio: 393 / 720; border-radius: 42px; }
.hero-playground .screen-body { min-height: 0; }
.hero-playground .swipe-card .meta {
  flex-wrap: wrap;
  gap: 2px 10px;
  padding: 10px 12px;
  font-size: 12px;
  text-align: left;
}
.hero-playground .demo-actions { gap: 16px; padding: 6px 0 12px; }
.hero-playground .round-btn { width: 46px; height: 46px; }
.hero-playground .round-btn:disabled { opacity: .35; cursor: default; }
.hero-playground .round-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.hero-playground .demo-stats { font-size: 12px; padding: 0 16px 18px; }
.hero-playground .demo-hint { color: var(--muted); font-size: 12px; margin: 15px 0 2px; }
.hero-sample-note { color: var(--faint); font-size: 11px; margin: 0; }
.hero-interactive + .calendar-showcase { border-top: 1px solid var(--line); }

@media (max-width: 960px) {
  .hero-interactive { padding-top: 24px; }
  .hero-interactive .container {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "intro" "demo" "details";
    gap: 22px;
  }
  .hero-interactive .hero-copy { text-align: center; max-width: 620px; margin-inline: auto; }
  .hero-interactive h1 { font-size: 38px; }
  .hero-interactive .hero-copy .lead { max-width: 490px; font-size: 17px; margin-inline: auto; }
  .hero-details { max-width: 530px; margin-inline: auto; }
  .hero-details .hero-ctas, .hero-details .trust-row { justify-content: center; }
}
@media (max-width: 640px) {
  .hero-interactive { padding-top: 18px; }
  .hero-interactive .container { gap: 16px; }
  .hero-interactive .eyebrow { font-size: 11px; letter-spacing: .035em; margin-bottom: 8px; }
  .hero-interactive h1 { font-size: clamp(25px, 7.1vw, 30px); line-height: 1.25; margin-bottom: 10px; }
  .hero-interactive .hero-copy .lead { font-size: 14px; line-height: 1.6; margin-bottom: 0; }
  .hero-playground .phone { width: min(248px, 100%); border-radius: 43px; }
  .hero-playground .screen { border-radius: 38px; border-width: 6px; }
  .hero-playground .screen::before { width: 65px; height: 21px; }
  .hero-playground .screen-bar { padding: 14px 16px 4px; font-size: 11px; }
  .hero-playground .screen-title { font-size: 18px; padding: 5px 18px; }
  .hero-playground .screen-body { padding: 8px 12px; }
  .hero-playground .swipe-card { border-radius: 20px; }
  .hero-playground .swipe-card .meta { font-size: 11px; }
  .hero-playground .stamp { font-size: 13px; padding: 5px 9px; }
  .hero-playground .demo-stats { font-size: 11px; }
  .hero-playground .demo-hint { font-size: 11px; margin-top: 12px; }
  .hero-sample-note { font-size: 10px; }
  .hero-details { margin-top: 8px; }
  .hero-details .check-list { font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-playground *, .hero-playground *::before { transition-duration: .01ms !important; }
}
