main h1 { font-size: 2.15rem; letter-spacing: 0.02em; color: #4f6f86; }
  main h2 { font-size: 1.7rem; color: #4f6f86; }
  main p { line-height: 1.65; }
  /* Remove volume slider on all devices */
  #volume-control, #volume-control + span { display: none !important; }

  .home-header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    padding: 0 16px;
    min-width: 0;
    font-family: Georgia, "Times New Roman", serif;
  }
  .home-header-nav a {
    color: #e8eaef;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
  }
  .home-header-nav a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .home-header-nav__sep {
    color: rgba(232, 234, 239, 0.45);
    user-select: none;
  }

  /* FAQ accordion (<details>/<summary>) — home FAQ section */
  .home-snap-section--faq .faq-accordion { width: 100%; text-align: left; }
  .home-snap-section--faq .faq-item { border-bottom: 1px solid #e0e0e0; }
  .home-snap-section--faq .faq-item:last-child { border-bottom: none; }
  .home-snap-section--faq .faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    list-style: none;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #4f6f86;
    font-family: Georgia, "Times New Roman", serif;
  }
  .home-snap-section--faq .faq-item summary::-webkit-details-marker { display: none; }
  .home-snap-section--faq .faq-item summary::marker { content: ''; }
  .home-snap-section--faq .faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
    color: #4f6f86;
    flex-shrink: 0;
    transition: color 0.15s ease;
  }
  .home-snap-section--faq .faq-item[open] summary::after { content: '\2212'; }
  .home-snap-section--faq .faq-item summary:focus { outline: none; }
  .home-snap-section--faq .faq-item summary:focus-visible {
    outline: 2px solid #7eb4d4;
    outline-offset: 3px;
    border-radius: 4px;
  }
  .home-snap-section--faq .faq-answer { padding: 0 0 8px 0; }
  .home-snap-section--faq .faq-answer p {
    font-size: 15px;
    line-height: 1.55;
    color: #333;
    margin: 0;
  }
  .home-snap-section--faq .faq-answer p + p { margin-top: 8px; }
  .home-snap-section--faq > .home-snap-section__inner > .card > h2 {
    margin-bottom: 1.1rem !important;
  }
  .home-snap-section--faq .home-section-cta {
    margin-top: 2.75rem !important; /* more space under last FAQ before CTA */
  }

  /* Home CTA — shared across all snap sections (pulsing glow draws the eye) */
  @keyframes home-cta-pulse {
    0%, 100% {
      box-shadow:
        inset 0 0 0 2px #4f7a94,
        0 6px 20px rgba(45, 74, 92, 0.3),
        0 2px 6px rgba(45, 74, 92, 0.14),
        0 0 36px 16px rgba(120, 190, 230, 0.22),
        0 0 64px 28px rgba(120, 195, 225, 0.12);
    }
    50% {
      box-shadow:
        inset 0 0 0 2px #4f7a94,
        0 8px 28px rgba(45, 74, 92, 0.38),
        0 4px 10px rgba(45, 74, 92, 0.22),
        0 0 48px 20px rgba(100, 210, 255, 0.32),
        0 0 88px 36px rgba(100, 210, 255, 0.16);
    }
  }
  a.home-cta-btn {
    display: inline-block;
    /* padding compensates for frame drawn with inset shadow (avoids border/gradient anti-alias seam) */
    box-sizing: border-box;
    padding: 16px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff !important;
    text-decoration: none;
    border: none;
    border-radius: 16px;
    background: linear-gradient(165deg, #9ecce8 0%, #7eb4d4 45%, #5c96b4 100%);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Outer glow: wide, soft spread so the light doesn’t hug the button edge (button size unchanged) */
    box-shadow:
      inset 0 0 0 2px #4f7a94,
      0 6px 20px rgba(45, 74, 92, 0.3), 0 2px 6px rgba(45, 74, 92, 0.15),
      0 0 32px 14px rgba(120, 190, 230, 0.2),
      0 0 56px 26px rgba(120, 195, 225, 0.1);
    transition: filter 0.2s ease;
    animation: home-cta-pulse 2.1s ease-in-out infinite;
  }
  a.home-cta-btn:hover {
    color: #fff !important;
    background: linear-gradient(165deg, #b0d6ee 0%, #8fc0dc 45%, #6ca4c4 100%);
    filter: brightness(1.04);
  }
  @media (prefers-reduced-motion: reduce) {
    a.home-cta-btn {
      animation: none;
      box-shadow:
        inset 0 0 0 2px #4f7a94,
        0 6px 20px rgba(45, 74, 92, 0.3), 0 2px 6px rgba(45, 74, 92, 0.15),
        0 0 32px 14px rgba(120, 190, 230, 0.2),
        0 0 56px 26px rgba(120, 195, 225, 0.1);
    }
  }
  
  /* Mobile Responsive Styles for Homepage */
  @media (max-width: 768px) {
    * { box-sizing: border-box !important; }
    html, body { margin: 0 !important; padding: 0 !important; width: 100% !important; overflow-x: hidden !important; }
    html.page-home-root { height: 100% !important; overflow: hidden !important; }
    body.page-home-snap { height: 100dvh !important; max-height: 100dvh !important; overflow: hidden !important; }
    .home-header-nav { display: none !important; }
    /* Audio player controls */
    #prev-btn, #next-btn { width: 40px !important; height: 40px !important; font-size: 16px !important; }
    #play-pause-btn { width: 56px !important; height: 56px !important; font-size: 20px !important; }
    #current-track-title { font-size: 18px !important; }
    #current-track-time { font-size: 12px !important; }
    .playlist-item { padding: 10px 12px !important; gap: 8px !important; }
    .playlist-track-title { font-size: 14px !important; }
    .playlist-track-duration { font-size: 12px !important; }
    .like-btn { font-size: 18px !important; }
    .like-count { font-size: 12px !important; }
    
    /* Restructure audio player for mobile - progress bar below buttons */
    #audio-player-controls { flex-direction: column !important; gap: 12px !important; }
    #audio-player-controls > div:first-child { order: 1; width: 100%; justify-content: center !important; }
    #audio-player-controls > div:nth-child(2) { order: 2; width: 100% !important; margin-left: 0 !important; margin-top: 0 !important; }
  }
  
  @media (max-width: 480px) {
    * { box-sizing: border-box !important; }
    html, body { margin: 0 !important; padding: 0 !important; width: 100% !important; overflow-x: hidden !important; }
    html.page-home-root { height: 100% !important; overflow: hidden !important; }
    body.page-home-snap { height: 100dvh !important; max-height: 100dvh !important; overflow: hidden !important; }
    main { padding: 0 8px !important; margin: 12px auto !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
    .card { padding: 12px !important; margin-left: 0 !important; margin-right: 0 !important; width: 100% !important; box-sizing: border-box !important; }
    
    /* Audio player controls - smaller on very small screens */
    #prev-btn, #next-btn { width: 36px !important; height: 36px !important; font-size: 14px !important; }
    #play-pause-btn { width: 48px !important; height: 48px !important; font-size: 18px !important; }
    #current-track-title { font-size: 16px !important; }
    #current-track-time { font-size: 11px !important; }
    .playlist-item { padding: 8px 10px !important; gap: 6px !important; }
    .playlist-track-title { font-size: 13px !important; }
    .playlist-track-duration { font-size: 11px !important; }
    .like-btn { font-size: 16px !important; }
    .like-count { font-size: 11px !important; }
    
    /* Audio player layout */
    #audio-player-controls { flex-direction: column !important; gap: 10px !important; }
    #audio-player-controls > div:first-child { order: 1; width: 100%; justify-content: center !important; }
    #audio-player-controls > div:nth-child(2) { order: 2; width: 100% !important; margin-left: 0 !important; margin-top: 0 !important; }
  }

  /*
   * Home scroll-snap: only .home-snap-scroller may scroll. Generic `body{min-height:100vh}`
   * (base) has no class override for min-height, and flex `main` with min-height:auto can grow
   * to the full page. Lock html/body to the viewport, constrain main+scroller with !important.
   */
  html.page-home-root {
    height: 100% !important;
    max-height: 100dvh !important;
    overflow: hidden !important;
  }
  body.page-home-snap {
    min-height: 0 !important; /* win over `body{min-height:100vh}` in base */
    height: 100dvh !important;
    max-height: 100dvh !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
  }
  body.page-home-snap > header {
    flex-shrink: 0;
  }
  body.page-home-snap > main {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: 1 1 0% !important;
    min-height: 0 !important;
    min-width: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
  }
  body.page-home-snap > main .flash-ok,
  body.page-home-snap > main .flash-error {
    flex-shrink: 0;
  }
  html.page-home-hold body.page-home-snap > main {
    opacity: 0;
    transform: translateY(8px);
  }
  html.page-home-ready body.page-home-snap > main {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  /* Must have a bounded height (flex + min-height:0) or height:auto grows with sections → window scroll */
  .home-snap-scroller {
    /* height:0 + flex:1 = definite height for flex child; without this, block grows with content */
    flex: 1 1 0% !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: none !important;
    width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    scroll-behavior: auto;
    scroll-snap-type: y mandatory;
    -webkit-scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
  }
  @media (prefers-reduced-motion: reduce) {
    .home-snap-scroller { scroll-snap-type: none; -webkit-scroll-snap-type: none; }
  }
  .home-snap-section {
    min-height: 100%;
    scroll-snap-align: start;
    /* "always" forces a full rest on every snap; Chromium often ignores wheel input until that completes → feels “stuck” */
    scroll-snap-stop: normal;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem 2.5rem;
  }
  .home-snap-section--center {
    justify-content: center;
    position: relative;
    isolation: isolate;
  }
  /* Section 1: staff art on its own layer so opacity does not affect text */
  .home-snap-section--hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("/static/images/Notation.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    opacity: 0.1; /* very light in the background */
  }
  .home-snap-section--center > .home-snap-section__inner {
    position: relative;
    z-index: 1;
  }
  .home-snap-section--reviews::before {
    content: "";
    position: absolute;
    inset: -24px;
    z-index: 0;
    pointer-events: none;
    background-image: url("/static/images/reviews.svg");
    background-repeat: repeat;
    background-position: 140px -220px;
    background-size: 800px 800px;
    opacity: 0.1; /* match Section 1 background opacity */
  }
  .home-snap-section--reviews,
  .home-snap-section--examples {
    overflow: hidden;
  }
  .home-snap-section--reviews {
    justify-content: flex-start;
    padding-top: 7vh;
  }
  .home-reviews-card {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    border: none;
  }
  .home-reviews-carousel {
    position: relative;
    margin-top: clamp(42px, 9vh, 100px);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 72px;
    box-sizing: border-box;
  }
  .home-reviews-viewport {
    position: relative;
    overflow: hidden;
    padding: 16px 0 42px;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  }
  .home-reviews-viewport.is-dragging {
    cursor: grabbing;
  }
  .home-reviews-track {
    display: flex;
    gap: 18px;
    align-items: stretch;
    transition: transform 0.45s ease;
    will-change: transform;
  }
  .home-reviews-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(126, 180, 212, 0.45);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #2d4a5c;
    box-shadow: 0 10px 24px rgba(45, 74, 92, 0.18);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
  }
  .home-reviews-arrow:hover {
    background: #fff;
  }
  .home-reviews-arrow--prev {
    left: 24px;
  }
  .home-reviews-arrow--next {
    right: 24px;
  }
  .home-reviews-empty {
    width: min(760px, 96%);
    margin: 20px auto 0;
    padding: 28px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(126, 180, 212, 0.3);
    box-shadow: 0 14px 34px rgba(45, 74, 92, 0.16);
    text-align: center;
    box-sizing: border-box;
  }
  .home-reviews-empty p {
    margin: 0;
    color: #35495a;
    font-size: clamp(18px, 2.6vw, 24px);
    line-height: 1.45;
    font-weight: 700;
  }
  .home-reviews-empty span {
    display: block;
    margin-top: 8px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
  }
  .home-review {
    flex: 0 0 clamp(520px, 34vw, 720px);
    min-width: 0;
    padding: 13px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(126, 180, 212, 0.28);
    box-shadow: 0 14px 34px rgba(45, 74, 92, 0.18);
    box-sizing: border-box;
  }
  .home-review-topline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }
  .home-review p {
    margin: 0;
    color: #35495a;
    line-height: 1.45;
  }
  .home-review-stars {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 2px;
    white-space: nowrap;
    text-align: center;
  }
  .home-review-stars-mobile,
  .home-review-for-mobile {
    display: none;
  }
  .home-review-verified,
  .home-review-for {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
  }
  .home-review-verified::before {
    content: "✓ ";
  }
  .home-review-verified {
    justify-self: end;
  }
  .home-review-for {
    width: fit-content;
    background: rgba(126, 180, 212, 0.16);
    color: #4f6f86;
  }
  .home-review-for.is-empty {
    visibility: hidden;
  }
  .home-review cite {
    display: block;
    margin-top: 8px;
    color: #5a6b78;
    font-style: normal;
    font-weight: 700;
  }
  .home-review-country {
    display: block;
    margin-top: 2px;
    color: #718292;
    font-size: 13px;
    font-weight: 500;
  }
  @media (max-width: 768px) {
    .home-reviews-carousel {
      padding: 0 42px;
    }
    .home-reviews-viewport {
      mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
    }
    .home-reviews-track {
      gap: 12px;
    }
    .home-reviews-arrow {
      width: 30px;
      height: 30px;
      font-size: 24px;
    }
    .home-reviews-arrow--prev {
      left: 8px;
    }
    .home-reviews-arrow--next {
      right: 8px;
    }
    .home-review {
      flex-basis: calc(100vw - 84px);
      padding: 12px 12px;
    }
    .home-review-topline {
      grid-template-columns: minmax(0, 1fr) auto auto;
      gap: 8px;
      align-items: center;
    }
    .home-review-for {
      padding: 2px 7px;
      font-size: 11px;
      max-width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .home-review-for-desktop,
    .home-review-stars-desktop {
      display: none;
    }
    .home-review-for-mobile {
      display: inline;
    }
    .home-review-stars-mobile {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      color: #f5a623;
      letter-spacing: 0;
      font-size: 30px;
      line-height: 1;
    }
    .home-review-stars-mobile span {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -46%);
      color: #fff;
      font-size: 10px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: 0;
    }
    .home-review-verified {
      width: 28px;
      height: 28px;
      padding: 0;
      border-radius: 50%;
      background: rgba(16, 185, 129, 0.14);
      color: #059669;
      font-size: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .home-review-verified::before {
      content: "";
      width: 17px;
      height: 19px;
      display: block;
      background: currentColor;
      clip-path: polygon(50% 0, 90% 14%, 85% 62%, 50% 100%, 15% 62%, 10% 14%);
    }
  }
  @media (min-width: 769px) and (max-width: 1080px) {
    .home-review {
      flex-basis: min(58vw, 680px);
    }
  }
  .like-btn svg {
    width: 22px;
    height: 22px;
    display: block;
    stroke: #111827;
    fill: none;
    stroke-width: 2;
    transition: fill 0.2s, stroke 0.2s, transform 0.2s;
  }
  .like-btn.is-liked svg {
    fill: #ff6b9d;
    stroke: #ff6b9d;
  }
  .home-snap-section--flow {
    justify-content: flex-start;
  }
  /* Section 2: Examples — tile_notation 400px basis, 1.3× zoom → 520px, repeated */
  .home-snap-section--examples {
    position: relative;
    isolation: isolate;
  }
  .home-snap-section--examples::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("/static/images/tile_notation.svg");
    background-repeat: repeat;
    background-position: -100px 0;
    background-size: 800px 800px;
    opacity: 0.1; /* match Section 1 background opacity */
  }
  .home-snap-section--examples > .home-snap-section__inner {
    position: relative;
    z-index: 1;
  }
  /* “How your song” — vertically centered snap (like hero); extra gap before CTA */
  .home-snap-section--how-song {
    justify-content: center;
  }
  .home-snap-section--how-song .home-section-cta {
    margin-top: 22px !important; /* over inline 24px on .home-section-cta */
  }
  .home-snap-section--how-song .card > div {
    text-align: center;
  }
  .home-seo-subheading {
    margin: -16px 0 22px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.45;
    color: #4f6f86;
  }
  .home-process-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0 0;
  }
  .home-process-point {
    margin: 0;
    padding: 12px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.62);
    color: #4f6f86;
    font-size: 0.96rem;
    line-height: 1.35;
  }
  /* 5th screen: contact card (820px) + full-bleed site footer at bottom of snap */
  .home-snap-section--contact {
    padding: 0;
    padding-top: 1.5rem;
    padding-bottom: 0;
    justify-content: space-between;
    min-height: 100%;
  }
  .home-snap-section--contact .home-snap-contact-main {
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem 1.25rem 1rem;
    box-sizing: border-box;
  }
  .home-snap-contact-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    gap: 1rem;
  }
  .home-snap-contact-bottom {
    flex-shrink: 0;
    text-align: center;
    padding-top: 0.5rem;
    position: relative;
    z-index: 1;
  }
  .home-snap-contact-bottom h2 {
    margin: 0 0 0.4rem 0;
  }
  .home-snap-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 0.75rem 0;
  }
  .home-snap-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #4f6f86;
    text-decoration: none;
    box-shadow: none;
    line-height: 1;
    transition: transform 0.15s ease, color 0.15s ease;
  }
  .home-snap-social-links a:hover {
    color: #2d4a5c;
    background: transparent;
    text-decoration: none;
    transform: translateY(-1px);
  }
  .home-snap-social-links svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: currentColor;
  }
  .home-snap-contact-cta-block {
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
  }
  .home-snap-contact-cta-lead {
    margin: 0 0 0.4rem 0;
    max-width: 32rem;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
  }
  .home-snap-contact-cta-arrow {
    display: block;
    color: #4f6f86;
    margin: 0 0 calc(1.25rem + 50px) 0;
    line-height: 0;
  }
  .home-snap-contact-cta-arrow svg {
    display: block;
    width: 36px;
    height: 36px;
    margin: 0 auto;
  }
  .home-snap-contact-cta-block .home-section-cta {
    margin-top: 0 !important;
    margin-bottom: 0.75rem !important;
  }
  .home-snap-contact-email {
    flex-shrink: 0;
    text-align: center;
    margin: 0;
  }
  .home-snap-contact-footer-outer {
    margin-top: auto;
    width: 100%;
    max-width: none;
    flex: 0 0 auto;
    align-self: stretch;
  }
  .home-snap-contact-footer-outer > footer {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }
  .home-snap-section__inner {
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  body.page-home-snap .home-snap-section .card { margin: 0; }
  @media (max-width: 768px) {
    html.page-home-root { max-height: 100dvh !important; overflow: hidden !important; }
    body.page-home-snap { min-height: 0 !important; height: 100dvh !important; max-height: 100dvh !important; overflow: hidden !important; }
    body.page-home-snap main { margin: 0 !important; padding: 0 !important; }
    .home-header-nav { display: none !important; }
    .home-header-nav a { font-size: 13px; }
    .home-snap-section--contact {
      padding-left: 0 !important;
      padding-right: 0 !important;
      padding-bottom: 0 !important;
    }
    .home-snap-contact-card {
      gap: 0.75rem;
    }
    .home-snap-contact-cta-block {
      flex: 0 1 auto;
      justify-content: flex-start;
      padding-top: 0.25rem;
    }
    .home-snap-contact-cta-arrow {
      margin-bottom: 1rem;
    }
    .home-snap-contact-cta-block .home-section-cta {
      margin-bottom: 1rem !important;
    }
    .home-snap-contact-bottom {
      padding-top: 0;
    }
  }
  @media (max-width: 480px) {
    html.page-home-root { max-height: 100dvh !important; overflow: hidden !important; }
    body.page-home-snap { min-height: 0 !important; height: 100dvh !important; max-height: 100dvh !important; overflow: hidden !important; }
    body.page-home-snap main { margin: 0 !important; padding: 0 !important; }
    .home-snap-section { padding: 1rem 8px 1.5rem; }
    .home-seo-subheading {
      margin: -10px 0 14px;
      font-size: 0.92rem;
    }
    .home-process-points {
      grid-template-columns: 1fr;
      gap: 8px;
      margin-top: 14px;
    }
    .home-process-point {
      padding: 8px 10px;
      font-size: 0.9rem;
    }
    .home-snap-section--contact {
      padding-top: 1rem;
      padding-left: 0 !important;
      padding-right: 0 !important;
      padding-bottom: 0 !important;
    }
    .home-snap-section--contact .home-snap-contact-main {
      padding-left: 8px;
      padding-right: 8px;
    }
    .home-snap-contact-card {
      gap: 0.5rem;
    }
    .home-snap-contact-cta-lead {
      margin-bottom: 0.25rem;
      font-size: 15px;
      line-height: 1.4;
    }
    .home-snap-contact-cta-arrow {
      margin-bottom: 0.75rem;
    }
    .home-snap-contact-cta-arrow svg {
      width: 28px;
      height: 28px;
    }
    .home-snap-contact-cta-block .home-section-cta {
      margin-bottom: 0.85rem !important;
    }
    .home-snap-social-links {
      margin-bottom: 0.45rem;
    }
    .home-snap-contact-bottom h2 {
      margin-bottom: 0.25rem;
      font-size: 1.35rem;
    }
    .home-snap-contact-email {
      font-size: 15px !important;
      line-height: 1.4 !important;
    }
  }

.home-section-cta {
  text-align: center;
  margin-top: 24px;
}
.home-card-flat {
  border: none;
}
.home-snap-section--hero > .home-snap-section__inner {
  max-width: 1280px;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
  width: 100%;
}
.home-hero-column {
  min-width: 0;
}
.home-hero-column--intro {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-hero-column--review {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-hero-title {
  text-align: center;
  font-size: 2.275rem;
  margin-top: 0;
}
.home-hero-copy {
  text-align: left;
  margin: 24px auto;
  line-height: 1.6;
  width: 78%;
  box-sizing: border-box;
  font-size: 18px;
}
.home-hero-price {
  min-height: 38px;
  margin: 0 0 14px;
  text-align: left;
  font-family: Segoe UI, Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}
.home-hero-price__original {
  color: #dc2626;
  font-size: 0.75em;
  margin-right: 8px;
  text-decoration: line-through;
  vertical-align: middle;
}
.home-hero-price__final {
  color: #15803d;
}
.home-hero-proof {
  text-align: center;
  margin: 0;
  color: #5a6b78;
  font-size: 15px;
}
.home-hero-video-frame {
  position: relative;
  width: min(100%, 341px);
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(145deg, #eef6fa 0%, #ffffff 100%);
  box-shadow: 0 20px 46px rgba(45, 74, 92, 0.2);
}
.home-hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero-video-play {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  background: linear-gradient(165deg, #9ecce8 0%, #7eb4d4 45%, #5c96b4 100%);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.82;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 3px;
  box-shadow: 0 12px 26px rgba(45, 74, 92, 0.28);
  transition: opacity 0.18s ease, filter 0.18s ease, transform 0.18s ease;
}
.home-hero-video-play:hover {
  opacity: 1;
  filter: brightness(1.05);
}
.home-hero-video-play.is-playing {
  opacity: 0.94;
  padding-left: 0;
  animation: home-hero-music-pulse 0.9s ease-in-out infinite alternate;
}
@keyframes home-hero-music-pulse {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-2px) scale(1.07);
  }
}
.home-hero-review {
  --example-accent: #7eb4d4;
  --example-accent-strong: #4f6f86;
  --example-glow: rgba(126, 180, 212, 0.22);
  --example-bg-start: rgba(238, 246, 250, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
  width: 100%;
  flex: none;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-color: color-mix(in srgb, var(--example-accent) 34%, #ffffff);
  background:
    radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--example-accent) 22%, transparent) 0%, transparent 36%),
    linear-gradient(145deg, color-mix(in srgb, var(--example-bg-start) 80%, transparent) 0%, color-mix(in srgb, var(--example-bg-end) 80%, transparent) 100%);
  box-shadow: 0 16px 38px var(--example-glow), 0 8px 22px rgba(45, 74, 92, 0.08);
}
.home-hero-review-stack {
  position: relative;
  width: 100%;
  min-height: 300px;
  transition: min-height 0.24s ease;
}
.home-hero-review-stack .home-hero-review {
  position: absolute;
  inset: 0 auto auto 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.home-hero-review-stack .home-hero-review.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.home-hero-review > * {
  position: relative;
  z-index: 1;
}
.home-hero-review.example-card--husband {
  --example-accent: #7f8fb9;
  --example-accent-strong: #445579;
  --example-glow: rgba(127, 143, 185, 0.25);
  --example-bg-start: rgba(239, 242, 251, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}
.home-hero-review.example-card--wife {
  --example-accent: #d88aa8;
  --example-accent-strong: #8c4965;
  --example-glow: rgba(216, 138, 168, 0.26);
  --example-bg-start: rgba(255, 240, 246, 0.98);
  --example-bg-end: rgba(255, 253, 254, 0.96);
}
.home-hero-review.example-card--mother {
  --example-accent: #d8a93d;
  --example-accent-strong: #8a6418;
  --example-glow: rgba(216, 169, 61, 0.28);
  --example-bg-start: rgba(255, 247, 224, 0.98);
  --example-bg-end: rgba(255, 255, 251, 0.96);
}
.home-hero-review.example-card--father {
  --example-accent: #6f91c8;
  --example-accent-strong: #39567f;
  --example-glow: rgba(111, 145, 200, 0.25);
  --example-bg-start: rgba(235, 242, 255, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}
.home-hero-review.example-card--brother {
  --example-accent: #4fa3b8;
  --example-accent-strong: #2f6573;
  --example-glow: rgba(79, 163, 184, 0.24);
  --example-bg-start: rgba(232, 248, 252, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}
.home-hero-review.example-card--sister {
  --example-accent: #c992d8;
  --example-accent-strong: #7a4b86;
  --example-glow: rgba(201, 146, 216, 0.25);
  --example-bg-start: rgba(251, 240, 255, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}
.home-hero-review.example-card--uncle {
  --example-accent: #9a8c6f;
  --example-accent-strong: #5d503c;
  --example-glow: rgba(154, 140, 111, 0.23);
  --example-bg-start: rgba(248, 244, 236, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}
.home-hero-review.example-card--aunty {
  --example-accent: #cf8f72;
  --example-accent-strong: #814d37;
  --example-glow: rgba(207, 143, 114, 0.24);
  --example-bg-start: rgba(255, 241, 234, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}
.home-hero-review.example-card--grandfather {
  --example-accent: #7f9f87;
  --example-accent-strong: #4a654f;
  --example-glow: rgba(127, 159, 135, 0.23);
  --example-bg-start: rgba(239, 248, 241, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}
.home-hero-review.example-card--grandmother {
  --example-accent: #c9a27d;
  --example-accent-strong: #7a5738;
  --example-glow: rgba(201, 162, 125, 0.25);
  --example-bg-start: rgba(255, 245, 235, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}
.home-hero-review.example-card--children {
  --example-accent: #7db89a;
  --example-accent-strong: #3f7359;
  --example-glow: rgba(125, 184, 154, 0.25);
  --example-bg-start: rgba(238, 250, 244, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}
.home-hero-review.example-card--someone-special {
  --example-accent: #8fb6d8;
  --example-accent-strong: #4b7190;
  --example-glow: rgba(143, 182, 216, 0.24);
  --example-bg-start: rgba(238, 247, 255, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}
.home-hero-review.example-card--partner {
  --example-accent: #d98aa4;
  --example-accent-strong: #8d4860;
  --example-glow: rgba(217, 138, 164, 0.25);
  --example-bg-start: rgba(255, 239, 244, 0.98);
  --example-bg-end: rgba(255, 252, 253, 0.96);
}
.home-hero-review.example-card--other {
  --example-accent: #9aa8b6;
  --example-accent-strong: #596879;
  --example-glow: rgba(154, 168, 182, 0.22);
  --example-bg-start: rgba(244, 247, 250, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}
.home-hero-review.example-card--myself {
  --example-accent: #8a9be0;
  --example-accent-strong: #4d5a9a;
  --example-glow: rgba(138, 155, 224, 0.24);
  --example-bg-start: rgba(241, 243, 255, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}
.home-hero-review .review-card-head-public {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.home-hero-review .public-stars {
  color: #d97706;
  letter-spacing: 1px;
  font-size: 18px;
}
.home-hero-review h2 {
  margin: 0 0 10px;
  color: #2d4a5c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}
.home-hero-review .public-card-meta {
  color: #64748b;
  font-size: 14px;
  margin-top: 10px;
}
.home-hero-review .public-card-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.home-hero-review .public-link-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(165deg, color-mix(in srgb, var(--example-accent) 48%, #ffffff) 0%, var(--example-accent) 48%, var(--example-accent-strong) 100%);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  box-shadow:
    0 8px 16px color-mix(in srgb, var(--example-accent) 24%, transparent),
    0 3px 7px rgba(45, 74, 92, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}
.home-hero-review .public-link-btn:hover {
  filter: brightness(1.05);
  text-decoration: none;
}
.home-hero-column--review .home-section-cta {
  flex: 0 0 auto;
  margin-top: 22px;
}
.home-section-title {
  text-align: center;
}
.home-section-title--spaced {
  margin-bottom: 32px;
}
.home-full-width,
.faq-accordion {
  width: 100%;
  box-sizing: border-box;
}
.home-empty-state {
  text-align: center;
  color: #666;
}
@media (max-width: 980px) {
  .home-snap-section--hero {
    justify-content: flex-start;
  }
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .home-hero-title,
  .home-hero-copy,
  .home-hero-price,
  .home-hero-proof {
    text-align: center;
  }
  .home-hero-video-frame {
    width: min(74vw, 297px);
  }
}
.home-story-price-wrap {
  margin: 34px auto 0;
  text-align: center;
}
.home-story-price-label {
  display: block;
  margin-bottom: 6px;
  color: #5a6b78;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-story-price {
  margin: 0 auto;
  text-align: center;
}
.home-player-panel {
  background: linear-gradient(135deg, #eef6fa 0%, #ffffff 100%);
  border-radius: 14px;
  padding: 16px 20px;
  border: 1px solid #d4e4f0;
  box-shadow: 0 10px 26px rgba(45, 74, 92, 0.15);
  margin-bottom: 14px;
}
.home-current-track-info {
  text-align: center;
  margin-bottom: 10px;
}
#current-track-time {
  font-size: 13px;
  color: #5a6b78;
}
#audio-player-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}
.home-player-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.home-audio-nav-btn {
  background: #e4f0f8;
  color: #4f6f86;
  border: 1px solid #d4e4f0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.home-audio-nav-btn:hover {
  background: #dceef8;
}
#play-pause-btn {
  background: #7eb4d4;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
#play-pause-btn:hover {
  background: #6aa8c8;
}
.home-progress-wrap {
  flex: 1;
  margin-left: 16px;
}
#progress-bar {
  width: 100%;
  height: 6px;
  cursor: pointer;
  accent-color: #7eb4d4;
}
.home-playlist-panel {
  background: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  border: 1px solid #d4e4f0;
  box-shadow: 0 10px 26px rgba(45, 74, 92, 0.15);
}
#playlist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.playlist-item {
  background: #f8fafc;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e8f0f8;
}
.playlist-track-index {
  font-size: 18px;
  color: #5a6b78;
  width: 24px;
}
.playlist-track-title {
  flex: 1;
  font-size: 16px;
  color: #4a5a6a;
}
.playlist-track-duration {
  font-size: 14px;
  color: #5a6b78;
}
.playlist-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.like-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.like-count {
  font-size: 14px;
  color: #5a6b78;
  min-width: 20px;
  text-align: center;
}
.home-ready-text {
  text-align: center;
  margin: 24px 0 0;
  color: #35495a;
  font-size: 18px;
  font-weight: 700;
}
.home-story-copy {
  width: 100%;
  box-sizing: border-box;
  line-height: 1.8;
  color: #333;
}
.home-story-text {
  font-size: 16px;
  margin-bottom: 0;
}
.home-snap-contact-email {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
}
.home-contact-email-link {
  font-weight: 500;
}

.playlist-item:hover:not(.is-current) {
  background: #eef6fa;
  border-color: #d4e4f0;
}
.playlist-item.is-current {
  background: #dceef8;
  border-color: #b8d8e8;
}
.playlist-item.is-current .playlist-track-title {
  font-weight: 600;
  color: #4f6f86;
}
.like-btn:not(.is-liked):hover {
  transform: scale(1.2);
}

