    :root {
      --cream: #ffffff; /* page bg (legacy name) */
      --cream-2: #f6f6f6;
      --surface: #ececec;
      --text: #0a0a0a;
      --muted: rgba(10, 10, 10, 0.55);
      --accent: #19c248;
      --accent-ink: #0f7a38;
      --lime: #9fe870;
      --black: #0a0a0a;
      --border: rgba(10, 10, 10, 0.08);
      --max: 1120px;
      --font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
      --font-ui: "Outfit", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
      --radius: 28px;
      --ease: cubic-bezier(0.22, 1, 0.36, 1);

      /* Type scale */
      --text-display-xl: clamp(40px, 6vw, 72px);
      --text-display-lg: clamp(32px, 4.5vw, 52px);
      --text-display-md: clamp(28px, 3.4vw, 40px);
      --text-display-sm: clamp(26px, 3.2vw, 34px);
      --text-display-xs: clamp(22px, 2.6vw, 28px);
      --text-quote: clamp(24px, 3vw, 36px);
      --text-lead: clamp(16px, 1.6vw, 19px);
      --text-body: 15px;
      --text-body-sm: 14px;
      --text-caption: 13px;
      --text-micro: 12px;

      /* Weights */
      --weight-display: 400;
      --weight-regular: 400;
      --weight-medium: 500;
      --weight-semibold: 600;
      --weight-bold: 700;
      --weight-heavy: 800;

      /* Line height & tracking */
      --leading-display: 1.08;
      --leading-tight: 1.15;
      --leading-snug: 1.35;
      --leading-body: 1.5;
      --leading-relaxed: 1.55;
      --leading-loose: 1.65;
      --track-display: -0.03em;
      --track-heading: -0.02em;
      --track-eyebrow: 0.06em;

      /* Spacing */
      --space-section-y: clamp(100px, 14vw, 160px);
      --space-head-content: 48px;
      --space-title-lead: 16px;
      --space-eyebrow-title: 16px;
      --space-hero-title: 28px;
      --space-hero-lead: 40px;
      --space-hero-bottom: clamp(64px, 6vw, 80px);
      --space-stack-sm: 12px;
      --space-stack-md: 16px;
      --space-stack-lg: 24px;
      --space-stack-xl: 32px;
      --space-card: 22px;
      --space-island: clamp(32px, 5vw, 48px);

      --pad-y: var(--space-section-y);
      --section-head-gap: var(--space-head-content);
      color-scheme: light;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 0;
      overflow-x: clip;
    }
    @media (max-width: 900px) {
      html {
        overscroll-behavior-y: auto;
        scroll-snap-type: none;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; scroll-snap-type: none !important; }
      .formats-track-inner,
      .site-footer__glow,
      .aud-glass-back,
      .aud-glass-mid,
      .aud-glass-front { animation: none !important; }
      *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    }
    @media (min-width: 901px) {
      html {
        scroll-snap-type: y mandatory;
      }
      .snap-panel {
        /* Fill at least one screen, but never clip taller content */
        min-height: 100svh;
        height: auto;
        max-height: none;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        padding: 96px 0 48px;
        overflow: visible;
      }
      .snap-panel > .wrap,
      .snap-panel > .feat-list-wrap {
        width: min(100% - 40px, var(--max));
        margin-inline: auto;
        flex: 0 1 auto;
        max-height: none;
        overflow: visible;
      }
      #footer.snap-panel {
        height: auto;
        min-height: 100svh;
        max-height: none;
        justify-content: space-between;
        padding: 96px 0 40px;
        overflow: visible;
        /* end-align so the dark finale can fully settle under the sticky header */
        scroll-snap-align: end;
      }
      /* Footer main must grow; generic .snap-panel > .wrap sets flex: 0 and pins it to the top */
      #footer.snap-panel > .site-footer__main {
        flex: 1 1 auto;
        justify-content: center;
        min-height: 0;
      }
      #footer.snap-panel > .site-footer__meta {
        flex: 0 0 auto;
      }
      /* Title blocks that need room: start from the top under the header */
      #why.snap-panel,
      #faq.snap-panel {
        justify-content: flex-start;
        padding-top: 112px;
      }
      #niches.snap-panel {
        justify-content: center;
        padding-top: 96px;
        padding-bottom: 48px;
      }
      /* Hero: first screen = copy (snap start). Video only peeks; next snap centers it. */
      #slide-hero {
        height: auto;
        min-height: 0;
        max-height: none;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        display: block;
        padding: clamp(88px, 12vw, 120px) 0 0;
        overflow: visible;
      }
      #slide-hero > .wrap {
        width: min(100% - 40px, var(--max));
        margin-inline: auto;
        max-height: none;
        overflow: visible;
      }
      #slide-hero .hero-copy {
        /* Fill the first viewport so only a slice of the video peeks below */
        min-height: calc(100svh - clamp(88px, 12vw, 120px) - clamp(120px, 18vh, 180px));
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: clamp(20px, 3vh, 32px);
      }
      #slide-hero .hero-vibe {
        scroll-snap-align: center;
        scroll-snap-stop: always;
      }
    }
    body {
      font-family: var(--font-ui);
      font-size: var(--text-body);
      background: var(--cream);
      color: var(--text);
      line-height: var(--leading-body);
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }
    img { display: block; max-width: 100%; }
    .wrap {
      width: min(100% - 40px, var(--max));
      margin-inline: auto;
    }

    /* Typography system — Instrument Serif (display) + Outfit (UI) */
    .eyebrow {
      display: inline-block;
      font-family: var(--font-ui);
      font-size: var(--text-caption);
      font-weight: var(--weight-bold);
      letter-spacing: var(--track-eyebrow);
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: var(--space-eyebrow-title);
    }
    h1, h2, h3 {
      font-family: var(--font-display);
      font-weight: var(--weight-display);
      letter-spacing: var(--track-display);
      line-height: var(--leading-display);
    }
    h1 { font-size: var(--text-display-xl); }
    h2 { font-size: var(--text-display-lg); }
    h3 {
      font-size: var(--text-display-sm);
      letter-spacing: var(--track-heading);
      line-height: var(--leading-tight);
    }
    .lead {
      font-family: var(--font-ui);
      font-size: var(--text-lead);
      line-height: var(--leading-relaxed);
      color: var(--muted);
      max-width: 34em;
      margin-inline: auto;
    }
    .type-body-sm {
      font-size: var(--text-body-sm);
      line-height: var(--leading-body);
    }
    .type-caption {
      font-family: var(--font-ui);
      font-size: var(--text-caption);
      font-weight: var(--weight-semibold);
      line-height: var(--leading-body);
      color: var(--muted);
    }
    .type-stat {
      font-family: var(--font-display);
      font-size: var(--text-display-xs);
      font-weight: var(--weight-display);
      letter-spacing: var(--track-heading);
      line-height: 1;
    }
    .card-title {
      font-family: var(--font-display);
      font-size: var(--text-display-sm);
      font-weight: var(--weight-display);
      letter-spacing: var(--track-heading);
      line-height: var(--leading-tight);
    }
    .accent { color: var(--accent); }
    .cta-accent { color: var(--accent); }
    .section {
      padding-block: var(--pad-y);
      background: #fff;
    }
    @media (min-width: 901px) {
      .section.snap-panel {
        padding: 96px 0 36px;
      }
      #footer.snap-panel {
        padding: 72px 0 40px;
      }
    }
    .section-alt { background: #fff; }
    .island {
      background: var(--surface, #ececec);
      border-radius: 32px;
      padding: var(--space-island);
      max-width: var(--max);
      margin-inline: auto;
    }
    .section-head {
      margin: 0 auto var(--section-head-gap);
      max-width: 720px;
      text-align: center;
    }
    .section-head h2 + .lead {
      margin-top: var(--space-title-lead);
    }
    .section-head .lead { margin-inline: auto; }

    /* Header */
    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      padding: 16px 20px 0;
      pointer-events: none;
    }
    .header-pill {
      pointer-events: auto;
      width: min(100%, 980px);
      margin-inline: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 10px 12px 10px 20px;
      border-radius: 9999px;
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid rgba(10, 10, 10, 0.08);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 10px 40px rgba(10, 10, 10, 0.05);
      transition:
        background 280ms var(--ease),
        border-color 280ms var(--ease),
        box-shadow 280ms var(--ease);
    }
    .header.is-over-dark .header-pill {
      background: rgba(17, 24, 39, 0.88);
      border-color: rgba(255, 255, 255, 0.12);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    }
    .logo {
      display: inline-flex;
      align-items: center;
      line-height: 0;
      flex-shrink: 0;
    }
    .logo-wordmark {
      display: block;
      width: auto;
      height: 24px;
      transition: filter 280ms var(--ease);
    }
    .header.is-over-dark .logo-wordmark {
      filter: brightness(0) invert(1);
    }
    .logo-wordmark.is-on-dark {
      filter: brightness(0) invert(1);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .header-nav {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .header-nav a {
      font-size: 13px;
      font-weight: 600;
      color: var(--muted);
      padding: 8px 10px;
      border-radius: 9999px;
      transition: color 160ms var(--ease), background 160ms var(--ease);
    }
    .header-nav a:hover { color: var(--text); background: rgba(28, 25, 23, 0.05); }
    .header.is-over-dark .header-nav a {
      color: rgba(255, 255, 255, 0.65);
    }
    .header.is-over-dark .header-nav a:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }
    .header-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 18px;
      border-radius: 9999px;
      background: var(--black);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      transition: background 160ms var(--ease), color 160ms var(--ease);
    }
    .header.is-over-dark .header-cta {
      background: #fff;
      color: #111827;
    }
    .header.is-over-dark .header-cta:hover {
      background: #f3f4f6;
    }
    .header-lang { position: relative; }
    .header-lang-btn {
      width: 40px;
      height: 40px;
      border-radius: 9999px;
      border: 1px solid var(--border);
      background: transparent;
      display: grid;
      place-items: center;
      cursor: pointer;
      color: var(--text);
      transition: color 160ms var(--ease), border-color 160ms var(--ease), background 160ms var(--ease);
    }
    .header.is-over-dark .header-lang-btn {
      border-color: rgba(255, 255, 255, 0.22);
      color: #fff;
    }
    .header.is-over-dark .header-lang-btn:hover {
      background: rgba(255, 255, 255, 0.08);
    }
    .header-lang-btn svg { width: 18px; height: 18px; }
    .header-lang-menu {
      position: absolute;
      right: 0;
      top: calc(100% + 8px);
      min-width: 168px;
      padding: 6px;
      border-radius: 16px;
      background: #fff;
      border: 1px solid var(--border);
      box-shadow: 0 16px 40px rgba(28, 25, 23, 0.12);
      list-style: none;
    }
    .header-lang-option {
      width: 100%;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 10px 12px;
      border: 0;
      border-radius: 12px;
      background: transparent;
      cursor: pointer;
      color: var(--text);
      font-weight: 600;
      font-size: 13px;
    }
    .header-lang-option:hover,
    .header-lang-option.is-active { background: rgba(30, 215, 96, 0.12); }
    .header-lang-option .short { color: var(--muted); }

    /* Buttons */
    .btn-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: var(--space-stack-lg);
      justify-content: center;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 12px 22px;
      border-radius: 9999px;
      font-weight: var(--weight-bold);
      font-size: var(--text-body);
      transition: transform 160ms var(--ease), background 160ms var(--ease);
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-accent { background: var(--lime); color: var(--black); }
    .btn-ghost {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text);
    }
    .calc-cta, .flow-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 12px 22px;
      border-radius: 9999px;
      background: var(--lime);
      color: var(--black);
      font-weight: 700;
      font-size: 15px;
      margin-top: 8px;
    }
    .calc-cta { align-self: center; margin-inline: auto; }

    /* Hero */
    #slide-hero {
      padding-top: clamp(88px, 12vw, 120px);
    }
    #slide-hero > .wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .hero-copy {
      max-width: 720px;
      width: 100%;
      margin: 0 auto var(--space-hero-bottom);
      text-align: center;
    }
    .hero-copy .eyebrow {
      margin-bottom: var(--space-eyebrow-title);
    }
    .hero-copy h1 {
      margin-bottom: var(--space-hero-title);
    }
    .hero-copy .lead {
      line-height: var(--leading-loose);
      max-width: 32em;
    }
    .hero-copy .btn-row {
      margin-top: var(--space-hero-lead);
    }

    /* Hero vibe video */
    .hero-vibe {
      position: relative;
      display: block;
      width: 100%;
      max-width: var(--max);
      margin: 0 auto;
      aspect-ratio: 16 / 9;
      border-radius: var(--radius);
      overflow: hidden;
      isolation: isolate;
      background: #0a0a0a;
      box-shadow: 0 22px 56px rgba(10, 10, 10, 0.16);
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }
    .hero-vibe__video {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: inherit;
      transform: translateZ(0);
    }
    .hero-vibe__shade {
      position: absolute;
      inset: 0;
      z-index: 1;
      border-radius: inherit;
      background: rgba(10, 10, 10, 0.22);
      pointer-events: none;
      transition: opacity 220ms var(--ease);
    }
    .hero-vibe.is-playing .hero-vibe__shade {
      opacity: 0;
    }
    .hero-vibe__play {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 2;
      width: 88px;
      height: 88px;
      margin: 0;
      padding: 0;
      border: 0;
      border-radius: 9999px;
      display: grid;
      place-items: center;
      background: rgba(32, 48, 54, 0.78);
      color: #fff;
      cursor: pointer;
      transform: translate(-50%, -50%);
      transition:
        opacity 220ms var(--ease),
        transform 220ms var(--ease),
        background 220ms var(--ease),
        box-shadow 220ms var(--ease);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    }
    .hero-vibe__play svg {
      width: 28px;
      height: 28px;
      fill: currentColor;
      margin-left: 3px;
    }
    .hero-vibe__play:hover {
      background: rgba(32, 48, 54, 0.92);
      transform: translate(-50%, -50%) scale(1.05);
    }
    .hero-vibe.is-playing:not(.is-unmuted) .hero-vibe__play {
      opacity: 0.55;
      pointer-events: auto;
      transform: translate(-50%, -50%) scale(0.92);
    }
    .hero-vibe.is-playing.is-unmuted .hero-vibe__play {
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, -50%) scale(0.92);
    }
    .hero-vibe:hover.is-playing .hero-vibe__play {
      opacity: 0.9;
      pointer-events: auto;
    }
    @media (max-width: 560px) {
      .hero-vibe {
        width: 100%;
        border-radius: 20px;
      }
      .hero-vibe__play {
        width: 64px;
        height: 64px;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-vibe__play,
      .hero-vibe__shade { transition: none; }
    }
    /* Legacy hero-duo kept for any leftover refs */
    .hero-duo {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      align-items: stretch;
      height: auto;
      min-height: 480px;
      max-height: 520px;
      max-width: 640px;
      margin-inline: auto;
    }
    .hero-card {
      border-radius: 28px;
      overflow: hidden;
      min-height: 0;
      height: 100%;
      box-shadow: none;
      border: 1px solid rgba(10, 10, 10, 0.04);
      position: relative;
      cursor: pointer;
    }
    .hero-card-screen {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 0;
      border-radius: inherit;
    }
    .hero-card-hover {
      position: absolute;
      inset: 0;
      z-index: 20;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 28px 20px;
      text-align: center;
      background: rgba(10, 10, 10, 0);
      opacity: 0;
      visibility: hidden;
      border-radius: inherit;
      transition:
        opacity 280ms var(--ease),
        background 280ms var(--ease),
        visibility 280ms var(--ease);
    }
    .hero-card-hover-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 24px;
      border-radius: 9999px;
      background: #fff;
      color: #0a0a0a;
      font-family: var(--font-ui);
      font-size: var(--text-body);
      font-weight: var(--weight-bold);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
      transition: transform 160ms var(--ease), filter 160ms var(--ease);
    }
    .hero-card-hover-btn:hover {
      transform: translateY(-1px);
      filter: brightness(0.97);
    }
    .hero-card-hover-text {
      margin: 0;
      max-width: 26em;
      font-family: var(--font-ui);
      font-size: var(--text-body-sm);
      line-height: var(--leading-relaxed);
      color: rgba(255, 255, 255, 0.92);
    }
    @media (hover: hover) {
      .hero-card:hover .hero-card-hover,
      .hero-card:focus-within .hero-card-hover {
        opacity: 1;
        visibility: visible;
        background: rgba(10, 10, 10, 0.78);
      }
    }
    .hero-card.is-open .hero-card-hover {
      opacity: 1;
      visibility: visible;
      background: rgba(10, 10, 10, 0.78);
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-card-hover { transition: none; }
    }
    .hero-card-app {
      background: #ececec;
      border: 1px solid rgba(10, 10, 10, 0.04);
      display: flex;
      flex-direction: column;
      align-items: stretch;
      padding: 0;
      overflow: hidden;
      box-sizing: border-box;
    }
    .hero-card-app .hero-card-screen {
      display: flex;
      flex-direction: column;
      padding: 16px 10px 0;
      box-sizing: border-box;
    }
    .app-shell {
      width: min(100%, 280px);
      flex: 0 0 auto;
      height: calc(100% - 16px);
      max-height: calc(100% - 16px);
      min-height: 0;
      margin-top: auto;
      margin-inline: auto;
      margin-bottom: 0;
      border-radius: 24px 24px 0 0;
      background: #f9f9f9;
      border: 1px solid rgba(28, 25, 23, 0.08);
      border-bottom: 0;
      box-shadow: 0 -4px 32px rgba(28, 25, 23, 0.08);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .app-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      padding: 12px 12px 8px;
      background: #fff;
      flex-shrink: 0;
    }
    .app-nav strong {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #222;
    }
    .app-nav img {
      width: 22px;
      height: 22px;
      display: block;
    }
    .app-scroll {
      flex: 1;
      min-height: 0;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 0 0 10px;
    }
    .app-profile {
      background: #fff;
      border-radius: 10px;
      margin: 0 6px;
      padding: 14px 12px 12px;
      display: grid;
      gap: 10px;
    }
    .app-profile-top {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .app-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      object-fit: cover;
      background: #fff;
      border: 1px solid rgba(28, 25, 23, 0.06);
      flex-shrink: 0;
    }
    .app-profile-meta strong {
      display: block;
      font-size: 15px;
      font-weight: 800;
      color: #222;
      letter-spacing: -0.03em;
      line-height: 1.2;
    }
    .app-profile-meta span,
    .app-profile-meta em {
      display: block;
      font-style: normal;
      font-size: 12px;
      color: #888;
      margin-top: 2px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .app-bio {
      font-size: 12px;
      line-height: 1.4;
      color: #222;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: calc(1.4em * 3);
    }
    .app-stats {
      display: flex;
      gap: 10px;
      font-size: 12px;
      color: #888;
    }
    .app-stats b { color: #111; font-weight: 700; }
    .app-socials {
      display: flex;
      gap: 8px;
      align-items: center;
    }
    .app-socials img {
      width: 18px;
      height: 18px;
      display: block;
      opacity: 0.75;
    }
    .app-events {
      background: #fff;
      border-radius: 10px;
      margin: 0 6px;
      padding: 12px;
      display: grid;
      gap: 10px;
      min-height: 0;
      flex: 1;
    }
    .app-events > strong {
      font-size: 14px;
      font-weight: 800;
      color: #222;
      letter-spacing: -0.02em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .app-event-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }
    .app-event {
      display: grid;
      gap: 6px;
      min-width: 0;
    }
    .app-event-cover {
      position: relative;
      aspect-ratio: 176 / 220;
      border-radius: 14px;
      overflow: hidden;
      background: #ddd;
    }
    .app-event-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .app-event-cover::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.42) 0%, transparent 32%, rgba(0,0,0,0.2) 78%, rgba(0,0,0,0.45) 100%);
      pointer-events: none;
    }
    .app-price {
      position: absolute;
      top: 6px;
      left: 6px;
      z-index: 1;
      background: #ffe8b2;
      color: #222;
      font-size: 10px;
      font-weight: 600;
      padding: 3px 6px;
      border-radius: 9999px;
      max-width: calc(100% - 36px);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .app-like {
      position: absolute;
      top: 6px;
      right: 6px;
      z-index: 1;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: rgba(0,0,0,0.35);
      display: grid;
      place-items: center;
    }
    .app-like img { width: 14px; height: 14px; display: block; }
    .app-metrics {
      position: absolute;
      left: 6px;
      bottom: 6px;
      z-index: 1;
      display: flex;
      gap: 4px;
    }
    .app-metrics span {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      background: rgba(255,255,255,0.24);
      backdrop-filter: blur(6px);
      color: #fff;
      font-size: 10px;
      padding: 2px 5px;
      border-radius: 9999px;
    }
    .app-metrics img { width: 12px; height: 12px; display: block; }
    .app-event h4 {
      font-size: 11px;
      font-weight: 700;
      color: #222;
      line-height: 1.25;
      letter-spacing: -0.02em;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: calc(1.25em * 2);
    }
    .app-event time {
      font-size: 10px;
      color: #888;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .app-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 3px;
      min-height: 22px;
      max-height: 22px;
      overflow: hidden;
    }
    .app-chips i {
      font-style: normal;
      font-size: 9px;
      color: #555;
      background: #f1f1f1;
      padding: 3px 5px;
      border-radius: 9999px;
      white-space: nowrap;
    }

    /* Calc shells */
    .calc-shell {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 28px;
      align-items: stretch;
      padding: 0;
      border-radius: 0;
      background: transparent;
      border: 0;
      box-shadow: none;
    }
    .island.calc-shell {
      width: 100%;
    }
    .calc-viz { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
    .calc-rate {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-align: center;
      flex-wrap: wrap;
    }
    .calc-rate span {
      font-size: var(--text-caption);
      font-weight: var(--weight-bold);
      color: var(--muted);
    }
    .calc-rate strong {
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 56px);
      letter-spacing: var(--track-display);
      line-height: 1;
    }
    .calc-rate.soft strong {
      color: var(--muted);
      font-size: var(--text-display-md);
    }
    .calc-chart {
      flex: 1;
      min-height: 180px;
      border-radius: 18px;
      background: rgba(28, 25, 23, 0.03);
      padding: 16px;
      display: flex;
      flex-direction: column;
    }
    .calc-chart svg { width: 100%; flex: 1; }
    .calc-chart .grid { stroke: rgba(28, 25, 23, 0.08); stroke-width: 1; }
    .line-bad { fill: none; stroke: #ef4444; stroke-width: 2.5; }
    .line-good { fill: none; stroke: var(--accent); stroke-width: 2.5; }
    .line-live { fill: none; stroke: var(--accent); stroke-width: 2.5; }
    .dot-good, .dot-live { fill: var(--accent); }
    .calc-chart-labels {
      display: flex;
      justify-content: space-between;
      margin-top: 8px;
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
    }
    .calc-viz-note {
      font-size: var(--text-caption);
      color: var(--muted);
    }
    .calc-side { display: flex; flex-direction: column; gap: 14px; text-align: center; }
    .calc-field {
      padding: 16px;
      border-radius: 16px;
      background: rgba(28, 25, 23, 0.03);
      border: 1px solid transparent;
    }
    .calc-field.muted { background: transparent; border-color: var(--border); }
    .calc-field-main {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      margin-bottom: 10px;
      text-align: center;
    }
    .calc-field-main strong {
      font-family: var(--font-display);
      font-size: var(--text-display-xs);
      font-weight: var(--weight-heavy);
      letter-spacing: var(--track-display);
      line-height: 1;
    }
    .calc-field-meta {
      font-size: var(--text-caption);
      color: var(--muted);
      font-weight: var(--weight-semibold);
    }
    .calc-field-sub {
      font-size: var(--text-caption);
      color: var(--muted);
    }
    input[type="range"] {
      width: 100%;
      height: 28px;
      margin: 0;
      accent-color: var(--accent);
      cursor: pointer;
      touch-action: pan-x;
      -webkit-appearance: none;
      appearance: none;
      background: transparent;
    }
    input[type="range"]::-webkit-slider-runnable-track {
      height: 4px;
      border-radius: 9999px;
      background: rgba(28, 25, 23, 0.16);
    }
    input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 18px;
      height: 18px;
      margin-top: -7px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid rgba(28, 25, 23, 0.22);
      box-shadow: 0 1px 4px rgba(10, 10, 10, 0.12);
    }
    input[type="range"]::-moz-range-track {
      height: 4px;
      border-radius: 9999px;
      background: rgba(28, 25, 23, 0.16);
    }
    input[type="range"]::-moz-range-thumb {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid rgba(28, 25, 23, 0.22);
      box-shadow: 0 1px 4px rgba(10, 10, 10, 0.12);
    }
    .calc-summary {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .calc-summary > div,
    .metric-card {
      padding: 14px 16px;
      border-radius: 14px;
      background: rgba(28, 25, 23, 0.03);
    }
    .metric-card {
      padding: 24px 16px;
    }
    .calc-summary > div {
      padding: 26px 18px;
    }
    .calc-summary .k,
    .metric-card .k {
      display: block;
      font-size: var(--text-micro);
      font-weight: var(--weight-semibold);
      color: var(--muted);
      margin-bottom: 6px;
    }
    .calc-summary .k {
      margin-bottom: 0;
    }
    .calc-summary > div,
    .metric-card {
      text-align: center;
      display: grid;
      gap: 6px;
      justify-items: center;
    }
    .calc-summary .v,
    .metric-card .v {
      font-family: var(--font-display);
      font-size: var(--text-display-xs);
      font-weight: var(--weight-heavy);
      letter-spacing: var(--track-heading);
      line-height: 1;
    }
    .calc-summary em {
      font-style: normal;
      font-size: var(--text-caption);
      font-weight: var(--weight-bold);
      color: var(--muted);
    }
    /* Fee calculator — controls left, outcomes right, savings full width */
    #why .section-head {
      margin-bottom: clamp(16px, 2.5vw, 28px);
    }
    #why .section-head h2 + .lead {
      margin-top: var(--space-title-lead);
    }
    .fees-board {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      grid-template-rows: minmax(148px, 1fr) minmax(148px, 1fr) auto auto;
      gap: 16px 20px;
      align-items: stretch;
      width: 100%;
      max-width: var(--max);
      margin-inline: auto;
      padding: 0 !important;
      background: transparent !important;
      border-radius: 0 !important;
      border: 0;
      box-shadow: none;
    }
    .fees-rail {
      display: contents;
    }
    .island.calc-shell.fees-board {
      background: transparent;
      padding: 0;
      border-radius: 0;
      max-width: var(--max);
    }
    .fees-controls,
    .fees-outcomes {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: 1 / span 2;
      gap: 16px;
      min-width: 0;
      min-height: 0;
      height: auto;
    }
    .fees-controls { grid-column: 1; }
    .fees-outcomes { grid-column: 2; }
    .calc-sliders,
    .fees-result {
      display: contents;
    }
    .fees-result-arrow {
      display: none;
    }
    .fees-result-card {
      padding: var(--space-card);
      border-radius: var(--radius);
      background: var(--surface);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-sizing: border-box;
      min-height: 0;
      height: 100%;
    }
    .fees-result-card.is-you {
      background: rgba(30, 215, 96, 0.12);
    }
    .fees-result-card.is-bad {
      background: rgba(239, 68, 68, 0.08);
    }
    .fees-result-card span {
      font-size: var(--text-caption);
      font-weight: var(--weight-bold);
      color: var(--muted);
    }
    .fees-result-card.is-you span { color: var(--accent-ink); }
    .fees-result-card.is-bad span { color: #b91c1c; }
    .fees-result-card.is-bad strong { color: #dc2626; }
    .fees-result-card strong {
      font-family: var(--font-display);
      font-size: clamp(32px, 4.2vw, 44px);
      letter-spacing: var(--track-display);
      line-height: 1;
    }
    .fees-result-card em {
      font-style: normal;
      font-size: var(--text-caption);
      font-weight: 700;
      color: var(--muted);
    }
    .fees-panel { width: 100%; }
    .fees-board .calc-field {
      background: var(--surface);
      border-radius: var(--radius);
      padding: var(--space-card);
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: stretch;
      min-height: 0;
      height: 100%;
    }
    .fees-board .calc-field-main {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
      gap: 8px;
    }
    .fees-board .calc-field-main strong {
      font-family: var(--font-display);
      font-size: clamp(32px, 4.2vw, 44px);
      letter-spacing: var(--track-display);
      line-height: 1;
    }
    .fees-board .calc-field input[type="range"] {
      flex-shrink: 0;
      width: 100%;
      margin-top: auto;
    }
    .fees-breakdown {
      grid-column: 1 / -1;
      grid-row: 3;
      margin: 0;
      width: 100%;
      box-sizing: border-box;
      padding: 14px 18px;
      border-radius: var(--radius);
      background: var(--surface);
      font-size: var(--text-caption);
      line-height: 1.45;
      color: var(--muted);
      text-align: center;
    }
    .fees-breakdown strong {
      color: var(--text);
      font-weight: 800;
    }
    .fees-breakdown em {
      font-style: normal;
      font-weight: 700;
    }
    .fees-breakdown-math {
      font-weight: 700;
      color: var(--text);
    }
    .fees-savings {
      grid-column: 1 / -1;
      grid-row: 4;
      gap: 12px;
    }
    .fees-savings > div {
      background: var(--surface);
      border-radius: var(--radius);
    }

    @media (max-width: 760px) {
      .fees-board {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: minmax(132px, 1fr) minmax(132px, 1fr) auto auto;
        gap: 10px;
      }
      .fees-controls,
      .fees-outcomes {
        gap: 10px;
      }
      .fees-result-arrow {
        display: none;
      }
    }
    @media (max-width: 560px) {
      .fees-result-arrow {
        display: none;
      }
    }

    @media (max-width: 900px) {
      .aud-cards {
        grid-template-columns: 1fr;
      }
    }

    /* Conversion — chart on top, metrics below */
    .live-conv.calc-shell,
    #conversion .island.live-conv {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 20px;
      grid-template-columns: none;
      max-width: min(100%, 1180px);
      width: 100%;
      margin-inline: auto;
      box-sizing: border-box;
    }
    .live-conv .calc-viz { gap: 16px; width: 100%; }
    .calc-rate .rate small { font-size: 0.45em; }
    .live-filters {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 6px;
      margin: 4px 0 2px;
    }
    .live-filter {
      border: 0;
      cursor: pointer;
      font: inherit;
      font-size: 12px;
      font-weight: 700;
      color: var(--muted);
      background: rgba(28, 25, 23, 0.05);
      padding: 8px 14px;
      border-radius: 9999px;
      transition: background 160ms var(--ease), color 160ms var(--ease);
    }
    .live-filter:hover { color: var(--text); background: rgba(28, 25, 23, 0.08); }
    .live-filter.is-active {
      color: var(--accent-ink);
      background: rgba(30, 215, 96, 0.16);
    }
    .live-conv .calc-chart-live {
      flex: 0 0 auto;
      min-height: 0;
      height: auto;
      padding: 22px 24px 18px;
    }
    .live-conv .calc-chart-live svg {
      flex: none;
      height: 112px;
      width: 100%;
    }
    /* Desktop: 5 metrics in one row (do not change for mobile adapters) */
    #conversion .metric-grid,
    .live-conv .metric-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 14px;
      width: 100%;
      align-items: start;
    }
    #conversion .metric-card {
      min-height: 0;
      height: auto;
    }
    .live-actions { display: flex; justify-content: center; margin-top: 4px; }

    /* Audience */
    .aud-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .aud-card {
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.35);
      background: rgba(255, 255, 255, 0.55);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      min-height: 420px;
      display: flex;
      flex-direction: column;
    }
    .aud-card-mesh {
      background:
        radial-gradient(circle at 20% 20%, rgba(159, 232, 112, 0.35), transparent 40%),
        radial-gradient(circle at 80% 10%, rgba(30, 215, 96, 0.18), transparent 35%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(247, 244, 239, 0.9));
    }
    .aud-card-stack {
      background:
        linear-gradient(160deg, rgba(28, 25, 23, 0.92), rgba(28, 25, 23, 0.82)),
        #1c1917;
      color: #fff;
      border-color: rgba(255, 255, 255, 0.08);
    }
    .aud-visual {
      flex: 1;
      padding: 28px;
      display: grid;
      place-items: center;
    }
    .aud-icons {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      width: min(100%, 260px);
    }
    .aud-icon {
      aspect-ratio: 1;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.55);
      border: 1px solid rgba(28, 25, 23, 0.06);
      color: var(--text);
    }
    .aud-icon svg { width: 24px; height: 24px; }
    .aud-stack {
      position: relative;
      width: min(100%, 240px);
      height: 200px;
    }
    .aud-glass {
      position: absolute;
      inset: auto 0 0;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      padding: 16px;
    }
    .aud-glass-back { height: 160px; transform: translateY(-28px) scale(0.92); opacity: 0.45; }
    .aud-glass-mid { height: 150px; transform: translateY(-14px) scale(0.96); opacity: 0.7; }
    .aud-glass-front { height: 150px; display: grid; gap: 8px; align-content: start; }
    .aud-pill {
      display: inline-flex;
      width: fit-content;
      padding: 4px 10px;
      border-radius: 9999px;
      font-size: 11px;
      font-weight: 700;
      background: rgba(255, 255, 255, 0.12);
    }
    .aud-pill.accent { background: rgba(30, 215, 96, 0.2); color: var(--lime); }
    .aud-pill.soft { color: rgba(255, 255, 255, 0.7); }
    .aud-glass-lines { display: grid; gap: 6px; margin-top: 18px; }
    .aud-glass-lines i {
      display: block; height: 6px; border-radius: 9999px;
      background: rgba(255, 255, 255, 0.12);
    }
    .aud-glass-lines i:nth-child(1) { width: 80%; }
    .aud-glass-lines i:nth-child(2) { width: 60%; }
    .aud-glass-lines i:nth-child(3) { width: 70%; }
    .aud-glass-front strong { font-size: 16px; }
    .aud-glass-front ul { list-style: none; font-size: 13px; color: rgba(255, 255, 255, 0.65); display: grid; gap: 4px; }
    .aud-copy { padding: 0 28px 28px; text-align: center; }
    .aud-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      color: var(--accent-ink);
      background: rgba(30, 215, 96, 0.14);
      padding: 4px 10px;
      border-radius: 9999px;
      margin-bottom: 12px;
    }
    .aud-tag.dark { background: rgba(255, 255, 255, 0.1); color: var(--lime); }
    .aud-copy h3 {
      margin-bottom: 10px;
    }
    .aud-copy p {
      color: var(--muted);
      font-size: var(--text-body);
    }
    .aud-card-stack .aud-copy p { color: rgba(255, 255, 255, 0.65); }
    .aud-glass-front { text-align: center; justify-items: center; }
    .aud-glass-front ul { justify-items: center; }
    .aud-glass-lines { justify-items: center; }
    .aud-glass-lines i:nth-child(1),
    .aud-glass-lines i:nth-child(2),
    .aud-glass-lines i:nth-child(3) { margin-inline: auto; }

    /* Flow — steps left, pitch + CTA right */
    #flow .flow-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
      column-gap: clamp(40px, 6vw, 72px);
      align-items: stretch;
    }
    #flow .flow-steps {
      display: grid;
      gap: clamp(12px, 1.6vw, 16px);
      width: 100%;
      max-width: 560px;
      align-self: stretch;
    }
    #flow .flow-step {
      display: flex;
      flex-direction: row;
      gap: 18px;
      align-items: center;
      padding: 0;
      border: 0;
      background: transparent;
      text-align: left;
    }
    #flow .flow-ico {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: rgba(28, 25, 23, 0.06);
      color: var(--text);
      flex-shrink: 0;
    }
    #flow .flow-ico svg { width: 22px; height: 22px; }
    #flow .flow-step-copy {
      min-width: 0;
      font-size: var(--text-body);
      line-height: var(--leading-relaxed);
      color: var(--muted);
      padding-top: 0;
    }
    #flow .flow-step-copy strong {
      color: var(--text);
      font-weight: var(--weight-bold);
    }
    .flow-soon {
      display: inline-block;
      font-style: normal;
      font-size: 11px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 9999px;
      background: rgba(28, 25, 23, 0.06);
      color: var(--muted);
      vertical-align: middle;
    }
    #flow .flow-pitch {
      display: flex;
      flex-direction: column;
      min-height: 0;
      align-self: stretch;
      height: 100%;
    }
    #flow .flow-pitch-frame {
      background: var(--surface);
      border-radius: 28px;
      padding: clamp(36px, 5vw, 48px);
      display: flex;
      flex: 1 1 auto;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 100%;
      height: 100%;
    }
    #flow .flow-pitch h2 {
      max-width: min(20em, 100%);
      margin-inline: auto;
      text-wrap: balance;
    }
    #flow .flow-pitch .lead {
      margin: var(--space-title-lead) 0 0;
      text-align: center;
      max-width: 28em;
    }
    #flow .flow-pitch .flow-cta {
      margin-top: clamp(28px, 4vw, 36px);
      min-width: min(100%, 280px);
    }
    #flow .flow-cta {
      display: inline-flex;
      margin-inline: auto;
    }
    .flow-cta:hover { filter: brightness(0.97); transform: translateY(-1px); }
    @media (max-width: 960px) {
      #flow .flow-layout {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      #flow .flow-steps {
        max-width: none;
      }
      #flow .flow-pitch { order: -1; min-height: auto; height: auto; }
      #flow .flow-pitch-frame {
        align-items: center;
        text-align: center;
        flex: none;
        min-height: clamp(240px, 52vw, 320px);
        height: auto;
      }
      #flow .flow-pitch h2,
      #flow .flow-pitch .lead {
        text-align: center;
        margin-inline: auto;
        max-width: none;
      }
      #flow .flow-pitch h2 { max-width: none; }
      #flow .flow-cta { margin-inline: auto; }
      #flow .flow-step { text-align: left; }
    }

    /* Features list: sticky section title + alternating rows */
    .section--feat-list {
      padding-block: var(--pad-y) clamp(64px, 8vw, 100px);
      background: #fff;
      color: var(--text);
      overflow: visible;
    }
    .feat-list-wrap {
      max-width: 1120px;
      position: relative;
    }
    .section--feat-list .feat-list {
      display: grid;
      gap: clamp(64px, 9vw, 112px);
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .feat-row {
      display: grid;
      grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.35fr);
      gap: clamp(32px, 5vw, 56px);
      align-items: center;
      --feat-copy-gap: clamp(32px, 5vw, 48px);
    }
    @media (min-width: 901px) {
      .section--feat-list {
        padding-block: 24px 0;
      }
      .section--feat-list .feat-list {
        gap: 0;
      }
      .feat-row.snap-panel {
        display: grid;
        grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.35fr);
        align-items: center;
        align-content: center;
        justify-content: center;
        justify-items: stretch;
        width: 100%;
        height: auto;
        min-height: 100svh;
        max-height: none;
        /* Equal padding so the row stays optically centered under the sticky header */
        padding-block: clamp(96px, 14vh, 140px);
        padding-inline: 0;
        overflow: visible;
        scroll-snap-align: start;
        box-sizing: border-box;
      }
      .feat-row.is-flip.snap-panel {
        grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.85fr);
      }
    }
    .feat-row.is-flip {
      grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.85fr);
    }
    .feat-row.is-flip .feat-row__copy { order: 2; }
    .feat-row.is-flip .feat-row__visual { order: 1; }
    .feat-row.is-flip .feat-row__copy { text-align: left; }
    .feat-row__tag {
      display: inline-block;
      margin-bottom: 14px;
      font-family: var(--font-ui);
      font-size: var(--text-caption);
      font-weight: var(--weight-bold);
      letter-spacing: var(--track-eyebrow);
      text-transform: uppercase;
      color: var(--muted);
    }
    .feat-row__title {
      margin: 0 0 20px;
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 48px);
      font-weight: var(--weight-display);
      line-height: 1.08;
      letter-spacing: var(--track-heading);
      max-width: min(22em, 100%);
      color: var(--text);
      text-wrap: balance;
      overflow-wrap: normal;
      word-break: normal;
      hyphens: none;
    }
    .feat-row__desc {
      margin: 0 0 8px;
      font-size: var(--text-lead);
      line-height: var(--leading-relaxed);
      color: var(--muted);
      max-width: 32em;
    }
    .feat-row__visual {
      min-width: 0;
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--cream-2);
      border: 1px solid var(--border);
      box-shadow: 0 18px 48px rgba(10, 10, 10, 0.06);
      min-height: 420px;
      height: 420px;
    }
    .feat-row__visual .fp-browser {
      height: 100%;
    }
    .fp-browser > :not(.fp-browser__chrome) {
      flex: 1 1 auto;
      min-height: 0;
    }
    .fp-crm,
    .fp-refund,
    .fp-invite {
      height: auto;
    }

    .fp-browser {
      height: 100%;
      display: flex;
      flex-direction: column;
      background: #fff;
      color: var(--text);
      border-radius: inherit;
      overflow: hidden;
    }
    .fp-browser__chrome {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 14px;
      background: var(--cream-2);
      border-bottom: 1px solid var(--border);
    }
    .fp-browser__dots {
      width: 42px;
      height: 10px;
      border-radius: 999px;
      background:
        radial-gradient(circle at 5px 5px, #ff5f57 4px, transparent 5px),
        radial-gradient(circle at 21px 5px, #febc2e 4px, transparent 5px),
        radial-gradient(circle at 37px 5px, #28c840 4px, transparent 5px);
      flex: 0 0 auto;
    }
    .fp-browser__url {
      flex: 1;
      min-width: 0;
      padding: 6px 12px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--border);
      font-size: 12px;
      color: var(--muted);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .fp-showcase {
      flex: 1;
      min-height: 0;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      background: #fff;
    }
    .fp-showcase__main {
      padding: clamp(18px, 2.4vw, 28px);
      display: flex;
      flex-direction: column;
      gap: 10px;
      justify-content: center;
      border-right: 1px solid var(--border);
      min-width: 0;
    }
    .fp-showcase__side {
      padding: clamp(16px, 2vw, 24px);
      display: flex;
      flex-direction: column;
      gap: 12px;
      justify-content: center;
      background: var(--cream-2);
      min-width: 0;
    }
    .fp-showcase__badge {
      align-self: flex-start;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(30, 215, 96, 0.14);
      color: var(--accent-ink);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .fp-showcase__title {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(28px, 3vw, 40px);
      font-weight: var(--weight-display);
      line-height: 1.05;
      letter-spacing: var(--track-heading);
      color: var(--text);
    }
    .fp-showcase__meta {
      margin: 0;
      color: var(--muted);
      font-size: var(--text-body-sm);
    }
    .fp-showcase__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 2px;
    }
    .fp-showcase__chips span {
      padding: 5px 10px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--border);
      font-size: 12px;
      font-weight: 600;
      color: var(--text);
    }
    .fp-showcase__price {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-top: 6px;
    }
    .fp-showcase__price strong {
      font-family: var(--font-display);
      font-size: clamp(28px, 3vw, 36px);
      font-weight: var(--weight-display);
      letter-spacing: var(--track-display);
      line-height: 1;
      color: var(--text);
    }
    .fp-showcase__price span {
      color: var(--muted);
      font-size: 13px;
    }
    .fp-showcase__cta {
      margin-top: 8px;
      border: 0;
      border-radius: 999px;
      padding: 12px 18px;
      background: var(--black);
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      cursor: default;
      width: fit-content;
    }
    .fp-showcase__stat {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 12px;
      font-size: 13px;
      color: var(--muted);
    }
    .fp-showcase__stat strong {
      color: var(--text);
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: var(--weight-display);
      letter-spacing: var(--track-display);
    }
    .fp-showcase__link {
      margin-top: 4px;
      padding: 10px 12px;
      border-radius: 14px;
      background: #fff;
      border: 1px solid var(--border);
      display: grid;
      gap: 4px;
    }
    .fp-showcase__link > span {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .fp-showcase__link code {
      font-family: var(--font-ui);
      font-size: 13px;
      color: var(--text);
    }
    .fp-showcase__copied {
      font-style: normal;
      font-size: 12px;
      font-weight: 700;
      color: var(--accent-ink);
    }
    .fp-showcase__share {
      display: flex;
      gap: 8px;
      margin-top: 2px;
    }
    .fp-showcase__share span {
      width: 36px;
      height: 28px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: #fff;
      border: 1px solid var(--border);
      font-size: 10px;
      font-weight: 700;
      color: var(--muted);
    }
    .fp-showcase.is-copied .fp-showcase__copied { display: inline; }
    .fp-showcase.is-copied .fp-showcase__link {
      border-color: rgba(30, 215, 96, 0.45);
    }

    /* Staged UI reveal inside feature mocks */
    .fp-stage {
      transition:
        opacity 420ms var(--ease),
        transform 420ms var(--ease);
    }
    .is-demo-ready .fp-stage:not(.is-in) {
      opacity: 0;
      transform: translateY(10px);
      pointer-events: none;
    }
    .is-demo-ready .fp-stage.is-in {
      opacity: 1;
      transform: none;
      pointer-events: auto;
    }
    @media (prefers-reduced-motion: reduce) {
      .is-demo-ready .fp-stage:not(.is-in),
      .is-demo-ready .fp-stage.is-in {
        opacity: 1;
        transform: none;
        transition: none;
        pointer-events: auto;
      }
    }

    /* Feature 2 — Checkout / payment */
    .feat-row[data-feat="pay"] .feat-row__visual {
      height: 460px;
      min-height: 460px;
    }
    .feat-row[data-feat="scanner"] .feat-row__visual {
      height: 460px;
      min-height: 460px;
    }
    .fp-pay {
      flex: 1;
      min-height: 0;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      background: #fff;
    }
    .fp-browser:has(.fp-pay) { min-height: 0; }
    .fp-browser:has(.fp-pay) .fp-browser__chrome + .fp-pay,
    .fp-pay { height: calc(100% - 0px); }
    .fp-pay__main {
      padding: clamp(14px, 1.8vw, 22px);
      display: flex;
      flex-direction: column;
      gap: 10px;
      border-right: 1px solid var(--border);
      min-width: 0;
      min-height: 0;
      overflow: hidden;
      position: relative;
    }
    .fp-pay__checkout {
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
      min-height: 0;
      transition: opacity 280ms var(--ease), transform 280ms var(--ease);
    }
    .fp-pay.is-paid .fp-pay__checkout {
      opacity: 0;
      transform: translateY(-8px);
      pointer-events: none;
      position: absolute;
      inset: clamp(14px, 1.8vw, 22px);
    }
    .fp-pay__head {
      display: grid;
      gap: 2px;
    }
    .fp-pay__head > span {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .fp-pay__head strong {
      font-family: var(--font-display);
      font-size: clamp(22px, 2.4vw, 30px);
      font-weight: var(--weight-display);
      letter-spacing: var(--track-heading);
      color: var(--text);
    }
    .fp-pay__fields {
      display: grid;
      gap: 6px;
    }
    .fp-pay__fields label {
      display: grid;
      gap: 2px;
      padding: 8px 12px;
      border-radius: 12px;
      background: var(--cream-2);
      border: 1px solid var(--border);
    }
    .fp-pay__fields span {
      font-size: 11px;
      color: var(--muted);
      font-weight: 600;
    }
    .fp-pay__value {
      display: block;
      font-style: normal;
      font-weight: 600;
      font-size: 15px;
      line-height: 1.3;
      color: #0a0a0a;
      min-height: 1.3em;
    }
    .fp-pay__value.is-typing::after {
      content: "";
      display: inline-block;
      width: 1.5px;
      height: 0.95em;
      margin-left: 2px;
      background: #0a0a0a;
      vertical-align: -2px;
      animation: fp-caret 0.8s steps(1) infinite;
    }
    @keyframes fp-caret {
      50% { opacity: 0; }
    }
    .fp-pay__methods {
      display: grid;
      gap: 6px;
    }
    .fp-pay__methods-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .fp-pay__method {
      display: grid;
      grid-template-columns: 18px 1fr auto;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: #fff;
      color: var(--text);
      text-align: left;
      cursor: default;
      transition: border-color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease);
    }
    .fp-pay__method i {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      border: 1.5px solid rgba(10, 10, 10, 0.25);
      box-sizing: border-box;
      transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease);
    }
    .fp-pay__method.is-on {
      border-color: rgba(30, 215, 96, 0.45);
      background: rgba(30, 215, 96, 0.08);
    }
    .fp-pay__method.is-on i {
      border-color: #19c248;
      box-shadow: inset 0 0 0 3.5px #19c248;
    }
    .fp-pay__method strong { font-size: 14px; }
    .fp-pay__method span {
      font-size: 12px;
      color: var(--muted);
    }
    .fp-pay__cta {
      width: 100%;
      margin-top: 4px;
      border: 0;
      border-radius: 999px;
      padding: 12px 16px;
      background: var(--black);
      color: #fff;
      font-weight: 800;
      font-size: 14px;
      cursor: default;
      transition: transform 180ms var(--ease), opacity 180ms var(--ease);
    }
    .fp-pay__cta.is-busy {
      opacity: 0.55;
      pointer-events: none;
    }
    .fp-pay__cta.is-hidden { display: none; }
    .fp-pay.is-paid .fp-pay__cta { display: none; }
    .fp-pay__success {
      flex: 1;
      align-self: stretch;
      width: 100%;
      min-height: 0;
      margin: 0;
      display: grid;
      place-content: center;
      justify-items: center;
      gap: 10px;
      text-align: center;
      padding: clamp(24px, 4vh, 40px) 16px;
      border-radius: 18px;
      background: rgba(30, 215, 96, 0.1);
      border: 1px solid rgba(30, 215, 96, 0.28);
      box-sizing: border-box;
      opacity: 0;
      transform: scale(0.98);
      transition: opacity 360ms var(--ease), transform 360ms var(--ease);
    }
    .fp-pay__success[hidden] { display: none !important; }
    .fp-pay.is-paid .fp-pay__success {
      opacity: 1;
      transform: scale(1);
    }
    .fp-pay__ok {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(30, 215, 96, 0.2);
      color: var(--accent-ink);
      font-size: 22px;
      font-weight: 700;
    }
    .fp-pay__success strong {
      font-size: 20px;
      color: var(--text);
    }
    .fp-pay__success em {
      font-style: normal;
      font-size: 14px;
      color: var(--accent-ink);
    }
    .fp-pay__side {
      padding: clamp(14px, 1.8vw, 22px);
      display: flex;
      flex-direction: column;
      gap: 10px;
      background: var(--cream-2);
      min-height: 0;
    }
    .fp-pay__row {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: baseline;
      font-size: 13px;
      color: var(--muted);
    }
    .fp-pay__row strong {
      color: var(--text);
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: var(--weight-display);
      letter-spacing: var(--track-display);
      font-variant-numeric: tabular-nums;
    }
    .fp-pay__row.is-guest {
      padding-top: 10px;
      border-top: 1px solid var(--border);
      color: var(--text);
    }
    .fp-pay__you {
      margin-top: auto;
      padding: 14px;
      border-radius: 16px;
      background: rgba(30, 215, 96, 0.12);
      display: grid;
      gap: 4px;
      justify-items: center;
      text-align: center;
      transform: scale(0.98);
      opacity: 0.65;
      transition: transform 320ms var(--ease), opacity 320ms var(--ease), box-shadow 320ms var(--ease);
    }
    .is-demo-ready .fp-pay__you:not(.is-in) {
      display: none;
    }
    .fp-pay__you.is-glow {
      transform: scale(1);
      opacity: 1;
      box-shadow: 0 0 0 1px rgba(30, 215, 96, 0.35), 0 12px 32px rgba(30, 215, 96, 0.12);
    }
    .fp-pay__you span {
      font-size: 12px;
      font-weight: 700;
      color: var(--accent-ink);
    }
    .fp-pay__you strong {
      font-family: var(--font-display);
      font-size: clamp(26px, 2.8vw, 34px);
      font-weight: var(--weight-display);
      letter-spacing: var(--track-display);
      color: var(--text);
      line-height: 1;
    }

    /* Feature 3 — CRM */
    .fp-crm {
      height: auto;
      flex: 1 1 auto;
      min-height: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 16px;
      background: #fff;
      position: relative;
    }
    .fp-crm__toolbar {
      display: flex;
      gap: 10px;
      align-items: center;
    }
    .fp-crm__search {
      flex: 1;
      min-width: 0;
      padding: 10px 12px;
      border-radius: 12px;
      background: var(--cream-2);
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: 12px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      line-height: 1.3;
    }
    .fp-crm__export {
      border: 0;
      border-radius: 999px;
      padding: 10px 14px;
      background: var(--black);
      color: #fff;
      font-weight: 700;
      font-size: 12px;
      cursor: default;
      white-space: nowrap;
    }
    .fp-crm__table {
      display: grid;
      gap: 6px;
      overflow: auto;
    }
    .fp-crm__head,
    .fp-crm__row {
      display: grid;
      grid-template-columns: 1.4fr 0.8fr 0.5fr 0.7fr;
      gap: 10px;
      align-items: center;
      padding: 10px 12px;
      border-radius: 12px;
    }
    .fp-crm__head {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .fp-crm__row {
      background: var(--cream-2);
      border: 1px solid var(--border);
      font-size: 13px;
    }
    .fp-crm__row strong { color: var(--text); display: block; }
    .fp-crm__row em { font-style: normal; color: rgba(10,10,10,0.62); font-size: 11px; }
    .fp-crm__row .is-money { color: var(--accent-ink); font-family: var(--font-display); font-size: 16px; }
    .fp-crm__row b {
      justify-self: start;
      padding: 3px 8px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 700;
    }
    .fp-crm__row b.is-ok { background: rgba(30,215,96,0.14); color: var(--accent-ink); }
    .fp-crm__row b.is-vip { background: rgba(10,10,10,0.06); color: var(--text); }
    .fp-crm__row b.is-mute { background: rgba(10,10,10,0.04); color: var(--muted); }
    .fp-crm__toast {
      position: absolute;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(30,215,96,0.14);
      border: 1px solid rgba(30,215,96,0.35);
      color: var(--accent-ink);
      font-size: 12px;
      font-weight: 700;
    }
    .fp-crm__toast[hidden] { display: none !important; }

    /* Feature 4 — Refund */
    .fp-refund {
      height: auto;
      flex: 1 1 auto;
      min-height: 0;
      display: grid;
      place-items: center;
      padding: 24px;
      background: #fff;
      position: relative;
    }
    .fp-refund__card {
      width: min(100%, 420px);
      display: grid;
      gap: 16px;
      padding: 22px;
      border-radius: 20px;
      background: var(--cream-2);
      border: 1px solid var(--border);
    }
    .fp-refund__top {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: flex-start;
    }
    .fp-refund__top span {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
    }
    .fp-refund__top strong { display: block; font-size: 18px; margin-bottom: 4px; color: var(--text); }
    .fp-refund__top em { font-style: normal; font-size: 12px; color: var(--muted); }
    .fp-refund__status {
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(30,215,96,0.14);
      color: var(--accent-ink);
      font-size: 11px;
      font-weight: 700;
      white-space: nowrap;
    }
    .fp-refund__status.is-done {
      background: rgba(239,68,68,0.12);
      color: #b91c1c;
    }
    .fp-refund__amount {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding-top: 8px;
      border-top: 1px solid var(--border);
    }
    .fp-refund__amount span { color: var(--muted); font-size: 13px; }
    .fp-refund__amount strong {
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: var(--weight-display);
      letter-spacing: var(--track-display);
      color: var(--text);
    }
    .fp-refund__btn,
    .fp-refund__confirm {
      border: 0;
      border-radius: 999px;
      padding: 12px 16px;
      font-weight: 800;
      font-size: 14px;
      cursor: default;
    }
    .fp-refund__btn { background: var(--black); color: #fff; }
    .fp-refund__btn.is-hidden { display: none; }
    .fp-refund__sheet {
      position: absolute;
      inset: auto 24px 24px;
      padding: 16px;
      border-radius: 16px;
      background: #fff;
      border: 1px solid var(--border);
      box-shadow: 0 16px 40px rgba(10, 10, 10, 0.08);
      display: grid;
      gap: 10px;
      justify-items: stretch;
    }
    .fp-refund__sheet[hidden] { display: none !important; }
    .fp-refund__sheet p { margin: 0; text-align: center; color: var(--muted); }
    .fp-refund__confirm { background: #ef4444; color: #fff; }

    /* Feature 5 — VIP invites */
    .fp-invite {
      height: auto;
      flex: 1 1 auto;
      min-height: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 16px;
      background: #fff;
    }
    .fp-invite__bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    .fp-invite__bar strong {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: var(--weight-display);
      color: var(--text);
    }
    .fp-invite__add {
      border: 0;
      border-radius: 999px;
      padding: 10px 14px;
      background: var(--black);
      color: #fff;
      font-weight: 700;
      font-size: 12px;
      cursor: default;
    }
    .fp-invite__list {
      display: flex;
      flex-direction: column;
      gap: 8px;
      overflow: auto;
      flex: 1;
      min-height: 0;
      align-content: flex-start;
    }
    .fp-invite__item {
      display: grid;
      grid-template-columns: 36px minmax(0, 1fr) auto auto;
      gap: 10px;
      align-items: center;
      padding: 10px 12px;
      border-radius: 14px;
      background: var(--cream-2);
      border: 1px solid var(--border);
      flex: 0 0 auto;
    }
    .fp-invite__item.is-new {
      animation: feat-row-in 420ms var(--ease) both;
      border-color: rgba(30,215,96,0.45);
    }
    .fp-invite__ava {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      align-self: center;
      background: rgba(10,10,10,0.06);
      font-weight: 700;
      color: var(--text);
      line-height: 1;
    }
    .fp-invite__item > div {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 2px;
      min-width: 0;
    }
    .fp-invite__item strong { display: block; font-size: 13px; color: var(--text); line-height: 1.25; }
    .fp-invite__item em { font-style: normal; font-size: 11px; color: rgba(10,10,10,0.62); line-height: 1.25; }
    .fp-invite__item b {
      padding: 3px 8px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 700;
      background: rgba(10,10,10,0.06);
      color: var(--text);
      align-self: center;
      line-height: 1.2;
    }
    .fp-invite__item b.is-vip { background: rgba(10,10,10,0.08); }
    .fp-invite__item b.is-invited { background: rgba(59,130,246,0.12); color: #1d4ed8; }
    .fp-invite__item b.is-ok { background: rgba(30,215,96,0.14); color: var(--accent-ink); }

    /* Feature 6 — Scanner */
    .fp-scan {
      flex: 1 1 auto;
      min-height: 0;
      height: auto;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      background: #fff;
    }
    .fp-scan__stage {
      display: grid;
      place-content: center;
      justify-items: center;
      align-content: center;
      gap: 10px;
      padding: 16px 16px 20px;
      border-right: 1px solid var(--border);
      min-height: 0;
      box-sizing: border-box;
    }
    .fp-scan__frame {
      width: min(68%, 190px);
      aspect-ratio: auto;
      border-radius: 16px;
      border: 2px solid rgba(10,10,10,0.16);
      overflow: hidden;
      position: relative;
      background: #fff;
      padding: 12px;
      box-sizing: border-box;
      transition: border-color 240ms var(--ease), box-shadow 240ms var(--ease), transform 500ms var(--ease);
    }
    .fp-scan__frame.is-ok { border-color: #19c248; box-shadow: 0 0 0 4px rgba(30,215,96,0.16); }
    .fp-scan__frame.is-bad { border-color: #ef4444; box-shadow: 0 0 0 4px rgba(239,68,68,0.14); }
    .fp-scan__ticket {
      display: grid;
      gap: 8px;
      justify-items: center;
      transform: scale(1.02);
      transition: transform 500ms var(--ease);
    }
    .fp-scan__frame.is-pulse .fp-scan__ticket { transform: scale(1); }
    .fp-scan__qr {
      width: min(100%, 132px);
      height: auto;
      aspect-ratio: 1;
      display: block;
      background: #fff;
      border-radius: 8px;
    }
    .fp-scan__ticket-meta {
      width: 100%;
      display: grid;
      gap: 2px;
      text-align: center;
      padding-top: 6px;
      border-top: 1px solid var(--border);
    }
    .fp-scan__ticket-meta span {
      font-size: 11px;
      font-weight: 600;
      color: var(--muted);
    }
    .fp-scan__ticket-meta strong {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: var(--weight-display);
      color: var(--text);
      letter-spacing: var(--track-display);
    }
    .fp-scan__result {
      padding: 7px 12px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      opacity: 0;
      transition: opacity 240ms var(--ease);
    }
    .fp-scan__result.is-show { opacity: 1; }
    .fp-scan__result.is-ok { background: rgba(30,215,96,0.14); color: var(--accent-ink); }
    .fp-scan__result.is-bad { background: rgba(239,68,68,0.12); color: #b91c1c; }
    .fp-scan__count {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.3;
      padding-bottom: 2px;
    }
    .fp-scan__count strong { color: var(--text); font-family: var(--font-display); font-size: 20px; }
    .fp-scan__log {
      padding: 14px;
      display: grid;
      gap: 8px;
      align-content: start;
      background: var(--cream-2);
      overflow: auto;
      min-height: 0;
    }
    .fp-scan__log-item {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 12px;
      background: #fff;
      border: 1px solid var(--border);
      font-size: 13px;
      color: var(--text);
    }
    .fp-scan__log-item span { color: var(--muted); }
    .fp-scan__log-item.is-ok { border-color: rgba(30,215,96,0.35); }
    .fp-scan__log-item.is-bad { border-color: rgba(239,68,68,0.35); color: #b91c1c; }
    .fp-scan__log-item[hidden] { display: none !important; }

    @keyframes feat-row-in {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 900px) {
      :root {
        --space-section-y: clamp(56px, 10vh, 88px);
        --space-head-content: 32px;
        --space-hero-title: 18px;
        --space-hero-lead: 20px;
        --space-hero-bottom: 28px;
        --space-card: 16px;
        --space-island: 18px;
        --text-display-lg: clamp(28px, 8vw, 36px);
        --text-display-md: clamp(24px, 6.5vw, 30px);
        --text-display-sm: clamp(22px, 5.5vw, 28px);
        --text-display-xs: clamp(18px, 5vw, 22px);
        --text-lead: clamp(15px, 4vw, 17px);
      }

      html {
        scroll-snap-type: none;
      }

      .snap-panel,
      .feat-row.snap-panel,
      .feat-row {
        min-height: 0;
        height: auto;
        max-height: none;
        scroll-snap-align: none;
        scroll-snap-stop: normal;
        display: block;
        padding: 72px 0 40px;
        overflow: visible;
        box-sizing: border-box;
      }
      .snap-panel > .wrap,
      .snap-panel > .feat-list-wrap,
      .section--feat-list .feat-list-wrap {
        width: min(100% - 28px, var(--max));
        margin-inline: auto;
        max-width: var(--max);
        padding-inline: 0;
        height: auto;
        display: block;
        overflow: visible;
      }
      .snap-panel > .wrap > .section-head {
        width: 100%;
        margin-bottom: var(--space-head-content);
        text-align: center;
      }

      #footer,
      #footer.section,
      #footer.snap-panel,
      #footer.section.snap-panel {
        min-height: 100vh;
        min-height: 100dvh;
        min-height: 100svh;
        min-height: 100lvh;
        height: auto;
        max-height: none;
        padding: 0;
        padding-top: calc(64px + env(safe-area-inset-top, 0px));
        overflow: visible;
        scroll-snap-align: end;
        scroll-snap-stop: always;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 0;
        box-sizing: border-box;
      }
      #footer.snap-panel > .site-footer__main,
      #footer.snap-panel > .site-footer__meta {
        width: min(100% - 28px, var(--max));
        margin-inline: auto;
      }
      #footer .site-footer__main {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 18px;
        padding: 12px 0 20px;
        min-height: 0;
      }
      #footer .site-footer__watermark {
        font-size: clamp(3.5rem, 18vw, 8rem);
        top: 46%;
        opacity: 1;
      }
      .site-footer__headline {
        font-size: clamp(24px, 6.2vw, 30px);
        max-width: 16em;
        width: auto;
        margin-inline: auto;
        text-wrap: balance;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
        line-height: 1.18;
      }
      .site-footer__nav {
        gap: 8px;
        width: 100%;
        justify-content: center;
      }
      .site-footer__pill {
        min-height: 44px;
        padding: 0 18px;
        font-size: 14px;
      }
      .site-footer__contact {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 13px;
        line-height: 1.35;
      }
      .site-footer__contact > span[aria-hidden="true"] {
        display: none;
      }
      #footer .site-footer__meta {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 0;
        padding-top: 16px;
        padding-bottom: max(20px, env(safe-area-inset-bottom, 0px));
      }

      /* Hero: tight stack */
      #slide-hero {
        height: auto;
        min-height: 0;
        padding: 72px 0 28px;
        overflow: visible;
        scroll-snap-align: none;
        scroll-snap-stop: normal;
        display: block;
      }
      #slide-hero > .wrap {
        width: min(100% - 28px, var(--max));
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
      }
      #slide-hero .hero-copy {
        min-height: 0;
        margin-bottom: 0;
        order: 2;
      }
      #slide-hero .hero-copy .eyebrow { margin-bottom: 10px; }
      #slide-hero .hero-copy h1 {
        font-size: clamp(30px, 9vw, 40px);
        margin-bottom: 12px;
      }
      #slide-hero .hero-copy .lead {
        font-size: var(--text-lead);
        max-width: 28em;
      }
      #slide-hero .hero-copy .btn-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 16px;
      }
      #slide-hero .hero-copy .btn {
        min-height: 48px;
        padding: 12px 20px;
        font-size: 15px;
      }
      #slide-hero .hero-vibe {
        order: -1;
        width: 100%;
        margin: 0;
        border-radius: 22px;
        scroll-snap-align: none;
        scroll-snap-stop: normal;
      }

      .section-head h2 { font-size: var(--text-display-md); }
      .section-head .lead { font-size: var(--text-lead); }

      /* Fees: keep 2×2 grid (no side-scroll) */
      #why .section-head { margin-bottom: 14px; }
      .fees-board {
        width: 100%;
        max-width: none;
        gap: 10px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: minmax(120px, auto) minmax(120px, auto) auto auto;
      }
      .fees-rail { display: contents; }
      .fees-controls,
      .fees-outcomes {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: 1 / span 2;
        gap: 10px;
      }
      .fees-controls { grid-column: 1; }
      .fees-outcomes { grid-column: 2; }
      .calc-sliders,
      .fees-result { display: contents; }
      .fees-result-arrow { display: none; }
      .fees-board .calc-field,
      .fees-result-card {
        height: 100%;
        min-height: 0;
        padding: 14px 12px;
      }
      .fees-board .calc-field-main strong,
      .fees-result-card strong {
        font-size: clamp(22px, 7vw, 28px);
      }
      .fees-breakdown {
        grid-column: 1 / -1;
        grid-row: 3;
        width: 100%;
        padding: 12px 14px;
        font-size: 12px;
      }
      .fees-savings {
        grid-column: 1 / -1;
        grid-row: 4;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }
      .fees-savings > div { padding: 12px; }
      .fees-savings .v { font-size: clamp(18px, 5.5vw, 24px); }

      /* Audience: stacked */
      #audience .aud-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        width: 100%;
        overflow: visible;
        padding: 0;
      }
      #audience .aud-card {
        width: 100%;
        max-width: none;
        min-height: 0;
        height: auto;
      }
      #audience .aud-visual {
        min-height: 140px;
        padding: 22px 22px 8px;
      }
      #audience .aud-copy { padding: 8px 22px 22px; }
      #audience .aud-copy h3 { font-size: clamp(22px, 6vw, 28px); }
      #audience .aud-copy p { font-size: 14px; }

      /* Ticket types: stacked */
      #tickettypes .tt-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
        overflow: visible;
        padding: 0;
      }
      #tickettypes .tt-card {
        width: 100%;
        max-width: none;
        min-height: 0;
        height: auto;
        padding: 22px 18px;
        border-radius: 22px;
      }
      #tickettypes .tt-card h3 { font-size: clamp(22px, 6vw, 28px); }
      #tickettypes .tt-card > p:not(.tt-when) { font-size: 14px; }
      #tickettypes .tt-when { font-size: 12px; }

      /* Flow: normal vertical stack */
      #flow .flow-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
        overflow: visible;
      }
      #flow .flow-pitch {
        order: -1;
        width: 100%;
      }
      #flow .flow-pitch-frame {
        min-height: 0;
        height: auto;
        align-items: center;
        text-align: center;
        padding: 32px 28px;
        box-sizing: border-box;
      }
      #flow .flow-pitch .flow-cta {
        min-width: 0;
        width: 100%;
        max-width: 280px;
      }
      #flow .flow-steps {
        display: grid;
        gap: 12px;
        max-width: none;
        width: 100%;
        overflow: visible;
      }
      #flow .flow-step {
        padding: 0;
        background: transparent;
        border-radius: 0;
        min-height: 0;
        text-align: left;
      }
      .flow-step-copy { font-size: 14px; }
      .flow-pitch h2 { font-size: clamp(24px, 6.5vw, 30px); }

      #faq .faq-item summary {
        font-size: 16px;
        padding-block: 16px;
      }
      .faq-a { font-size: 14px; padding-bottom: 16px; }

      /* Features: natural vertical flow */
      .section--feat-list {
        padding-block: 24px 40px;
        height: auto;
        overflow: visible;
      }
      .section--feat-list .feat-list {
        display: flex;
        flex-direction: column;
        gap: 48px;
        width: 100%;
      }
      .feat-row,
      .feat-row.is-flip {
        display: flex;
        flex-direction: column;
        gap: 0;
        grid-template-columns: none;
        min-height: 0;
        height: auto;
        padding: 0;
        overflow: visible;
        scroll-snap-align: none;
        scroll-snap-stop: normal;
        --feat-copy-gap: 40px;
      }
      .feat-row.is-flip .feat-row__copy,
      .feat-row.is-flip .feat-row__visual { order: initial; }
      .feat-row__copy,
      .feat-row.is-flip .feat-row__copy {
        text-align: center;
        width: 100%;
        margin-inline: auto;
        margin-bottom: var(--feat-copy-gap);
      }
      .feat-row__title {
        margin-inline: auto;
        margin-bottom: 16px;
        max-width: none;
        width: 100%;
        font-size: clamp(24px, 6.5vw, 30px);
        white-space: normal;
        text-wrap: balance;
      }
      .feat-row__desc {
        margin-inline: auto;
        margin-bottom: 0;
        font-size: 14px;
        max-width: 34em;
      }
      .feat-row__tag {
        font-size: 12px;
        margin-bottom: 12px;
      }
      .feat-row__visual,
      .feat-row[data-feat="pay"] .feat-row__visual,
      .feat-row[data-feat="scanner"] .feat-row__visual,
      .feat-row[data-feat="crm"] .feat-row__visual {
        flex: none;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        width: 100%;
        overflow: hidden;
        padding-inline: 0;
        margin-top: 0;
      }
      .feat-row__visual .fp-browser {
        width: 100%;
        min-width: 0;
        height: auto !important;
        border-radius: inherit;
        overflow: hidden;
        display: flex;
        flex-direction: column;
      }
      .fp-browser__chrome { padding: 10px 12px; }
      .fp-browser__url { font-size: 12px; padding: 6px 12px; }
      .fp-browser > :not(.fp-browser__chrome),
      .fp-browser:has(.fp-pay),
      .fp-browser:has(.fp-pay) .fp-browser__chrome + .fp-pay,
      .fp-pay,
      .fp-crm,
      .fp-refund,
      .fp-invite,
      .fp-scan {
        height: auto !important;
        min-height: 0 !important;
      }

      .fp-showcase,
      .fp-pay,
      .fp-scan {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
      }
      .fp-showcase__main,
      .fp-pay__main,
      .fp-scan__stage {
        border-right: 0;
        border-bottom: 1px solid var(--border);
        padding: 16px;
      }
      .fp-showcase__side,
      .fp-pay__side,
      .fp-scan__log { padding: 16px; }
      .fp-pay__you { margin-top: 0; }
      .fp-showcase__title { font-size: clamp(24px, 6.5vw, 30px); }
      .fp-pay__head strong { font-size: 22px; }
      .fp-pay__cta { min-height: 48px; }
      .fp-pay__checkout {
        position: static;
      }
      .fp-pay.is-paid .fp-pay__checkout {
        display: none;
      }
      /* Keep demo box height after state change; fill leftover space with content */
      .fp-pay {
        display: flex;
        flex-direction: column;
      }
      .fp-pay.is-paid {
        justify-content: space-between;
        min-height: 0;
        height: auto !important;
      }
      .fp-pay__success {
        position: static;
        flex: 0 0 auto;
        align-self: stretch;
        width: 100%;
        min-height: 0;
        height: auto;
        margin: 0;
        padding: 18px 16px;
        gap: 8px;
        place-content: center;
      }
      .fp-pay.is-paid .fp-pay__main {
        flex: 1 1 auto;
        min-height: 0;
        padding: 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      .fp-pay.is-paid .fp-pay__success {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        place-content: unset;
        gap: 12px;
        box-sizing: border-box;
      }
      .fp-pay.is-paid .fp-pay__side {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 12px;
      }
      .fp-refund__card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 18px;
        width: 100%;
        box-sizing: border-box;
      }
      .fp-refund__top {
        flex: 1 1 auto;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
      }
      .fp-refund__amount {
        margin-top: auto;
      }
      .fp-crm { padding: 14px; height: auto; }
      .fp-crm__toolbar {
        flex-direction: row;
        align-items: center;
        gap: 8px;
      }
      .fp-crm__search {
        flex: 1;
        min-width: 0;
        width: auto;
        font-size: 12px;
        padding: 10px 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      .fp-crm__export {
        flex: 0 0 auto;
        width: auto;
        text-align: center;
        padding: 10px 12px;
        font-size: 12px;
      }
      .fp-crm__head {
        display: none;
      }
      .fp-crm__row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        align-items: center;
        gap: 8px 10px;
        padding: 10px 12px;
      }
      .fp-crm__row > div {
        grid-column: 1 / -1;
      }
      .fp-crm__row em { display: none; }
      .fp-crm__row .is-money { font-size: 15px; }
      .fp-crm__row > span { font-size: 13px; color: var(--text); }
      .fp-crm__row > b { font-size: 11px; justify-self: end; }
      .fp-refund,
      .fp-invite { padding: 16px; height: auto; }
      .fp-scan__frame { max-width: 200px; margin-inline: auto; }
      .fp-scan__qr { width: 140px; height: 140px; }

      #niches .formats-stream { margin-top: 16px; }
      .formats-stream-bleed { gap: 10px; }
      .formats-pill {
        min-height: 38px;
        padding: 0 14px;
        font-size: 13px;
      }

      /* Conversion: 2 columns only on mobile */
      #conversion > .wrap {
        width: min(100% - 28px, var(--max));
      }
      #conversion .island.live-conv {
        max-width: none;
        width: 100%;
        padding: 0;
        gap: 14px;
      }
      #conversion .metric-grid,
      .live-conv .metric-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }
      #conversion .metric-card {
        padding: 18px 14px;
      }
      #conversion .live-conv .calc-chart-live {
        padding: 18px 16px 14px;
      }
      #conversion .live-conv .calc-chart-live svg {
        height: 128px;
      }
    }

    @media (max-width: 560px) {
      .header-pill { padding: 8px 8px 8px 12px; }
      .header-cta { padding: 8px 12px; font-size: 13px; min-height: 36px; }
      .fees-savings {
        grid-template-columns: 1fr;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .fp-invite__item.is-new,
      .fp-scan__ticket { animation: none; transition: none; }
    }

    /* Event format pills — 4 marquee tracks */
    #niches .section-head {
      margin-bottom: var(--space-title-lead, 16px);
    }
    #niches .formats-stream {
      margin-top: clamp(16px, 2.5vw, 28px);
    }
    .formats-stream {
      padding: clamp(8px, 2vw, 16px) 0 clamp(4px, 1vw, 8px);
    }
    .formats-stream-bleed {
      width: 100vw;
      max-width: 100vw;
      margin-left: calc(50% - 50vw);
      display: grid;
      gap: 12px;
    }
    #niches {
      overflow-x: clip;
    }
    .formats-track {
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    }
    .formats-track-inner {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      gap: 10px;
      width: max-content;
      will-change: transform;
      animation: formats-marquee 46s linear infinite;
    }
    .formats-track--2 .formats-track-inner { animation-duration: 38s; }
    .formats-track--3 .formats-track-inner {
      animation-duration: 52s;
      animation-direction: reverse;
    }
    .formats-track--4 .formats-track-inner { animation-duration: 42s; animation-direction: reverse; }
    .formats-stream:hover .formats-track-inner { animation-play-state: paused; }
    @keyframes formats-marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .formats-track-inner { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
      .formats-track { mask-image: none; overflow: visible; }
      .formats-stream-bleed { gap: 8px; padding-inline: 20px; box-sizing: border-box; }
    }
    .formats-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 16px;
      border-radius: 9999px;
      background: var(--surface);
      border: 1px solid rgba(10, 10, 10, 0.06);
      font-family: var(--font-ui);
      font-size: var(--text-body-sm);
      font-weight: var(--weight-semibold);
      color: var(--text);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .formats-pill.is-accent {
      background: rgba(30, 215, 96, 0.12);
      border-color: rgba(30, 215, 96, 0.24);
      color: var(--accent-ink);
    }
    .formats-pill.is-soft {
      background: #fff;
      border-color: var(--border);
      color: rgba(10, 10, 10, 0.72);
    }
    /* Ticket types — 4 equal cards */
    .tt-layout {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      grid-auto-rows: 1fr;
      gap: var(--space-stack-md);
      max-width: var(--max);
      margin-inline: auto;
      align-items: stretch;
    }
    .tt-card {
      background: var(--surface);
      border: 0;
      border-radius: var(--radius);
      padding: clamp(20px, 2.4vw, 28px);
      display: flex;
      flex-direction: column;
      gap: 10px;
      height: 100%;
      min-height: 0;
      box-sizing: border-box;
    }
    .tt-card--primary {
      background: var(--black);
      color: #fff;
    }
    .tt-card h3 {
      margin: 0;
      font-size: clamp(22px, 2.2vw, 28px);
      line-height: 1.15;
      max-width: none;
    }
    .tt-card--primary h3 {
      font-size: clamp(22px, 2.2vw, 28px);
      max-width: none;
    }
    .tt-card > p:not(.tt-when) {
      margin: 0;
      flex: 1 1 auto;
      font-size: var(--text-body-sm);
      color: var(--muted);
      line-height: var(--leading-body);
    }
    .tt-card--primary > p:not(.tt-when) {
      color: rgba(255, 255, 255, 0.68);
    }
    .tt-badge {
      align-self: flex-start;
      margin-top: 2px;
      padding: 4px 10px;
      border-radius: 9999px;
      background: rgba(10, 10, 10, 0.06);
      color: var(--muted);
      font-family: var(--font-ui);
      font-size: var(--text-micro);
      font-weight: var(--weight-bold);
      letter-spacing: 0.02em;
    }
    .tt-card--primary .tt-badge {
      background: rgba(159, 232, 112, 0.18);
      color: var(--lime);
    }
    .tt-when {
      margin: 0 !important;
      margin-top: auto !important;
      padding-top: 14px;
      border-top: 1px solid rgba(10, 10, 10, 0.08);
      font-size: var(--text-caption) !important;
      color: var(--muted);
      line-height: 1.4;
    }
    .tt-card--primary .tt-when {
      color: rgba(255, 255, 255, 0.45) !important;
      border-top-color: rgba(255, 255, 255, 0.12);
    }
    @media (max-width: 980px) {
      .tt-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    @media (max-width: 900px) {
      .tt-layout {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
      }
    }
    @media (max-width: 560px) {
      .tt-layout {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
      }
    }


    /* FAQ — Time2book-style accordion */
    #faq { background: #fff; }
    .faq-wrap { max-width: 760px; }
    .faq-list { margin-inline: auto; }
    .faq-item {
      border-top: 1px solid #e5e5e5;
    }
    .faq-item:last-child {
      border-bottom: 1px solid #e5e5e5;
    }
    .faq-item summary {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      cursor: pointer;
      list-style: none;
      padding: 22px 0;
      font-family: var(--font-ui);
      font-weight: var(--weight-semibold);
      font-size: 17px;
      line-height: var(--leading-snug);
      color: var(--text);
      text-align: left;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-q-text { flex: 1; min-width: 0; }
    .faq-icon {
      flex-shrink: 0;
      width: 24px;
      text-align: center;
      font-family: var(--font-ui);
      font-size: 24px;
      font-weight: 300;
      line-height: 1;
      color: var(--text);
    }
    .faq-icon::before { content: "+"; }
    .faq-item[open] .faq-icon::before { content: "−"; }
    .faq-a {
      padding: 0 0 22px;
      font-family: var(--font-ui);
      color: var(--muted);
      font-size: var(--text-body);
      line-height: var(--leading-loose);
      text-align: left;
    }

    /* Footer — B2C mobbin-style finale */
    #footer {
      position: relative;
      padding: 0;
      background: #050505;
      color: #9ca3af;
      overflow: visible;
      min-height: 100vh;
      min-height: 100svh;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box;
    }
    #footer.section {
      background: #050505;
    }
    .site-footer__glow {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(72px);
    }
    .site-footer__glow--left {
      top: 8%;
      left: -12%;
      width: min(52vw, 28rem);
      height: min(52vw, 28rem);
      background: radial-gradient(circle, rgba(61, 197, 100, 0.28) 0%, transparent 68%);
    }
    .site-footer__glow--right {
      right: -10%;
      bottom: 18%;
      width: min(44vw, 22rem);
      height: min(44vw, 22rem);
      background: radial-gradient(circle, rgba(61, 197, 100, 0.14) 0%, transparent 70%);
    }
    .site-footer__watermark {
      position: absolute;
      left: 50%;
      top: 46%;
      z-index: 0;
      margin: 0;
      font-family: var(--font-ui);
      font-size: clamp(4.5rem, 20vw, 13.5rem);
      font-weight: var(--weight-heavy);
      line-height: 0.9;
      letter-spacing: -0.06em;
      white-space: nowrap;
      color: rgba(255, 255, 255, 0.035);
      transform: translate(-50%, -50%);
      pointer-events: none;
      user-select: none;
    }
    .site-footer__main {
      position: relative;
      z-index: 1;
      display: flex;
      flex: 1 1 auto;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: clamp(20px, 4vh, 32px);
      padding: 0 0 clamp(16px, 2vh, 24px);
      text-align: center;
    }
    .site-footer__mark {
      display: grid;
      place-items: center;
      line-height: 0;
      transition: transform 220ms var(--ease);
    }
    .site-footer__mark:hover { transform: translateY(-2px); }
    .site-footer__mark .logo-wordmark {
      height: clamp(28px, 4vw, 36px);
      width: auto;
    }
    .site-footer__headline {
      margin: 0;
      max-width: min(22em, 100%);
      font-family: var(--font-ui);
      font-size: clamp(28px, 5.5vw, 44px);
      font-weight: var(--weight-heavy);
      line-height: 1.12;
      letter-spacing: -0.04em;
      color: #fff;
      text-wrap: balance;
    }
    .site-footer__nav {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 10px 12px;
      max-width: 720px;
    }
    .site-footer__pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 18px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 9999px;
      background: rgba(255, 255, 255, 0.04);
      font-family: var(--font-ui);
      font-size: var(--text-body-sm);
      font-weight: var(--weight-medium);
      color: #d1d5db;
      backdrop-filter: blur(8px);
      transition:
        color 160ms var(--ease),
        border-color 160ms var(--ease),
        background 160ms var(--ease),
        transform 160ms var(--ease);
    }
    .site-footer__pill:hover {
      border-color: rgba(61, 197, 100, 0.45);
      background: rgba(61, 197, 100, 0.12);
      color: #fff;
      transform: translateY(-1px);
    }
    .site-footer__pill.is-accent {
      border-color: rgba(159, 232, 112, 0.35);
      background: rgba(159, 232, 112, 0.14);
      color: #fff;
      font-weight: var(--weight-semibold);
    }
    .site-footer__pill.is-accent:hover {
      background: rgba(159, 232, 112, 0.24);
      border-color: rgba(159, 232, 112, 0.55);
    }
    .site-footer__contact {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 8px 10px;
      font-size: var(--text-body-sm);
      color: #6b7280;
    }
    .site-footer__contact a {
      color: #9ca3af;
      font-weight: var(--weight-semibold);
      transition: color 160ms var(--ease);
    }
    .site-footer__contact a:hover { color: #fff; }
    .site-footer__meta {
      position: relative;
      z-index: 1;
      flex-shrink: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px 24px;
      padding-top: clamp(20px, 3vh, 28px);
      padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      box-sizing: border-box;
    }
    .site-footer__copy {
      margin: 0;
      font-size: var(--text-micro);
      line-height: var(--leading-body);
      color: #6b7280;
    }
    .site-footer__powered {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin: 0;
      font-size: var(--text-micro);
      font-weight: var(--weight-medium);
      color: #6b7280;
    }
    .site-footer__powered img.logo-wordmark {
      width: auto;
      height: 14px;
      border-radius: 0;
      opacity: 1;
    }
    .site-footer__powered a {
      color: #9ca3af;
      font-weight: var(--weight-semibold);
      transition: color 160ms var(--ease);
    }
    .site-footer__powered a:hover { color: #fff; }
    @media (max-width: 640px) {
      .site-footer__meta {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .site-footer__headline {
        max-width: none;
        text-wrap: balance;
      }
    }

    /* Mobile footer finale — must come after base #footer rules so it wins */
    @media (max-width: 900px) {
      html {
        /* Only the finale snaps; other sections stay free-scroll */
        scroll-snap-type: y proximity;
      }
      #footer,
      #footer.section,
      #footer.snap-panel,
      #footer.section.snap-panel {
        /* Use the largest viewport unit so nothing from the previous section peeks */
        min-height: 100vh;
        min-height: 100dvh;
        min-height: 100svh;
        min-height: 100lvh;
        height: auto;
        max-height: none;
        padding: 0;
        padding-top: calc(64px + env(safe-area-inset-top, 0px));
        overflow: visible;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 0;
        box-sizing: border-box;
        scroll-snap-align: end;
        scroll-snap-stop: always;
      }
      #footer > .site-footer__main,
      #footer > .site-footer__meta {
        width: min(100% - 28px, var(--max));
        margin-inline: auto;
      }
      #footer > .site-footer__main {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 18px;
        padding: 12px 0 20px;
        min-height: 0;
      }
      #footer > .site-footer__meta {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
        margin-top: 0;
        padding-top: 16px;
        padding-bottom: max(20px, env(safe-area-inset-bottom, 0px));
      }
    }

    /* Lead modal */
    body.lead-modal-open { overflow: hidden; }
    .lead-overlay {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: grid;
      place-items: center;
      padding: 20px;
      background: rgba(10, 10, 10, 0.45);
      opacity: 0;
      pointer-events: none;
      transition: opacity 200ms var(--ease);
    }
    .lead-overlay[hidden] {
      display: none !important;
    }
    .lead-overlay.is-visible {
      opacity: 1;
      pointer-events: auto;
    }
    .lead-dialog {
      width: min(100%, 420px);
      max-height: min(92vh, 640px);
      overflow: auto;
      padding: 28px 24px 24px;
      border-radius: 20px;
      background: var(--surface);
      border: 1px solid rgba(10, 10, 10, 0.1);
      box-shadow: 0 24px 64px rgba(10, 10, 10, 0.18);
      font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
      transform: translateY(8px) scale(0.98);
      transition: transform 220ms var(--ease);
    }
    .lead-overlay.is-visible .lead-dialog {
      transform: translateY(0) scale(1);
    }
    .lead-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 20px;
    }
    .lead-head h2 {
      font-family: var(--font-ui);
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }
    .lead-head p {
      margin-top: 6px;
      font-size: 13px;
      color: var(--muted);
      font-family: var(--font-ui);
      line-height: 1.45;
    }
    .lead-close {
      flex-shrink: 0;
      width: 36px;
      height: 36px;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: var(--cream);
      cursor: pointer;
      font-size: 18px;
      line-height: 1;
      color: var(--muted);
    }
    .lead-close:hover { color: var(--text); background: #fff; }
    .lead-field { margin-bottom: 14px; }
    .lead-field label {
      display: block;
      margin-bottom: 6px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
      font-family: var(--font-ui);
    }
    .lead-field input,
    .lead-field textarea {
      width: 100%;
      padding: 12px 14px;
      border-radius: 12px;
      border: 1px solid rgba(10, 10, 10, 0.12);
      background: var(--cream);
      color: var(--text);
      font-size: 14px;
      font-family: inherit;
      transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
    }
    .lead-field textarea {
      min-height: 88px;
      resize: vertical;
      font-family: var(--font-ui);
    }
    .lead-field input:focus,
    .lead-field textarea:focus {
      outline: none;
      border-color: rgba(30, 215, 96, 0.55);
      box-shadow: 0 0 0 3px rgba(30, 215, 96, 0.12);
    }
    .lead-error {
      margin-bottom: 12px;
      padding: 10px 12px;
      border-radius: 10px;
      background: rgba(220, 38, 38, 0.08);
      color: #b91c1c;
      font-size: 12px;
      font-family: var(--font-ui);
    }
    .lead-submit {
      width: 100%;
      margin-top: 4px;
      padding: 14px 18px;
      border: 0;
      border-radius: 9999px;
      background: var(--black);
      color: #fff;
      font-family: var(--font-ui);
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: opacity 160ms var(--ease), transform 160ms var(--ease);
    }
    .lead-submit:hover:not(:disabled) { transform: translateY(-1px); }
    .lead-submit:disabled { opacity: 0.65; cursor: wait; }
    .lead-submit.is-loading { position: relative; color: transparent; }
    .lead-submit.is-loading::after {
      content: '';
      position: absolute;
      inset: 0;
      margin: auto;
      width: 18px;
      height: 18px;
      border: 2px solid rgba(255, 255, 255, 0.35);
      border-top-color: #fff;
      border-radius: 50%;
      animation: lead-spin 0.7s linear infinite;
    }
    @keyframes lead-spin { to { transform: rotate(360deg); } }
    .lead-success {
      text-align: center;
      padding: 24px 8px 8px;
      font-family: var(--font-ui);
    }
    .lead-success-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 16px;
      border-radius: 50%;
      background: rgba(30, 215, 96, 0.15);
      color: var(--accent);
      display: grid;
      place-items: center;
      font-size: 22px;
      font-weight: 800;
    }
    .lead-success h3 {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 8px;
    }
    .lead-success p {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 20px;
    }
    .lead-success .lead-close-btn {
      padding: 12px 24px;
      border-radius: 9999px;
      border: 1px solid var(--border);
      background: var(--cream);
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
    }

    /* Motion polish — entrance, scroll reveal, micro-interactions */
    @keyframes rise-in {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: none; }
    }
    @keyframes glow-drift {
      0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
      50% { transform: translate(2%, -3%) scale(1.04); opacity: 0.88; }
    }
    @keyframes aud-glass-float {
      0%, 100% { transform: translateY(var(--aud-y, -14px)) scale(var(--aud-scale, 0.96)); }
      50% { transform: translateY(calc(var(--aud-y, -14px) - 4px)) scale(var(--aud-scale, 0.96)); }
    }

    @media (prefers-reduced-motion: no-preference) {
      #slide-hero .hero-copy .eyebrow { animation: rise-in 820ms var(--ease) both; }
      #slide-hero .hero-copy h1 { animation: rise-in 820ms var(--ease) 70ms both; }
      #slide-hero .hero-copy .lead { animation: rise-in 820ms var(--ease) 140ms both; }
      #slide-hero .hero-copy .btn-row { animation: rise-in 820ms var(--ease) 210ms both; }
      #slide-hero .hero-vibe { animation: rise-in 920ms var(--ease) 280ms both; }

      .site-footer__glow--left { animation: glow-drift 14s ease-in-out infinite; }
      .site-footer__glow--right { animation: glow-drift 16s ease-in-out infinite reverse; }

      .motion-in {
        opacity: 0;
        transform: translateY(22px);
        transition:
          opacity 680ms var(--ease),
          transform 680ms var(--ease);
      }
      .motion-in.is-visible {
        opacity: 1;
        transform: none;
      }
      #flow .flow-step.motion-in.is-visible:nth-child(1) { transition-delay: 0ms; }
      #flow .flow-step.motion-in.is-visible:nth-child(2) { transition-delay: 55ms; }
      #flow .flow-step.motion-in.is-visible:nth-child(3) { transition-delay: 110ms; }
      #flow .flow-step.motion-in.is-visible:nth-child(4) { transition-delay: 165ms; }
      #flow .flow-step.motion-in.is-visible:nth-child(5) { transition-delay: 220ms; }

      .aud-card-stack.is-visible .aud-glass-back {
        --aud-y: -28px;
        --aud-scale: 0.92;
        animation: aud-glass-float 5.5s ease-in-out infinite;
      }
      .aud-card-stack.is-visible .aud-glass-mid {
        --aud-y: -14px;
        --aud-scale: 0.96;
        animation: aud-glass-float 5.5s ease-in-out infinite 0.35s;
      }
    }

    .aud-card {
      transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
    }
    @media (hover: hover) {
      .aud-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 22px 50px rgba(10, 10, 10, 0.11);
      }
      .aud-card-mesh:hover .aud-icon {
        transform: translateY(-2px) scale(1.04);
      }
    }
    .aud-icon {
      transition: transform 220ms var(--ease), background 220ms var(--ease);
    }

    #flow .flow-ico {
      transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease);
    }
    @media (hover: hover) {
      #flow .flow-step:hover .flow-ico {
        transform: scale(1.08);
        background: rgba(30, 215, 96, 0.14);
        color: var(--accent-ink);
      }
    }

    .formats-pill {
      transition:
        transform 180ms var(--ease),
        border-color 180ms var(--ease),
        box-shadow 180ms var(--ease),
        background 180ms var(--ease);
    }
    @media (hover: hover) {
      .formats-pill:hover {
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 8px 22px rgba(10, 10, 10, 0.08);
      }
      .formats-pill.is-accent:hover {
        border-color: rgba(30, 215, 96, 0.42);
      }
    }


    .fees-result-card,
    .metric-card {
      transition: transform 240ms var(--ease), background 240ms var(--ease), box-shadow 240ms var(--ease);
    }
    @media (hover: hover) {
      .fees-result-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(10, 10, 10, 0.06);
      }
      .fees-result-card.is-you:hover {
        background: rgba(30, 215, 96, 0.14);
      }
      .metric-card:hover {
        transform: translateY(-2px);
        background: rgba(28, 25, 23, 0.05);
      }
    }

    .faq-item summary {
      transition: color 200ms var(--ease);
    }
    @media (hover: hover) {
      .faq-item summary:hover { color: var(--accent-ink); }
    }
    .faq-a {
      padding: 0 0 22px;
      font-family: var(--font-ui);
      font-size: var(--text-body);
      line-height: var(--leading-relaxed);
      color: var(--muted);
    }

    .btn-accent {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }
    .btn-accent::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.38) 50%, transparent 60%);
      transform: translateX(-130%);
      transition: transform 620ms var(--ease);
      pointer-events: none;
    }
    @media (hover: hover) {
      .btn-accent:hover::after { transform: translateX(130%); }
    }


    #flow .flow-pitch-frame {
      transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
    }
    @media (hover: hover) {
      #flow .flow-pitch-frame:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 44px rgba(10, 10, 10, 0.08);
      }
    }

    @media (max-width: 960px) {
      .header-nav { display: none; }
      .hero-vibe,
      .hero-duo,
      .hero-card-app { order: -1; min-height: 0; max-height: none; }
    }
    @media (max-width: 560px) {
      .wrap { width: min(100% - 28px, var(--max)); }
      .header-pill { padding: 8px 8px 8px 14px; }
      .island.calc-shell { padding: clamp(24px, 4vw, 32px); }
      .island.calc-shell.fees-board,
      #conversion .island.live-conv { padding: 0; background: transparent; }
      .calc-summary { grid-template-columns: 1fr; }
      .btn { width: 100%; }
      .btn-row { flex-direction: column; }
    }
