/* Scroll-driven tap showcase — pinned stage + scrolling copy */

.lp-hero.lp-hero--showcase {
  padding-bottom: 0;
  overflow: visible;
}

/* Mirror top-right glow with bottom-left on the long scroll hero */
.lp-hero.lp-hero--showcase::before {
  background:
    var(--site-dark-overlay),
    radial-gradient(ellipse 80% 60% at 25% 75%, rgba(0, 159, 216, 0.28), transparent 55%),
    radial-gradient(ellipse 80% 60% at 75% 25%, rgba(0, 159, 216, 0.28), transparent 55%),
    var(--site-hero-bg);
}

.lp-hero-scroll-track {
  --tap-stage-inset-y: clamp(14px, 2.5vw, 32px);
  --tap-stage-inset-x: clamp(10px, 2vw, 24px);
  --tap-copy-left-shift: min(
    240px,
    max(72px, calc(50vw - min(var(--lp-max, 1200px), 100vw - 40px) / 2 + 12px))
  );
  --tap-stage-inset: var(--tap-stage-inset-y);
  --tap-stage-height: calc(100vh - var(--lp-header-h, 72px) - 32px - (var(--tap-stage-inset-y) * 2));
  --tap-track-height: 620vh;
  position: relative;
  min-height: var(--tap-track-height);
  padding-left: clamp(12px, 1.5vw, 20px);
  padding-right: var(--tap-stage-inset-x);
  box-sizing: border-box;
}

.lp-hero-scroll-stage {
  position: sticky;
  top: calc(var(--lp-header-h, 72px) + 16px);
  height: calc(var(--tap-stage-height) + (var(--tap-stage-inset-y) * 2));
  min-height: 520px;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: var(--tap-stage-inset-y) var(--tap-stage-inset-x) var(--tap-stage-inset-y) 0;
  box-sizing: border-box;
  overflow: visible;
}

.lp-hero-scroll-stage .lp-container {
  width: 100%;
  max-width: var(--lp-max, 1200px);
  margin: 0 auto;
}

.lp-hero-scroll-stage .lp-hero-grid {
  width: 100%;
  align-items: stretch;
  min-height: 0;
  height: 100%;
  gap: clamp(14px, 2vw, 28px);
  grid-template-columns: 1.08fr 0.92fr;
}

.lp-hero-copy-stage {
  height: 100%;
  min-height: 0;
  margin-left: calc(-1 * var(--tap-copy-left-shift));
  width: calc(100% + var(--tap-copy-left-shift));
  overflow-y: clip;
  overflow-x: visible;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.lp-hero-copy-track {
  will-change: transform;
}

.lp-hero-copy-panel {
  min-height: var(--tap-stage-height);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(8px, 2vh, 20px) 0 28px;
  box-sizing: border-box;
}

.lp-hero-copy-panel:nth-child(odd) {
  text-align: left;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  padding-right: clamp(12px, 2vw, 32px);
}

.lp-hero-copy-panel:nth-child(even) {
  text-align: right;
  align-items: flex-end;
}

.lp-hero-copy-panel:nth-child(even) .lp-bullets {
  padding-left: 0;
  padding-right: 18px;
  list-style-position: inside;
}

.lp-hero-copy-panel:nth-child(even) .lp-cta-row {
  justify-content: flex-end;
}

.lp-hero-copy-panel--intro {
  justify-content: flex-start;
  padding-top: clamp(4px, 1.5vh, 16px);
}

.lp-hero-copy-panel--intro .lp-h1 {
  margin-bottom: 18px;
}

.lp-hero-copy-panel--intro .lp-lead {
  margin-bottom: 18px;
}

.lp-hero-copy-panel--intro .lp-bullets {
  margin-bottom: 22px;
}

.lp-hero--showcase .lp-hero-step-title {
  color: #fff;
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.12;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.lp-hero--showcase .lp-hero-step-title .accent-word {
  color: var(--lp-accent, #009fd8);
}

.lp-hero--showcase .lp-hero-visual {
  position: relative;
  top: auto;
  align-self: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
  padding: clamp(8px, 2vh, 20px) 0;
  box-sizing: border-box;
}

.lp-hero--showcase .lp-visual-stack {
  --phone-h: min(640px, calc(var(--tap-stage-height) - 32px));
  --phone-w: calc(var(--phone-h) * 9 / 19.5);
  --card-w: calc(var(--phone-w) * 1.18);
  --card-rest-overhang: calc(var(--card-w) * 0.32);
  position: relative;
  width: calc(var(--phone-w) + var(--card-rest-overhang));
  height: var(--phone-h);
  margin: 0;
}

/* Pass-through on large desktop; constrains layout box when scaled on mid/mobile */
.lp-hero--showcase .lp-visual-scaler {
  display: contents;
}

/* Phone — realistic 9:19.5 aspect ratio */
.lp-hero--showcase .lp-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: var(--phone-w);
  height: var(--phone-h);
  border-radius: 44px;
  background: linear-gradient(180deg, #141820 0%, #0a0e14 100%);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-hero--showcase .lp-phone-notch {
  top: 10px;
  width: 34%;
  max-width: 120px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.lp-hero--showcase .lp-phone-screen {
  inset: 7.5% 3.2% 3.2%;
  border-radius: 34px;
  background: #111;
  overflow: hidden;
}

.lp-phone-idle {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 28px 16px;
  background: radial-gradient(circle at 50% 18%, rgba(0, 159, 216, 0.12), transparent 55%), #0f1218;
  color: rgba(255, 255, 255, 0.88);
  transition: opacity 0.35s ease;
}

.lp-phone-idle.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.lp-phone-idle-time {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.55;
  margin-bottom: auto;
}

.lp-phone-idle-label {
  margin-top: auto;
  margin-bottom: 18%;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.lp-phone-nfc-zone {
  position: absolute;
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(0, 159, 216, 0.35);
  background: rgba(0, 159, 216, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--site-accent, #009fd8);
}

.lp-phone-nfc-zone.is-active {
  border-color: rgba(0, 212, 255, 0.85);
  background: rgba(0, 159, 216, 0.22);
  box-shadow: 0 0 24px rgba(0, 159, 216, 0.55);
}

/* Demo profile inside phone */
.lp-phone-profile-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lp-phone-profile-viewport.is-visible {
  opacity: 1;
}

.lp-demo-profile {
  height: 100%;
  background: #262626;
  color: #fff;
  font-family: 'Montserrat', system-ui, sans-serif;
}

.lp-demo-profile-inner {
  will-change: transform;
}

.lp-demo-hero {
  position: relative;
  min-height: 210px;
  overflow: hidden;
}

.lp-demo-portrait {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(38, 38, 38, 0.55) 68%, #262626 100%),
    url('/assets/landing/demo-profile-reference.png') center top / cover no-repeat;
}

.lp-demo-hero-copy {
  position: relative;
  z-index: 1;
  padding: 118px 16px 14px;
}

.lp-demo-role,
.lp-demo-company {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--site-accent, #009fd8);
  line-height: 1.35;
}

.lp-demo-name {
  margin: 6px 0 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.lp-demo-body {
  padding: 0 14px 28px;
}

.lp-demo-exchange {
  display: block;
  width: 100%;
  margin-bottom: 18px;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  pointer-events: none;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}

.lp-demo-exchange.is-pressed {
  transform: scale(0.97);
  background: rgba(0, 159, 216, 0.35);
  border-color: rgba(0, 212, 255, 0.75);
  box-shadow: 0 0 16px rgba(0, 159, 216, 0.45);
}

.lp-demo-section {
  margin-bottom: 16px;
}

.lp-demo-section--last {
  margin-bottom: 0;
  padding-bottom: 8px;
}

.lp-demo-heading {
  margin: 0 0 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.lp-demo-text {
  margin: 0;
  font-size: 10px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.lp-demo-contact-row,
.lp-demo-social-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lp-demo-contact-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.lp-demo-contact-btn svg {
  width: 14px;
  height: 14px;
}

.lp-demo-address {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px 12px;
}

.lp-demo-address p {
  margin: 0;
  font-size: 10px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.lp-demo-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.lp-demo-social-btn svg {
  width: 15px;
  height: 15px;
}

/* Contact form demo inside phone */
.lp-phone-form-viewport,
.lp-phone-import-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lp-phone-form-viewport.is-visible,
.lp-phone-import-viewport.is-visible {
  opacity: 1;
}

.lp-demo-form {
  min-height: 100%;
  background: #fff;
  color: #333;
  font-family: 'Montserrat', system-ui, sans-serif;
}

.lp-demo-form-inner {
  will-change: transform;
}

.lp-demo-form-header {
  background: linear-gradient(135deg, #009fd8 0%, #0077aa 100%);
  color: #fff;
  padding: 18px 14px 14px;
  text-align: center;
}

.lp-demo-form-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
}

.lp-demo-form-subtitle {
  margin: 0;
  font-size: 8px;
  opacity: 0.92;
}

.lp-demo-form-owner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.lp-demo-form-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.2) 100%),
    url('/assets/landing/demo-profile-reference.png') center top / cover no-repeat;
  border: 2px solid #fff;
  flex-shrink: 0;
}

.lp-demo-form-owner-name {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  text-align: left;
}

.lp-demo-form-owner-role {
  margin: 2px 0 0;
  font-size: 7px;
  opacity: 0.88;
  text-align: left;
}

.lp-demo-form-body {
  padding: 12px 12px 20px;
}

.lp-demo-form-intro {
  margin: 0 0 10px;
  font-size: 7.5px;
  line-height: 1.45;
  color: #666;
  text-align: center;
}

.lp-demo-form-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-demo-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.lp-demo-form-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lp-demo-form-label {
  font-size: 7px;
  font-weight: 600;
  color: #333;
}

.lp-demo-form-label em {
  font-style: normal;
  font-weight: 400;
  color: #999;
  margin-left: 3px;
}

.lp-demo-form-input {
  display: block;
  min-height: 22px;
  padding: 5px 7px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 7.5px;
  line-height: 1.3;
  color: #333;
  background: #fff;
}

.lp-demo-form-input:empty::before {
  content: attr(data-placeholder);
  color: #bbb;
}

.lp-demo-form-input.is-focused {
  border-color: #009fd8;
  box-shadow: 0 0 0 2px rgba(0, 159, 216, 0.12);
}

.lp-demo-form-submit {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 9px 10px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #009fd8 0%, #2f3f4a 100%);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.lp-demo-form-submit.is-pressed {
  transform: scale(0.98);
  opacity: 0.92;
}

.lp-demo-form-skip {
  margin: 8px 0 0;
  font-size: 7px;
  color: #999;
  text-align: center;
  text-decoration: underline;
}

/* iOS contact import demo */
.lp-demo-import {
  height: 100%;
  background: #f2f2f7;
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', sans-serif;
}

.lp-demo-import-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 8px;
  background: #f2f2f7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 9px;
}

.lp-demo-import-nav span {
  color: #007aff;
}

.lp-demo-import-nav span:first-child {
  justify-self: start;
}

.lp-demo-import-nav strong {
  font-size: 10px;
  font-weight: 600;
  color: #000;
}

.lp-demo-import-done {
  justify-self: end;
  font-weight: 600;
}

.lp-demo-import-body {
  padding: 10px 0 16px;
}

.lp-demo-import-photo {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  background: #e8e8e8;
}

.lp-demo-import-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-demo-import-group {
  margin-bottom: 14px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.lp-demo-import-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 8px;
  align-items: center;
  padding: 7px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 8px;
}

.lp-demo-import-row:last-child {
  border-bottom: none;
}

.lp-demo-import-row--stack {
  align-items: start;
}

.lp-demo-import-label {
  color: #000;
  font-weight: 400;
}

.lp-demo-import-value {
  color: #007aff;
  line-height: 1.35;
}

/* NFC card — slightly wider than the phone */
.lp-hero--showcase .lp-card {
  --card-w: calc(var(--phone-w) * 1.18);
  width: var(--card-w);
  right: calc((var(--phone-w) - var(--card-w)) / 2);
  left: auto;
  top: 3%;
  aspect-ratio: 1.586 / 1;
  height: auto;
  border-radius: 20px;
  transform-origin: 22% 88%;
  will-change: transform, box-shadow;
  z-index: 3;
  background:
    linear-gradient(155deg, #1c1c1c 0%, #101010 42%, #0a0a0a 100%);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.42),
    0 0 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.lp-hero--showcase .lp-card-logo-engraved {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 66.67%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.lp-hero--showcase .lp-card-logo-engraved img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  /* Laser-engraved gold — lighter for readability on dark card */
  filter:
    sepia(1)
    saturate(2.2)
    hue-rotate(4deg)
    brightness(1.12)
    contrast(1.05)
    drop-shadow(-0.5px -0.5px 0 rgba(255, 245, 210, 0.55))
    drop-shadow(0.5px 0.5px 0 rgba(0, 0, 0, 0.28))
    drop-shadow(1px 1px 1.5px rgba(0, 0, 0, 0.22));
  opacity: 1;
}

.lp-hero--showcase .lp-card-shine {
  opacity: 0.38;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.14), transparent 62%);
}

.lp-hero--showcase .lp-card.is-resting {
  animation: lp-card-glow-pulse 2.8s ease-in-out infinite;
}

.lp-hero--showcase .lp-card.is-resting .lp-card-shine {
  animation: lp-card-shine-sweep 4.5s ease-in-out infinite;
}

@keyframes lp-card-glow-pulse {
  0%, 100% {
    box-shadow:
      0 22px 50px rgba(0, 0, 0, 0.42),
      0 0 22px rgba(212, 175, 85, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      inset 0 -1px 0 rgba(0, 0, 0, 0.35);
  }
  50% {
    box-shadow:
      0 34px 72px rgba(0, 0, 0, 0.32),
      0 0 48px rgba(230, 195, 110, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.35);
  }
}

@keyframes lp-card-shine-sweep {
  0%, 100% {
    opacity: 0.35;
    transform: rotate(10deg) translateX(-4%);
  }
  50% {
    opacity: 0.65;
    transform: rotate(10deg) translateX(6%);
  }
}

/* Tap effects */
.lp-tap-flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 18%, rgba(0, 212, 255, 0.55), transparent 62%);
  opacity: 0;
  pointer-events: none;
}

.lp-tap-flash.is-active {
  animation: lp-tap-flash 0.55s ease-out forwards;
}

.lp-tap-ripple {
  position: absolute;
  top: 14%;
  left: 50%;
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  border-radius: 50%;
  border: 2px solid rgba(0, 212, 255, 0.75);
  opacity: 0;
  pointer-events: none;
}

.lp-tap-ripple.is-active {
  animation: lp-tap-ripple 0.7s ease-out forwards;
}

@keyframes lp-tap-flash {
  0% { opacity: 0; }
  25% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes lp-tap-ripple {
  0% {
    opacity: 0.85;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2.6);
  }
}

/* Scroll hint */
.lp-hero--showcase::after {
  content: "Scroll to see it in action";
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  pointer-events: none;
  z-index: 1;
  animation: lp-scroll-hint 2.4s ease-in-out infinite;
}

.lp-hero--showcase.is-scrolling::after {
  opacity: 0;
  animation: none;
}

@keyframes lp-scroll-hint {
  0%, 100% { opacity: 0.35; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.7; transform: translateX(-50%) translateY(4px); }
}

@media (max-width: 1100px) {
  .lp-hero.lp-hero--showcase {
    overflow-x: clip;
  }

  .lp-hero-scroll-track {
    --tap-track-height: 560vh;
    --tap-copy-left-shift: 0px;
    padding-left: var(--tap-stage-inset-x);
    padding-right: var(--tap-stage-inset-x);
    overflow-x: clip;
  }

  .lp-hero-scroll-stage {
    padding-left: 0;
    padding-right: 0;
  }

  .lp-hero-copy-stage {
    margin-left: 0;
    width: 100%;
    overflow-y: hidden;
    overflow-x: visible;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .lp-hero-scroll-stage .lp-hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: clamp(16px, 3vh, 24px);
  }

  .lp-hero--showcase .lp-hero-visual {
    order: -1;
    height: auto;
    justify-content: center;
    padding: 8px 0;
    --phone-ref-h: 560px;
    --phone-w: calc(var(--phone-ref-h) * 9 / 19.5);
    --card-rest-overhang: calc(var(--phone-w) * 1.18 * 0.32);
    --phone-scale: 1;
  }

  .lp-hero--showcase .lp-visual-scaler {
    display: block;
    position: relative;
    margin: 0 auto;
    width: calc((var(--phone-w) + var(--card-rest-overhang)) * var(--phone-scale));
    height: calc(var(--phone-ref-h) * var(--phone-scale));
    overflow: visible;
    flex-shrink: 0;
  }

  .lp-hero--showcase .lp-visual-stack {
    --phone-h: var(--phone-ref-h);
    --phone-w: calc(var(--phone-ref-h) * 9 / 19.5);
    --card-w: calc(var(--phone-w) * 1.18);
    --card-rest-overhang: calc(var(--card-w) * 0.32);
    width: calc(var(--phone-w) + var(--card-rest-overhang));
    height: var(--phone-ref-h);
    margin: 0;
    transform: scale(var(--phone-scale));
    transform-origin: 0 0;
  }

  .lp-hero-copy-panel,
  .lp-hero-copy-panel:nth-child(even),
  .lp-hero-copy-panel:nth-child(odd) {
    text-align: left;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding-right: 0;
  }

  .lp-hero-copy-panel:nth-child(odd) {
    padding-right: 0;
  }

  .lp-hero-copy-panel:nth-child(even) .lp-bullets {
    padding-right: 0;
    padding-left: 18px;
    list-style-position: outside;
  }

  .lp-hero-copy-panel:nth-child(even) .lp-cta-row {
    justify-content: flex-start;
  }

  .lp-hero-copy-panel {
    min-height: var(--tap-stage-height);
    justify-content: flex-start;
    padding-top: 12px;
  }

  .lp-hero--showcase::after {
    display: none;
  }
}

/* Tablet / narrow laptop: stacked layout, left-aligned copy, unified phone scale */
@media (min-width: 769px) and (max-width: 1100px) {
  .lp-hero-scroll-track {
    --tap-tablet-stage-h: var(--tap-stage-height);
    --tap-tablet-phone-zone: clamp(240px, 36vh, 320px);
    --tap-tablet-text-zone: calc(
      var(--tap-tablet-stage-h) - var(--tap-tablet-phone-zone) - clamp(12px, 2vh, 20px)
    );
  }

  .lp-hero-scroll-stage .lp-hero-grid {
    grid-template-rows: var(--tap-tablet-phone-zone) minmax(0, 1fr);
    gap: clamp(12px, 2vh, 18px);
    min-height: 0;
  }

  .lp-hero--showcase .lp-hero-visual {
    height: 100%;
    min-height: 0;
    max-height: var(--tap-tablet-phone-zone);
    justify-content: center;
    align-items: center;
    padding: 8px 0 0;
    --phone-target-h: calc(var(--tap-tablet-phone-zone) - 20px);
    --phone-scale: min(1, calc(var(--phone-target-h) / var(--phone-ref-h)));
  }

  .lp-hero-copy-stage {
    height: 100%;
    min-height: 0;
    max-height: var(--tap-tablet-text-zone);
    margin-left: 0;
    width: 100%;
    padding: 0 clamp(16px, 3vw, 28px);
    overflow: hidden;
    box-sizing: border-box;
  }

  .lp-hero-copy-panel,
  .lp-hero-copy-panel:nth-child(odd),
  .lp-hero-copy-panel:nth-child(even) {
    min-height: var(--tap-tablet-text-zone);
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .lp-hero-copy-panel--intro .lp-h1 {
    font-size: clamp(28px, 4.5vw, 40px);
    margin-bottom: 14px;
  }

  .lp-hero--showcase .lp-hero-step-title {
    font-size: clamp(1.35rem, 3.2vw, 1.85rem);
    margin-bottom: 12px;
  }

  .lp-hero-copy-panel .lp-lead {
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.55;
  }

  .lp-hero-copy-panel .lp-bullets {
    font-size: 14px;
  }

  .lp-hero-copy-panel--intro .lp-lead,
  .lp-hero-copy-panel--intro .lp-bullets {
    margin-bottom: 14px;
  }
}

/* Phone: pinned top-half demo, scrolling copy in bottom half with top fade */
@media (max-width: 768px) {
  .lp-hero-scroll-track {
    --tap-track-height: 360vh;
    --tap-mobile-viewport-h: 100vh;
    --tap-mobile-phone-zone: calc(var(--tap-mobile-viewport-h) * 0.4);
    --tap-mobile-text-zone: calc(var(--tap-mobile-viewport-h) * 0.6);
    --tap-stage-height: var(--tap-mobile-viewport-h);
  }

  .lp-hero-scroll-stage {
    top: 0;
    height: var(--tap-mobile-viewport-h);
    min-height: 0;
    padding: 0;
    align-items: stretch;
  }

  .lp-hero-scroll-stage .lp-container {
    height: 100%;
    max-width: 100%;
  }

  .lp-hero-scroll-stage .lp-hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: var(--tap-mobile-phone-zone) var(--tap-mobile-text-zone);
    gap: 0;
    height: 100%;
    min-height: 0;
  }

  .lp-hero--showcase .lp-hero-visual {
    grid-row: 1;
    order: -1;
    height: 100%;
    min-height: 0;
    max-height: var(--tap-mobile-phone-zone);
    justify-content: center;
    align-items: center;
    padding: 12px 16px 8px;
    --phone-target-h: calc(var(--tap-mobile-phone-zone) - 36px);
    --phone-scale: min(1, calc(var(--phone-target-h) / var(--phone-ref-h)));
  }

  .lp-hero-copy-stage {
    grid-row: 2;
    height: 100%;
    min-height: 0;
    max-height: var(--tap-mobile-text-zone);
    margin-left: 0;
    width: 100%;
    padding: 0 16px 8px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.25) 6%,
      rgba(0, 0, 0, 0.85) 16%,
      #000 28%,
      #000 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.25) 6%,
      rgba(0, 0, 0, 0.85) 16%,
      #000 28%,
      #000 100%
    );
  }

  .lp-hero-copy-panel {
    min-height: var(--tap-mobile-text-zone);
    padding: 4px 8px 24px;
    justify-content: flex-start;
  }

  .lp-hero-copy-panel--intro .lp-h1 {
    font-size: clamp(26px, 7.5vw, 36px);
    margin-bottom: 12px;
  }

  .lp-hero--showcase .lp-hero-step-title {
    font-size: clamp(1.25rem, 4.8vw, 1.65rem);
  }

  .lp-hero-copy-panel .lp-lead {
    font-size: 14px;
    line-height: 1.55;
  }

  .lp-hero-copy-panel .lp-bullets {
    font-size: 13px;
  }

  .lp-hero-copy-panel .lp-cta-row {
    flex-wrap: wrap;
  }

  .lp-hero-copy-panel .lp-btn {
    font-size: 13px;
    padding: 10px 16px;
  }

  .lp-hero-copy-panel:nth-child(even),
  .lp-hero-copy-panel:nth-child(even) .lp-bullets,
  .lp-hero-copy-panel:nth-child(even) .lp-cta-row {
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 18px;
    list-style-position: outside;
  }
}

@media (max-width: 740px) {
  .lp-hero-scroll-track {
    --tap-track-height: 340vh;
    --tap-stage-inset-x: clamp(12px, 4vw, 20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero-scroll-track {
    --tap-track-height: auto;
    min-height: 0;
  }

  .lp-hero-scroll-stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
  }

  .lp-hero-copy-stage {
    overflow: visible;
    height: auto;
  }

  .lp-hero-copy-track {
    transform: none !important;
  }

  .lp-hero-copy-panel {
    min-height: 0;
    padding: 24px 0;
  }

  .lp-hero-copy-panel + .lp-hero-copy-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .lp-hero--showcase::after,
  .lp-tap-flash,
  .lp-tap-ripple {
    display: none;
  }

  .lp-phone-idle.is-hidden {
    opacity: 1;
  }

  .lp-phone-profile-viewport {
    opacity: 1;
  }

  .lp-phone-profile-viewport[hidden] {
    display: block;
  }
}
