/* ============================================
   WALLEFY v8 hero — light, calm, product-as-hero.
   Composition: copy on left, Apple Wallet pass + push notification on right.
   No orbit. No glow. No SMIL. No animated conic. No backdrop-filter on animated nodes.
   ============================================ */

.hero {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
  /* Move 31.B — Quiet warm palette locked in. Removed the two blue radial
     gradients (rgba(37,99,235,0.05) at 75% 15% and rgba(37,99,235,0.03) at
     20% 90%) that were creating a visible tint seam between the hero and
     the rest of the body. Hero now matches body cream exactly — full
     visual cohesion. Brand-blue still earns its place via the H1 rotator
     glow, CTA gradient, and accent word. */
  background: var(--bg-0);
}

.hero-grid {
  display: grid;
  /* Move 28.5: visual column gets meaningfully more canvas so the horizontal
     wallet theater (5 fanned pass cards + phone) has room to spread without
     crowding the copy. Was 1fr / 1.05fr → now 0.9fr / 1.15fr. */
  grid-template-columns: 0.9fr 1.15fr;
  gap: 64px;
  align-items: center;
  min-height: 720px;
}
.hero-grid > * { min-width: 0; }

/* ============================================
   Copy column
   ============================================ */
.hero-copy { max-width: 620px; }

/* Move 28 — Launch-offer chip above the H1. Quiet brand-blue outline pill
   with a pulse-dot. Replaces the removed top promo bar — same message lives
   here now in a context where the H1 + CTAs already focus the eye. */
.hero-copy .offer-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  margin-bottom: 18px;
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 100px;
  color: var(--ink-1, #2A2826);
  font-size: 13px;
  letter-spacing: 0.005em;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.hero-copy .offer-chip strong {
  color: var(--brand, #2563EB);
  font-weight: 700;
  margin-right: 2px;
}
.hero-copy .offer-chip:hover {
  background: rgba(37, 99, 235, 0.09);
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}
.hero-copy .offer-chip-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand, #2563EB);
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5);
  animation: offer-chip-pulse 2s ease-in-out infinite;
  flex: none;
}
.hero-copy .offer-chip-arr {
  margin-left: 2px;
  color: var(--brand, #2563EB);
  font-weight: 600;
  transition: transform 0.2s ease;
}
.hero-copy .offer-chip:hover .offer-chip-arr { transform: translateX(2px); }
@keyframes offer-chip-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.55); }
  50%      { box-shadow: 0 0 0 6px rgba(37, 99, 235, 0); }
}

.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy h1 {
  font-family: var(--font-display);
  /* Move 25: shrunk from clamp(40px, 5vw, 64px) → fits 2-3 lines, not 5 */
  font-size: clamp(38px, 4.4vw, 54px);
  font-weight: 600;
  letter-spacing: -0.024em;
  line-height: 1.06;
  color: var(--ink-0);
  margin: 0 0 22px;
  text-wrap: balance;
}
.hero-copy h1 .accent { color: var(--brand); }

/* Move 29.2 — Rotating H1 word now BLOCK-LEVEL (own dedicated line).
   Promoting from inline-block → block eliminates the surrounding-text
   shifting that the eye reads as visual noise. The rotator becomes a
   focal element — Linear / Stripe stacked-H1 pattern. JS still measures
   exact width per word + transitions container width smoothly. No CLS.

   Visual structure now:
     "Turn every"                          ← stable line above
     "[WORD]"                              ← rotator line, dynamic width
     "into a repeat customer with ..."    ← stable line below

   Bonus: subtle brand-blue glow halo on the active word — "live" signal
   without distracting from readability. */
.h1-rotator {
  display: block;
  position: relative;
  height: 1.05em;
  line-height: 1.05;
  margin: 0;
  overflow: hidden;
  color: var(--brand);
  /* Width is set inline by JS (e.g. style="width: 174px"). Transition the
     width change so the rotator container "breathes" between words. */
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  padding-bottom: 0.06em;
}
.h1-rotator-word {
  position: absolute;
  inset: 0 auto auto 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(60%);
  transition:
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.5s ease-out;
  pointer-events: none;
}
.h1-rotator-word.is-active {
  opacity: 1;
  transform: translateY(0);
  /* Subtle brand-blue glow halo — reads as "this word is the live signal"
     without overpowering the headline. Two stacked drop-shadows: tight
     halo + ambient bloom. */
  filter:
    drop-shadow(0 0 14px rgba(37, 99, 235, 0.18))
    drop-shadow(0 1px 1px rgba(37, 99, 235, 0.10));
}
.h1-rotator-word.is-leaving {
  opacity: 0;
  transform: translateY(-60%);
  filter: none;
}

/* Reduced motion — freeze on the first word, no transitions, no glow shift */
@media (prefers-reduced-motion: reduce) {
  .h1-rotator { transition: none; }
  .h1-rotator-word { transition: none; }
}
.hero-copy .lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 30px;
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

/* Move 41 — Hero microline now also hosts a tertiary trial text link.
   Quiet inline link in muted color — visible but visually deferential
   to the primary demo + secondary blueprint buttons above. Lets high-
   intent visitors still find the trial without crowding the CTA pair. */
.hero-microline {
  font-size: 13px;
  color: var(--ink-3, #6B6660);
  margin-bottom: 28px;
  line-height: 1.5;
}
.hero-microline .hero-tertiary {
  color: var(--ink-3, #6B6660);
}
.hero-microline .hero-tertiary a {
  color: var(--brand, #2563EB);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 99, 235, 0.30);
  transition: border-color 0.18s ease, color 0.18s ease;
}
.hero-microline .hero-tertiary a:hover {
  color: var(--brand-dark, #1E40AF);
  border-bottom-color: var(--brand, #2563EB);
}
@media (max-width: 600px) {
  .hero-microline .hero-tertiary {
    display: block;
    margin-top: 8px;
  }
}

/* Move 41 — "Want yours?" caption beneath the hero phone. Quiet two-line
   composition: muted "This is a sample." above a brand-blue gradient
   "Want yours?" link with arrow. Visually rhymes with the primary demo
   CTA button on the left side of the hero. Centered under the phone so
   it reads as a deliberate annotation, not a stray UI element.

   Hidden on mobile where the visual stacks below the copy — the primary
   CTA is already proximate enough that the caption would be redundant
   noise above the fold. */
.hero-want-yours {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  text-align: center;
}
.hero-want-yours .hwy-sample {
  font-size: 12px;
  color: var(--ink-3, #6B6660);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero-want-yours .hwy-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--brand, #2563EB);
  text-decoration: none;
  transition: transform 0.18s ease-out;
}
.hero-want-yours .hwy-cta:hover {
  transform: translateY(-1px);
}
@media (max-width: 980px) {
  .hero-want-yours { display: none; }
}

/* Move 28.11 — Proof pills now hold 2x2 on ALL viewports (down to 320px).
   Previously collapsed to single column below 520px, eating 200px+ of
   above-the-fold vertical space on mobile. 2x2 saves half the height and
   reads as "structured value props" not "list of features." Mobile pill
   styling is tighter: smaller padding, lighter border, subtle warm bg. */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 20px;
  max-width: 560px;
}
.hero-trust .proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  justify-content: flex-start;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.hero-trust .proof-pill > span { overflow: hidden; text-overflow: ellipsis; }
.hero-trust .proof-pill svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
  width: 13px; height: 13px;
}

/* Move 28.13 — Brand-marks proof pill (Apple + Google logos inline).
   Logos sit tightly together as a "stack" with a tiny gap, then "Wallet
   native" follows. Apple monochrome inherits ink color; Google G keeps
   its native 4-color brand. */
.hero-trust .proof-pill--brands {
  gap: 6px;
}
.hero-trust .proof-pill--brands .brand-mark {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.hero-trust .proof-pill--brands .brand-mark--apple {
  color: var(--ink-0, #1C1B1A);
  margin-right: -2px;
}
.hero-trust .proof-pill--brands .brand-mark--google {
  width: 13px;
  height: 13px;
}
.hero-trust .proof-pill:hover {
  border-color: var(--border-hi);
  background: var(--bg-card-hi);
  transform: translateY(-1px);
}

/* Mobile: tighter pills, still 2x2 — better above-the-fold density */
@media (max-width: 768px) {
  .hero-trust {
    gap: 7px;
    margin-top: 16px;
    max-width: 100%;
  }
  .hero-trust .proof-pill {
    padding: 8px 12px;
    font-size: 11.5px;
    gap: 6px;
  }
  .hero-trust .proof-pill svg { width: 11px; height: 11px; }
}
/* Phone small: tighten further — fits comfortably on 320-375px screens */
@media (max-width: 380px) {
  .hero-trust { gap: 6px; }
  .hero-trust .proof-pill {
    padding: 7px 10px;
    font-size: 11px;
  }
}

/* ============================================
   Visual column — phone + wallet pass + push notification
   ============================================ */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 640px;
  /* Move 28.5 — establish a 3D stage so fan cards' translateZ + perspective
     reads with proper depth. Hardware-accelerated. */
  perspective: 1400px;
  perspective-origin: 50% 50%;
}

/* Phone frame */
.hp-phone {
  position: relative;
  /* Move 28.6 — z-index above the wallet theater fan cards so the phone
     always reads as the focal point. Fan cards (z-index: 1) tuck around. */
  z-index: 3;
  width: 320px;
  height: 580px;
  border-radius: 48px;
  background: linear-gradient(180deg, #1F1F2A, #0F172A);
  padding: 12px;
  /* Move 28.7 — Longer ground cast shadow grounds the phone as the focal
     point of the wallet theater. 4-layer stack: tight near + mid ambient +
     soft long-cast + ultra-soft ground. Apple/Stripe phone mockup pattern. */
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.12),
    0 12px 24px -8px rgba(15, 23, 42, 0.20),
    0 32px 64px -16px rgba(15, 23, 42, 0.28),
    0 64px 80px -40px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.hp-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 38px;
  background: linear-gradient(180deg, #E2E8F0 0%, #CBD5E1 100%);
  overflow: hidden;
}
/* Subtle wallpaper texture so the screen reads as a real lockscreen */
.hp-phone-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.4), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(37,99,235,0.08), transparent 50%);
  pointer-events: none;
}
.hp-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #0F172A;
  border-radius: 999px;
  z-index: 3;
}
.hp-time {
  position: absolute;
  top: 14px;
  left: 24px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-0);
  letter-spacing: -0.01em;
  z-index: 4;
}
.hp-status {
  position: absolute;
  top: 14px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-0);
  z-index: 4;
  font-size: 12px;
}
.hp-status svg { width: 14px; height: 14px; }

/* Push notification card (top, floating above the pass) */
.hp-push {
  position: absolute;
  top: 64px;
  left: 16px;
  right: 16px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15,23,42, 0.06);
  border-radius: 18px;
  padding: 12px 14px 14px;
  box-shadow:
    0 8px 24px -8px rgba(48,38,24,0.22),
    0 1px 0 rgba(255,255,255,0.7) inset;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  /* Move 25: subtle entry motion — push notification slides down from
     above-screen once on page load. One delight moment, no animation overkill. */
  animation: hp-push-arrive 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.45s both;
}

@keyframes hp-push-arrive {
  0% {
    opacity: 0;
    transform: translateY(-32px) scale(0.94);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Respect users who set prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hp-push { animation: none; }
}
.hp-push .ph-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.hp-push .ph-app {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.hp-push .ph-app-icon {
  width: 20px; height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, #92400E, #78350F);
  color: white;
  display: grid;
  place-items: center;
  font-size: 10px;
}
.hp-push .ph-time { font-size: 11px; color: var(--ink-3); }
.hp-push .ph-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-0);
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}
.hp-push .ph-body {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.4;
}

/* Move 28.8 — Cycling phone scenes. 5 industry scenes crossfade every 4s
   to demonstrate "one platform, every kind of customer" live. Scene
   container fills the phone screen; only one is .is-active at a time. */
.hp-scenes {
  position: absolute;
  inset: 0;
}
.hp-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0.55s;
}
.hp-scene.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0s;
}

/* Industry-specific pass gradients — each pass matches its outer fan card */
.hp-pass--coffee  { background: linear-gradient(160deg, #0F172A 0%, #1E293B 55%, #1E40AF 100%); }
.hp-pass--medspa  { background: linear-gradient(160deg, #831843 0%, #9F1239 55%, #BE185D 100%); }
.hp-pass--hvac    { background: linear-gradient(160deg, #07303A 0%, #0E4D5C 55%, #0891B2 100%); }
.hp-pass--dental  { background: linear-gradient(160deg, #1E1B4B 0%, #1E3A8A 55%, #3B82F6 100%); }
.hp-pass--gym     { background: linear-gradient(160deg, #1E1B4B 0%, #312E81 55%, #4F46E5 100%); }

/* Two-column field row inside the phone pass (used for medspa/HVAC/dental/gym) */
.hp-pass-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 4px 0 10px;
  position: relative;
  z-index: 1;
}
.hp-pass-row .label {
  display: block;
  font-family: var(--font-mono, monospace);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 3px;
}
.hp-pass-row .value-sm {
  display: block;
  font-family: var(--font-display, system-ui);
  font-weight: 600;
  font-size: 14px;
  color: white;
  letter-spacing: -0.01em;
}

/* Apple Wallet pass (lower, primary subject) */
.hp-pass {
  position: absolute;
  bottom: 24px;
  left: 16px;
  right: 16px;
  z-index: 2;
  border-radius: 18px;
  background: linear-gradient(160deg, #0F172A 0%, #1E293B 55%, #1E40AF 100%);
  color: white;
  padding: 16px 16px 14px;
  box-shadow:
    0 12px 28px -8px rgba(15,23,42,0.32),
    inset 0 1px 0 rgba(255,255,255,0.14);
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
}
.hp-pass::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(180,210,255,0.22), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(0,0,0,0.18), transparent 50%);
  pointer-events: none;
}
.hp-pass > * { position: relative; }
.hp-pass-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.hp-pass .pass-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hp-pass .pass-logo {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  font-size: 14px;
}
.hp-pass .pass-tier {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
}
.hp-pass-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}
.hp-pass-body .label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hp-pass-body .value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.012em;
}
.hp-pass-stamps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.hp-stamp {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.32);
  display: grid;
  place-items: center;
  font-size: 11px;
}
.hp-stamp.is-on {
  background: rgba(255,255,255,0.94);
  border-color: rgba(255,255,255,0.95);
  color: #1E40AF;
}
.hp-pass-barcode {
  background: rgba(255,255,255,0.94);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hp-pass-barcode .bars {
  display: flex;
  align-items: stretch;
  gap: 1px;
  height: 36px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.hp-pass-barcode .bar { background: #0F172A; }
.hp-pass-barcode .num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-2);
  letter-spacing: 0.16em;
}

/* Optional barcode shimmer — gated to reduced-motion-OK only */
@media (prefers-reduced-motion: no-preference) {
  .hp-pass-barcode .bars::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 40%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
    transform: translateX(-100%);
    animation: barcodeShimmer 8s var(--ease-in-out) infinite;
    pointer-events: none;
  }
  @keyframes barcodeShimmer {
    0%, 90%, 100% { transform: translateX(-100%); }
    95%           { transform: translateX(280%); }
  }
}

/* Mobile stacking */
@media (max-width: 960px) {
  .hero { padding: 56px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; min-height: 0; }
  .hero-visual { min-height: 520px; }
  .hero-copy { max-width: 100%; }
  .hero-copy .lead { max-width: 100%; }
}

/* Move 28.12 — Fortune-50 mobile hero refinements + breathing room fix.
   Hero top padding bumped 36 → 64px so the floating header pill gets the
   premium 60-80px breathing zone before the H1 (Stripe/Linear/Vercel
   benchmark). Tighter H1 + lead, full-width CTAs at small phones. */
@media (max-width: 768px) {
  .hero {
    padding: 64px 0 60px;
  }
  .hero-copy h1 {
    font-size: clamp(34px, 8.5vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.028em;
    margin-bottom: 18px;
  }
  .hero-copy .lead {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 26px;
  }
  .hero-ctas {
    gap: 10px;
    margin-bottom: 18px;
  }
  .hero-microline {
    font-size: 12px;
    margin-bottom: 18px;
  }
}

/* Move 28.13 — CTAs stack vertically on mobile but constrained to 380px
   max-width (left-aligned to match the H1 left-alignment). Previously
   full container-width which made the ovals look stretched at 327px wide
   on iPhone. 380px max gives the PassEntry-tier "deliberate" oval ratio. */
@media (max-width: 600px) {
  .hero-ctas {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    max-width: 380px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    /* 56px top breathing room — slightly tighter on small phones than the
       768px-block 64px, but still well above the 50px "premium feel" floor. */
    padding: 56px 0 52px;
  }
  .hero-copy h1 {
    font-size: clamp(30px, 9vw, 38px);
    letter-spacing: -0.03em;
  }
  .hero-copy .lead {
    font-size: 15.5px;
    margin-bottom: 24px;
  }
  .hp-phone { width: 280px; height: 540px; padding: 10px; border-radius: 40px; }
  .hp-phone-screen { border-radius: 32px; }
  .hp-pass { left: 12px; right: 12px; bottom: 18px; }
  .hp-push { left: 12px; right: 12px; top: 58px; }
}
